S
Q. What is the output of the following code snippet? int x = 10; int y = 20; cout << (x <= y);
The less-than-or-equal-to operator (<=) returns true (1) if the first operand is less than or equal to the second.
You must be Logged in to update hint/solution
Be the first to start discuss.
Q. Which of the following is true?
Q. Static variable in a class is initialized when _____ .
Q. What is the output of the following C++ code?
Q. What is the output of the following code snippet? int x = 10; int y = 0; cout << (x || y);
Q. Which of the following will access the fifth element stored in an array?
Q. What is the scope of the variable declared in the user defined function?
Q. How many objects can be created from an abstract class?
Discusssion
Login to discuss.