C++ Language INTERVIEW QUESTION & ANSWERS
76. |
What is a scope resolution operator? |
|
The scope resolution operator permits a program to reference an identifier in the global scope that has been hidden by another identifier with the same name in the local scope. |
77. |
What is multiple inheritance? |
|
A class can inherit properties from more than one class which is known as multiple inheritance. |
78. |
What is cast operator(())? |
|
The cast operator helps to force an expression to be of a specific type by using (} cast operator. |
79. |
What is conditional operator( ?:)? |
|
The conditional operator evaluates an expression returning a value if that expression is true and a different one if the expression is evaluated as false. |
80. |
What is comma operator(,)? |
|
The comma operator (,) is used to separate two or more expressions that are included where only one expression is expected.
|