if u copy paste questions are available on google, kindly send correct answers, I posted last time got 60% on 100% . I will give negitiv rating if its wrong sorry as answwrs on google if u copy paste. I dont hv time hence posting.
Which of the following statements is TRUE? O Void functions can be used (called) in an expression. OA void function must have at least one formal parameter. O A void function must have a data type. O A call to a void function is a standalone statement. The tolower function takes one parameter of type_ O string char O int O bool When using a reference parameter, a constant value or an expression cannot be passed to aparameter. O constant reference 0 nonconstant or constant value O nonconstant value O nonconstant reference If a function is overloaded, then in a call to that function, the determines which function to execute. O definition declaration O signature scope Which of the following statements is true of a value-returning function? O O O O A value retuming function can only contain one return statement. A return statement can only return one value. A value-returning function is not required to return a value A return statement cannot contain more than one expression. The C++ function pow has parameters. zero O one O two O three A call to a value-returning function with an empty formal parameter list has the form . functionName O functionName(void) O functionName0 O void functionName The C++ function calculates the largest whole number that is less than or equal to x. O eqwhole(x) O abs(x) O floor(x) ceilx) A program that tests a function is called a program. O sample O passenger O testing driver ich of the following statements is FALSE? O Default values can be constants, global variables, or function calls. O If you do not specify the value of a default parameter, the default value is used for that parameter You can assign a constant value as a default value to a reference parameter. O The calling function has the option of specifying a value other than the default for any default parameter. Which of the following statements is TRUE? O A global named constant must be defined in the main function. O The value of a global named constant cannot be changed during program execution. O The value of a global named constant cannot be accessed from anywhere in the program. O Unlike using global variables, using global named constants can introduce detrimental side effects to your program