FeedBack Form

Your Name :
Your Email :
Your Location :
Your Message :
   
FeedBack

C++ Language INTERVIEW QUESTION & ANSWERS

Languages
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.
Your Name Your Email-ID
Your Answer
 
77. What is multiple inheritance?
  A class can inherit properties from more than one class which is known as multiple inheritance.
Your Name Your Email-ID
Your Answer
 
78. What is cast operator(())?
  The cast operator helps to force an expression to be of a specific type by using (} cast operator.
Your Name Your Email-ID
Your Answer
 
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.
Your Name Your Email-ID
Your Answer
 
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.
Your Name Your Email-ID
Your Answer