Flexibility of a good program means?
handling of any change(s) without having to rewrite the entire program
the length of processing time and memory to process the instruction
the program has to be broken down into a number of sub-tasks
the program should work for two similar tasks in the same domain
Correct answer is A
No explanation has been provided for this answer.
The IF...THEN statement in BASIC programming is?
a transfer of control
used to redirect a statement
used to eliminate the need for prompting each INPUT statement.
a conditional branch statement
Correct answer is A
No explanation has been provided for this answer.
The term compiler in computer programming refers to a?
key punch operator of the computer
person who compiles source programs
person who writes the computer programming codes
program which translates source program into object program
Correct answer is D
No explanation has been provided for this answer.
. Translate 2m2 + 3n- 9 as a BASIC arithmetic expression.
2 * m * 2 + 3 * n - 9
2 * m ^2 +3 * n - 9
2 * 2 * m + 3 * n - 9
2 * m * m * n + 3 - 9
Correct answer is A
No explanation has been provided for this answer.
Three major types of language translators are?
assembler, compiler and editor
assembler, Compiler and interpreter
compiler, debugger and editor
debugger, assembler and interpreter
Correct answer is B
No explanation has been provided for this answer.