Introduction
-  If the user did not supply the value, what value will it take?
- 
                        View Hint View Answer Discuss in Forum NA Correct Option: BIf the user did not supply the value means, the compiler will take the given value in the argument list. 
-  What is the output of this program?
- 
                        View Hint View Answer Discuss in Forum NA Correct Option: DWe have passed three values and it will manipulate according to the given condition and yield the result as 10 65 
-  What will happen when we use void in argument passing?
- 
                        View Hint View Answer Discuss in Forum NA Correct Option: BAs void is not having any return value, it will not return the value to the caller. 
-  Which is used to keep the call by reference value as intact?
- 
                        View Hint View Answer Discuss in Forum NA Correct Option: ABecause const will not change the value of the variables during the execution. 
-  By default how the value are passed in c++?
- 
                        View Hint View Answer Discuss in Forum NA Correct Option: Ccall by value 
 
	