22. Which of the following is not a general guideline for developers?
A. Group programming activities into phases.
B. Involve users for whom the program is being developed.
C. Define the standards, or sets of rules and procedures, for creating the product.
D. Start programming before creating a proposal.
23. Which of the following tools translates the source code of a procedural program into binary code?
A. debugger
B. compiler
C. source code editor
D. code repository
24. Which of the following translation tools does NOT produce or store object code but translates instructions statement by statement?
A. Compilers
B. Debuggers
C. Interpreters
D. Eclipse
22. Which of the following is not a general guideline for developers?
D. Start programming before creating a proposal.
Explanation: Programming is not recommeed until the design is
finalized.
23. Which of the following tools translates the source code of a procedural program into binary code?
B. compiler
Explanation: Compiler does the conversion intop binary
code
24. Which of the following translation tools does NOT produce or store object code but translates instructions statement by statement?
C. Interpreters
Explanation: Interpreters does translates inbstructions statement
by statement
Thanks, PLEASE COMMENT if there is any
concern.
22. Which of the following is not a general guideline for developers? A. Group programming activities...
1. Which of the following statements is NOT correct about high-level languages? a. A program written in a high-level language is called a source program or source code. b. A source program can be executed directly on computers. c. Other programming tools can be used to translate a source program into machine code for execution. d. A compiler can translate the entire source program into machine-code file.
Python Programming QUESTION 16 Which of the following is an example of a Keyword in Python? elif class for All of the above QUESTION 17 Which of the following is not an acceptable variable name in Python? 2ndVar $amount Rich& ard None of the above are acceptable variable names QUESTION 18 The number 1 rule in creating programs is ___________________- Write the code first Think before you program Let the compiler find you syntax errors There are no rules just...
CS 1102 Unit 5 – Programming Assignment In this assignment, you will again modify your Quiz program from the previous assignment. You will create an abstract class called "Question", modify "MultipleChoiceQuestion" to inherit from it, and add a new subclass of "Question" called "TrueFalseQuestion". This assignment will again involve cutting and pasting from existing classes. Because you are learning new features each week, you are retroactively applying those new features. In a typical programming project, you would start with the...
CS 1102 Unit 5 – Programming Assignment In this assignment, you will again modify your Quiz program from the previous assignment. You will create an abstract class called "Question", modify "MultipleChoiceQuestion" to inherit from it, and add a new subclass of "Question" called "TrueFalseQuestion". This assignment will again involve cutting and pasting from existing classes. Because you are learning new features each week, you are retroactively applying those new features. In a typical programming project, you would start with the...