____ was created to fill the need for a teaching tool to encourage structured programming.
A. COBOL
B. Pascal
C. BASIC
D. FORTRAN
Answer: B
Computer Science & Information Technology
You might also like to view...
To specify a range of values to be tested in a Case statement within a Select Case structure, the word ____ must be used.
A. From B. Range C. To D. Cont
Computer Science & Information Technology
What is wrong with this code?
``` int Money4Me( int dollars ) { int pennies, coins; coins = dollars * 100; }``` A. The function name is invalid. B. There is no return type. C. You can’t have math statements inside a function. D. Nothing is wrong with it.
Computer Science & Information Technology