Section 8: Program Editing142
    a. Press g GTO · · to set the calculator to the end of program memory and load the program.
 
  01 LBLTFALL    
   
 
  02 2    
   
 
  03 *    
   
 
  04 9.8    
   
 
  05 /    
   
 
  06 SQRT    
   
 
  07 END     
   
    b.
Run the program to compute the time taken by a stone falling from the top of the Eiffel Tower, 300.51 meters high; from a blimp stationed 1050 meters in the air.
(Answers: 7.8313 seconds; 14.6385 seconds.)
 
    c. Alter the program to compute the time of descent when the height in feet is known, according to the formula:
      t = √ (2h/32.174)
    d. Run the altered program to compute the time taken for a stone to fall from the top of the 550-foot high Grand Coulee Dam and a coin from the top of the 607-feet high Space Needle in Seattle, Washington.
      (Answers: 5.8471 seconds; 6.1427 seconds.)