V
Q. What is the output of the following code snippet? int x = 10; int y = 20; cout << (x == y);
The expression (x == y) evaluates to false, which is represented as 0 in C++.
You must be Logged in to update hint/solution
Be the first to start discuss.
Q. What is the output of the following code snippet? int x = 10; int y = 20; cout << (x >= y);
Q. A ‐‐‐‐‐‐‐‐ is a physical device that exists at run time.
Q. Which of the following is the default return value of a function in C++?
Q. What is the output of the following C++ code?
Q. Which of the following is not correct for virtual function in C++?
Q. Which of the following statements is NOT valid about operator overloading?
Q. Which of the following is the correct way to define a virtual function in C++?
Q. Which of the following language is not supported by C++?
Q. Which of the following type of data member can be shared by all instances of its class?
Discusssion
Login to discuss.