V
Q. What is the output of the following code snippet? int x = 10; int y = 20; cout << (x ^ y);
The bitwise XOR operation between 10 (1010) and 20 (10100) results in 30.
You must be Logged in to update hint/solution
Be the first to start discuss.
Q. To read the multi-word string we use the function?
Q. What is the output of the following C++ code?
Q. In C language, a hexadecimal number is represented by writing
Q. By default, the members of a C++ class are:
Q. Which of the following is true about multiple inheritance in C++?
Q. How many Access specifier are there in C++?
Q. ‐‐‐‐‐ statement is used to print a blank line in CPP program
Q. What is the output of the following code snippet? int x = 10; int y = 20; cout << (x + y);
Q. The object is created in _________
Q. OOPs follows ‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐ approach during program design.
Discusssion
Login to discuss.