ANSWERS KENNESAW STATE UNIVERSITY
ACTUAL EXAM PAPER 2026 QUESTIONS
WITH ANSWERS GRADED A+
⩥ Pseudocode is
A) a machine.
B) a formal programming language.
C) an informal high-level description of the operating principle of a
computer program or algorithm. Answer: C) an informal high-level
description of the operating principle of a computer program or
algorithm.
⩥ A flowchart is a type of diagram that represents an algorithm,
workflow or process.
A) True
A) False Answer: A) True
⩥ Software testing involves the execution of a software component or
system component to evaluate one or more properties of interest.
A) True
B) False Answer: A) True
,⩥ IDE stands for
A) Integrated Development Environment
B) Initial Degree Expectations
C) Intramural Department Executive Answer: A) Integrated
Development Environment
⩥ Debugging is the process of
A) publishing the source code to the client.
B) writing source code.
C) solving errors in the source code.
D) compiling the source code. Answer: C) solving errors in the source
code.
⩥ Input is sending messages to the console/user.
A) True
B) False Answer: B) False
⩥ Output is process of reading information from user, usually via
keyboard or mouse.
True
False Answer: False
,⩥ The MAIN method tells the program where to begin running code as
it is the entry or starting point for the program.
True
False Answer: True
⩥ Programming starts with
looking online for the answers.
developing an algorithm.
writing code until it works. Answer: developing an algorithm.
⩥ 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
Error message
333.33333333333
333.0
800.0 Answer: 800.0
, ⩥ If the expression xyz % 3 == 0 is true and xyz is a positive integer,
then the value stored in the variable xyz is evenly divisible by 3.
True
False Answer: true
⩥ A String (or string) object is a primitive data type.
True
False Answer: false
⩥ What would be the best datatype to represent product? A variable that
stores information about the number of items currently in stock in a
grocery store.
float
double
int
String Answer: int
⩥ What is the value of j after this code is executed?
BEGIN MAIN
int i = 6, int j=10;
j+=i;
END MAIN