Answer the following statements true (T) or false (F)

1. An algorithm must use operations from only a given set of basic operations.
2. (90+80+95)/3=AVERAGE is a valid assignment statement, assuming AVERAGE has been defined and assigned a value
3. NEWSALES=NEWSALES+OLDSALES is a valid assignment statement, assuming NEWSALES and OLDSALES have been defined and assigned values
4. READ 1000, 2000, 3000 is a valid input statement.
5. A structured walkthrough is a formal design review.

1. true
2. false
3. true
4. false
5. true

Computer Science & Information Technology

You might also like to view...

The pseudocode for an iterative method is shown below. What statement is missing from the area labeled (b)?Sailboat.sail to (target)  (a)  ( not [sailboat is within 5 meters of target] )     {     Do together          {          sailboat.turn to face target          sailboat.move forward 2 meters          }     }  (b) 

A. For B. If C. While D. Stop

Computer Science & Information Technology

Arrays of structures are very useful to replace ____ arrays.

A. parallel B. two-dimensional C. multi-dimensional D. static

Computer Science & Information Technology