ANSWERS KENNESAW STATE UNIVERSITY
UPDATED REVIEW COLLECTION 2026
QUESTIONS WITH CORRECT SOLUTIONS
GRADED A+
⩥ IDE stands for. Answer: Integrated Development Environment
⩥ programming design consists of. Answer: steps a programmer should
do before
they start coding a program in a specific language.
⩥ T/F : a flowchart is a type of diagram that represents an algorithm,
workflow or process. Answer: true
⩥ pseudocode is... Answer: an informal high-level description of the
operating principle of a computer program or algorithm.
⩥ programming starts with... Answer: developing an algorithm
⩥ T/F : input is sending messages to the console/user. Answer: false
, ⩥ T/F : software testing involves the execution of a software component
or system component to evaluate one or more properties of interest.
Answer: true
⩥ debugging is the process of... Answer: solving errors in the source
code.
⩥ T/F : the MAIN method tells the program where to begin running
code as it is the entry or starting point for the program. Answer: true
⩥ what is the output of the following code:
BEGIN MAIN
int num1 = 500;
int num2 = 200;
int num3 = 300;
double average = num1 + num2 + num;
printline(average);
END MAIN Answer: 800.0
⩥ what would be the best data type to represent product? a variable that
stores information about the number of items currently in stock in a
grocery store. Answer: int