A
Q. What will be the output of the following code? int a = 10, b = 3; cout << a % b;
The modulus operator (%) returns the remainder of division. 10 % 3 results in 1.
You must be Logged in to update hint/solution
Be the first to start discuss.
Q. Identify the user-defined types from the following?
Q. The value 132.54 can be represented using which data type?
Q. An exception is generated using the keyword __________
Q. Which class functions are called inline functions?
Q. What is the output of the following C++ code?
Q. Which operations don’t throw anything?
Q. Which header file is used to pass an unlimited number of arguments to a function?
Q. Which among the following best defines abstraction?
Q. Which of the following is the correct way to define a function with a pointer parameter in C++?
Discusssion
Login to discuss.