Choose a topic to test your knowledge and improve your C/C skills
To use external linkage we have to use which keyword?
Which is used to use a function from one source file to another?
What is the use of no linkage?
What is the user-defined header file extension in c++?
Which of the following keyword is used to declare the header file?
Identify the incorrect statement.
What does a default header file contain?
setprecision requires which of the following header file?
Which of the following header file does not exist?
Which of the header file must be included to use stringstream?
Which of the following header files is required for creating and reading data files?
What does a class in C++ holds?
Which is used to define the member of a class externally?
Which other keywords are also used to declare the class other than class?
Which of the following is a valid class declaration?
The data members and functions of a class in C++ are by default _______
Constructors are used to ___________
When struct is used instead of the keyword class means what will happen in the program?
Which category of data type a class belongs to?
How the objects are self-referenced in a member function of that class.
What does a mutable member of a class mean?
Which keyword is used to define the user defined data types?
Where does the object is created?
How to access the object in the class?
Which of these following members are not accessed by using direct member access operator?
Pick out the other definition of objects.
How many objects can present in a single class?
Which special character is used to mark the end of class?
Pick the other name of operator function.
Which of the following operators can’t be overloaded?
How to declare operator function?
Which of the following statements is NOT valid about operator overloading?
Operator overloading is ___________
What is operator overloading in C++?
What is the syntax of overloading operator + for class A?
How many approaches are used for operator overloading?
Which of the following operator cannot be overloaded?
Which of the following operator can be overloaded?
Which of the following operator cannot be used to overload when that function is declared as friend function?
Choose the operator which cannot be overloaded.
In which direction does the assignment operation will take place?
Pick out the compound assignment statement.
What is the associativity of add(+);?
What is the name of | operator?
Which operator is having the highest precedence in c++?
subscript operator is used to access which elements?
How many arguments will the subscript operator will take for overloading?
Pick out the correct statement.
What do we need to do to pointer for overloading the subscript operator?
What do we need to use when we have multiple subscripts?
What is the use of function call operator?
Pick out the correct statement.