Multiple Choice
Case 1
You have just starting working at Quantum Company. As a new programmer, you have been asked to review and correct various pseudocode.
-The following pseudocode is not working correctly.The code should add price and tax.What code needs to be corrected? num computeSum(num price,num tax)
Declarations
Num result
Result = price + tax
Return
A) Change the result calculation to
Result = tax + price
B) Change the result calculation to
Result = (price + tax)
C) Change the return statement to
Return num
D) Change the return statement to
Return result
Correct Answer:

Verified
Correct Answer:
Verified
Q40: When two or more methods in a
Q41: Case 1<br><br>You have just starting working at
Q42: A method's name and parameter list constitute
Q43: The scope of a variable or constant
Q44: Variables and constants declared within a method
Q45: Programmers say the data items are _
Q46: Case 1<br><br>You have just starting working at
Q47: _ variables and constants are those that
Q48: Creating submethods makes the calling method's logic
Q49: Methods are considered _,that is,they can more