McqMate
Sign In
Hamberger menu
McqMate
Sign in
Sign up
Home
Forum
Search
Ask a Question
Sign In
McqMate Copyright © 2024
→
Computer Science Engineering (CSE)
→
CPP Programming
→
Choose the operator which cannot be over...
Q.
Choose the operator which cannot be overloaded.
A.
/
B.
( )
C.
::
D.
%
Answer» C. ::
2.8k
0
Do you find this helpful?
31
View all MCQs in
CPP Programming
Discussion
No comments yet
Login to comment
Related MCQs
Which of the following operators are overloaded by default by the compiler in every user defined classes even if user has not written? 1) Comparison Operator (==) 2) Assignment Operator (=)
Which operator is required to be overloaded as member function only?
Which of the following operators cannot be overloaded?
Which of the following is true about constructors? 1) They cannot be virtual. 2) They cannot be private. 3) They are automatically called by new operator.
Which of the following is incorrect in C++? (1)When we write overloaded function we must code the function for each usage. (2)When we write function template we code the function only once. (3)It is difficult to debug macros (4)Templates are more efficient than macros
How C++ compiler does differ between overloaded postfix and prefix operators?
Which of the following operator functions cannot be global?
Which operator is having the highest precedence?
Which of the following is true about new when compared with malloc: 1) new is an operator, malloc is a function 2) new calls constructor, malloc doesn’t 3) new returns appropriate pointer, malloc returns void * and pointer needs to typecast to appropriate type.
Which of the following cannot be passed to a function in C++?