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)
→
Object Oriented Programming (OOP)
→
Which operator is having the highest pre...
Q.
Which operator is having the highest precedence?
A.
postfix
B.
unary
C.
shift
D.
equality
Answer» A. postfix
2.1k
0
Do you find this helpful?
23
View all MCQs in
Object Oriented Programming (OOP)
Discussion
No comments yet
Login to comment
Related MCQs
Which of the following operators are overloaded by default by the compiler? 1) Comparison Operator ( == ) 2) Assignment Operator ( = )
Which operator is having right to left associativity in the following?
Which of the following is true about constructors. They cannot be virtual. They cannot be private. They are automatically called by new operator
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.
The extraction operator (>>) stops reading a string when it encounters a space.
What happens when a class with parameterized constructors and having no default constructor is used in a program and we create an object that needs a zero-argument constructor?
Which of the following operators allow defining the member functions of a class outside the class?
Which type of class has only one unique value for all the objects of that same class?
Which one of the following is not a fundamental data type in C++?
When class B is inherited from class A, what is the order in which the constructers of those classes are called