Question: Question 15 Can a C++ function access the parameter of another function? Question 15 options: a. Yes b. No Question 16 Select the statement that




Question 15 Can a C++ function access the parameter of another function? Question 15 options: a. Yes b. No Question 16 Select the statement that is NOT true about static and dynamic binding. Question 16 options: a. dynamic binding occurs at run time b. static binding occurs at compile time pass by reference is an example of dynamic binding d. pass by reference is an example of static binding c. Question 17 Which of following parameter declaration makes an integer pointer type parameter xp to be passed by reference? Question 17 options: a. b. int* _xp int& xp int* & xp c. d. &int* xp e. *int xp& Question 18 Assume aa is a dynamic array of double type, and has been allocated enough memory to hold 5 double type numbers. Which of following releases the memory used by dynamic array? Question a. release aa[]; b. delete aa[]; delete aa; d. delete [] aa; c
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
