Multiple Choice
CASE
Critical Thinking Questions
Case 7-1
Of all of the concepts Sheila has learned so far, she is having the hardest time understanding the use of procedures, including when and how to use them. She asks her instructor for some additional clarification.
-Sheila is having trouble even deciding whether or not to place a set of programming steps in a Sub procedure or a Function procedure,so her instructor tells her to ask herself a series of questions to make that decision.Which one of the following is NOT a question that the instructor suggests that she ask herself?
A) Will the program be easier to read if the code is placed in a separate procedure?
B) Does the proposed code perform a single task?
C) Does this task require more than eight or nine programming statements?
D) Can the Sub procedure or Function procedure perform its processing by receiving data as arguments, and by returning data either using the Return statement or by using ByRef arguments?
Correct Answer:

Verified
Correct Answer:
Verified
Q82: A Sub procedure _ argument(s).<br>A) cannot accept
Q83: A(n)_ procedure is used when data needs
Q84: The keyword _ is used in a
Q85: The statement End Procedure is used to
Q86: A _ procedure completes its task but
Q88: A Function procedure can pass many values
Q89: MATCHING<br>Identify the letter of the choice that
Q90: _ is an exception type that can
Q91: You should select the ByVal option if
Q92: A Try-Catch structure _ Catch blocks of