McqMate
Sign In
Hamberger menu
McqMate
Sign in
Sign up
Home
Forum
Search
Ask a Question
Sign In
McqMate Copyright © 2026
→
Computer Science Engineering (CSE)
→
CPP Programming
→
Which operation is used as Logical 'AND'
Q.
Which operation is used as Logical 'AND'
A.
Operator-&
B.
Operator-
C.
Operator-&&
D.
Operator +
Answer» C. Operator-&&
2.3k
0
Do you find this helpful?
17
View all MCQs in
CPP Programming
Discussion
No comments yet
Login to comment
Related MCQs
Which type is best suited to represent the logical values?
What operation can be performed by destructor?
Which of the following is true about templates? 1) Template is a feature of C++ that allows us to write one code for different data types. 2) We can write one function that can be used for all data types including user defined types. Like sort(), max(), min(), ..etc. 3) We can write one class or struct that can be used for all data types including user defined types. Like Linked List, Stack, Queue,..etc. 4) Template is an example of compile time polymorphism.
Which of the following is not correct (in C++)? 1. Class templates and function templates are instantiated in the same way 2. Class templates differ from function templates in the way they are initiated 3. Class template is initiated by defining an object using the template argument 4. Class templates are generally used for storage classes
Which data type is used to represent the absence of parameters?
Which function is used to position back from the end of file object?
Which property is shown most when upcasting is used?
What happens when delete is used for a NULL pointer? int *ptr = NULL; delete ptr;
String class have a concat() function that is used to _____________________
Which of the following in Object Oriented Programming is supported by Function overloading and default arguments features of C++?