Advertisement
Guest User

Untitled

a guest
May 27th, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Question:  
  2.  
  3. (TCO 5) What is the value of the variable counter after the following loop is finished executing?
  4.  
  5.     set balance = 6000
  6.     set rate = 0.12
  7.     for counter = 1 to 4
  8.         set balance = balance times (1 + rate)
  9.     end for
  10.  
  11.     Your Answer:    
  12.                 3          
  13.                 4          INCORRECT
  14.                 5          CORRECT ANSWER
  15.                 6
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement