<< Prev Question Next Question >>

Question 77/100

What happens when you attempt to compile and run the following code?
#include <iostream>
using namespace std;
int mul (int a, int b=2)
{
int r;
r=a*b;
return (r);
}
int main ()
{
cout << mul(1) << mul(2,4);
return 0;
}

LEAVE A REPLY

Your email address will not be published. Required fields are marked *

Question List (100q)
Question 1: What happens when you attempt to compile and run the followi...
Question 2: What is the output of the program? #include &lt;iostream&gt;...
Question 3: Point out an error in the program. #include &lt;iostream&gt;...
Question 4: Which statement should be added in the following program to ...
Question 5: What happens when you attempt to compile and run the followi...
Question 6: What will the variable "age" be in class B? class A { int x;...
Question 7: What happens when you attempt to compile and run the followi...
Question 8: What is the output of the program given below? #include &lt;...
Question 9: What will the variable "y" be in class B? class A { int x; p...
Question 10: What happens when you attempt to compile and run the followi...
Question 11: What happens when you attempt to compile and run the followi...
Question 12: What will happen when you attempt to compile and run the fol...
Question 13: What happens when you attempt to compile and run the followi...
Question 14: What happens when you attempt to compile and run the followi...
Question 15: What happens when you attempt to compile and run the followi...
Question 16: What happens when you attempt to compile and run the followi...
Question 17: What happens when you attempt to compile and run the followi...
Question 18: What happens when you attempt to compile and run the followi...
Question 19: What happens when you attempt to compile and run the followi...
Question 20: Which code, inserted at line 8, generates the output "100"? ...
Question 21: What is the output of the program? #include &lt;iostream&gt;...
Question 22: What happens when you attempt to compile and run the followi...
Question 23: What happens when you attempt to compile and run the followi...
Question 24: What will happen when you attempt to compile and run the fol...
Question 25: What happens when you attempt to compile and run the followi...
Question 26: What happens when you attempt to compile and run the followi...
Question 27: What happens when you attempt to compile and run the followi...
Question 28: What is the output of the program? #include &lt;iostream&gt;...
Question 29: What happens when you attempt to compile and run the followi...
Question 30: What will happen when you attempt to compile and run the fol...
Question 31: What happens when you attempt to compile and run the followi...
Question 32: What happens when you attempt to compile and run the followi...
Question 33: What happens when you attempt to compile and run the followi...
Question 34: What will the variable "age" be in class B? class A { int x;...
Question 35: What happens when you attempt to compile and run the followi...
Question 36: Which definitions are correct?
Question 37: What happens when you attempt to compile and run the followi...
Question 38: What will be the output of the program? #include &lt;iostrea...
Question 39: What happens when you attempt to compile and run the followi...
Question 40: Which code, inserted at line 14, generates the output "3.14 ...
Question 41: What happens when you attempt to compile and run the followi...
Question 42: What happens when you attempt to compile and run the followi...
Question 43: What happens when you attempt to compile and run the followi...
Question 44: What happens when you attempt to compile and run the followi...
Question 45: What happens when you attempt to compile and run the followi...
Question 46: What is the output of the program? #include &lt;iostream&gt;...
Question 47: What happens when you attempt to compile and run the followi...
Question 48: What happens when you attempt to compile and run the followi...
Question 49: What happens when you attempt to compile and run the followi...
Question 50: What happens when you attempt to compile and run the followi...
Question 51: Which code, inserted at line 10, generate the output "50"? #...
Question 52: What is the output of the program if character 2 is supplied...
Question 53: What happens when you attempt to compile and run the followi...
Question 54: What happens when you attempt to compile and run the followi...
Question 55: What happens when you attempt to compile and run the followi...
Question 56: What happens when you attempt to compile and run the followi...
Question 57: Which code, inserted at line 12, generates the output "5b"? ...
Question 58: What is the output of the program? #include &lt;iostream&gt;...
Question 59: What will be the output of the program? #include &lt;iostrea...
Question 60: What happens when you attempt to compile and run the followi...
Question 61: What will happen when you attempt to compile and run the fol...
Question 62: What happens when you attempt to compile and run the followi...
Question 63: What happens when you attempt to compile and run the followi...
Question 64: What happens when you attempt to compile and run the followi...
Question 65: Which code, inserted at line 15, generates the output "5 Bob...
Question 66: What happens when you attempt to compile and run the followi...
Question 67: What happens when you attempt to compile and run the followi...
Question 68: What happens when you attempt to compile and run the followi...
Question 69: What happens when you attempt to compile and run the followi...
Question 70: What happens when you attempt to compile and run the followi...
Question 71: What happens when you attempt to compile and run the followi...
Question 72: What happens when you attempt to compile and run the followi...
Question 73: What happens when you attempt to compile and run the followi...
Question 74: Which of the following structures are correct? 1: struct s1{...
Question 75: What happens when you attempt to compile and run the followi...
Question 76: What happens when you attempt to compile and run the followi...
Question 77: What happens when you attempt to compile and run the followi...
Question 78: What is not inherited from the base class?...
Question 79: What happens when you attempt to compile and run the followi...
Question 80: Given: #include &lt;iostream&gt; #include &lt;exception&gt; ...
Question 81: What happens when you attempt to compile and run the followi...
Question 82: What happens when you attempt to compile and run the followi...
Question 83: What happens when you attempt to compile and run the followi...
Question 84: What happens when you attempt to compile and run the followi...
Question 85: What happens when you attempt to compile and run the followi...
Question 86: What is the output of the program? #include &lt;iostream&gt;...
Question 87: What happens when you attempt to compile and run the followi...
Question 88: How many times will "HELLO" be printed? #include &lt;iostrea...
Question 89: What is the output of the program if characters 'h', 'e', 'l...
Question 90: How could you pass arguments to functions?...
Question 91: What will be the output of the program? #include &lt;iostrea...
Question 92: What happens when you attempt to compile and run the followi...
Question 93: What happens when you attempt to compile and run the followi...
Question 94: What happens when you attempt to compile and run the followi...
Question 95: What happens when you attempt to compile and run the followi...
Question 96: What happens when you attempt to compile and run the followi...
Question 97: What happens when you attempt to compile and run the followi...
Question 98: What happens when you attempt to compile and run the followi...
Question 99: What is the output of the program if characters 't', 'e', 's...
Question 100: What happens when you attempt to compile and run the followi...