

InterviewSolution
Saved Bookmarks
This section includes InterviewSolutions, each offering curated multiple-choice questions to sharpen your Class 11 knowledge and support exam preparation. Choose a topic below to get started.
851. |
Difference between #define and constant |
Answer» Very very important question please learn it will come in exam | |
852. |
What is the difference between data types and fundamental data types?? |
Answer» \tFundamental Data TypesDerived Data TypesFundamental data type is also called primitive data type. These are the basic data types.Derived data type is the aggregation of fundamental data type.\t\tcharacter, integer, float, and void are fundamental data types.Pointers, arrays, structures and unions are derived data types.Character is used for characters. It can be classified as char, Signed char, Unsigned char.Pointers are used for storing address of variables.Integer is used for integers( not having decimal digits). It can be classified as signed and unsigned. Further classified as int, short int and long int.Array is used to contain similar type of data.float is used for decimal numbers. These are classified as float, double and long double.structure is used to group items of possibly different types into a single type.void is used where there is no return value required.It is like structure but all members in union share the same memory location\t | |
853. |
What is the importance of break statement in switch case? explain with suitable example |
Answer» Break statement use to stop or exit the switch case. If it is not put in then it also execute another cases which are below the correct case | |
854. |
Write a program of traspose a matrix??? |
Answer» | |
855. |
What is prototype? |
Answer» | |
856. |
LINUX |
Answer» | |
857. |
How to calculate size of 2d array |
Answer» | |
858. |
What is the difference between typedef and #define |
Answer» Typedep is used to rename the existing datatype & #define is a pre processor directive or similar to macro | |
859. |
What is the purpose of a header file |
Answer» Header files are included in a program to access various functions stored in library<br>Header file provides input-output library of various tokens to a program. | |
860. |
Why is mobile operating system android more popular? |
Answer» | |
861. |
2d array in short |
Answer» | |
862. |
A₹ find right way of writing his variable |
Answer» | |
863. |
Where\'s the solutions of last year papers? |
Answer» | |
864. |
What type of conditional statement |
Answer» | |
865. |
Application ,system,Development of SOFtware and what in software\'s |
Answer» Software development is the process of conceiving, specifying, designing, programming, documenting, testing, and bug fixing involved in creating and maintaining applications, frameworks, or other software components. | |
866. |
Difference between default and constant arguments |
Answer» And which argument is fixed for the program respectively<br>Which already exist in function | |
867. |
What is Ascii |
Answer» It is similar to IUPAC as in chemistry | |
868. |
I want c++ (2016-17) both question papers |
Answer» | |
869. |
What do u mean by exit function? |
Answer» The exit function, declared in the standard include file STDLIB.H, terminates a C++ program.The value supplied as an argument to exit is returned to the operating system as the program\'s return code or exit code. By convention, a return code of zero means that the program completed successfully.System_CAPS_ICON_note.jpg NoteYou can use the constants EXIT_FAILURE and EXIT_SUCCESS, defined in STDLIB.H, to indicate success or failure of your program.Issuing a return statement from the main function is equivalent to calling the exit function with the return value as its argument. | |
870. |
What is difference between call by value and call bye reference method |
Answer» In call by value method a copy of actual parameter goes to formal parameter and whatever changes are made in formal parameter are not reflected after the function calling is over...but in reference actual itself goes to formal and the changes made are permanent | |
871. |
what is an array |
Answer» An array is a named set of finite number of elements which are of same data type | |
872. |
56789 in order of 67895 |
Answer» | |
873. |
Write a program for this patten :-*************** |
Answer» | |
874. |
Name any reserve word kn c++ which is not a keyword? |
Answer» | |
875. |
Program to reverse a given string |
Answer» | |
876. |
What is structure |
Answer» | |
877. |
Computer practical for 11th class annual exam |
Answer» | |
878. |
Difference between exit() and break |
Answer» | |
879. |
What is the use of "\\0" in a c++ program? |
Answer» It shows the end of a character or a string...\'\\0\' denotes null character | |
880. |
what is storage management? |
Answer» | |
881. |
What is basic characteristics of microprossor |
Answer» | |
882. |
How to revrse a matrix in array |
Answer» | |
883. |
A program to delete an element from an array using function |
Answer» | |
884. |
Program To print the prime number |
Answer» | |
885. |
difference between local and global variable |
Answer» <th>Global Variable</th> <th>Local Variable</th> \tGlobal variables are declared outside all the function blocks.Local Variables are declared within a function block.The scope remains throughout the program.The scope is limited and remains within the function only in which they are declared.Any change in global variable affects the whole program, wherever it is being used.Any change in the local variable does not affect other functions of the program.A global variable exists in the program for the entire time the program is executed.A local variable is created when the function is executed, and once the execution is finished, the variable is destroyed.It can be accessed throughout the program by all the functions present in the program.It can only be accessed by the function statements in which it is declared and not by the other functions.If the global variable is not initialized, it takes zero by default.If the local variable is not initialized, it takes the garbage value by default.Global variables are stored in the data segment of memory.Local variables are stored in a stack in memory.We cannot declare many variables with the same name.We can declare various variables with the same name but in other functions.\t | |
886. |
Program to count number of characters in stream by using function |
Answer» | |
887. |
Scope resolution operator |
Answer» | |
888. |
how to glow keyboard light in laptop? |
Answer» | |
889. |
Ms excel |
Answer» | |
890. |
Pyramid programs |
Answer» | |
891. |
How can we learn array easily . |
Answer» | |
892. |
What is use of #include header file |
Answer» | |
893. |
What is void main |
Answer» | |
894. |
Write function declaration of given function ? int& f1 (int a){return a;} |
Answer» | |
895. |
Declare an array of 5 ints and intialize it to the first 5 even numbers . |
Answer» int a[5] = {2,4,6,8,10} | |
896. |
Write function declaration of given function ?Int & f1 (int a ){return a;} |
Answer» | |
897. |
Identify error in function prototype Void func (int a [],s=10); |
Answer» | |
898. |
WAP to input temperature in C conver into F and print it |
Answer» | |
899. |
Isko kaise padhna hai ....???? |
Answer» | |
900. |
Explain any two types oc functions except its classification |
Answer» | |