Programming starts with
A) writing code until it works.
B) looking online for the answers.
C) developing an algorithm. - ANS-C
Pseudocode is
A)
an informal high-level description of the operating principle of a computer program or algorithm.
B)
a formal programming language.
C)
a machine. - ANS-A
IDE stands for
A) Intramural Department Executive
B) Integrated Development Environment
C) Initial Degree Expectations - ANS-B
Software testing involves the execution of a software component or system component to
evaluate one or more properties of interest.
True
False - ANS-true
Input is sending messages to the console/user.
True
False - ANS-false
Output is process of reading information from user, usually via keyboard or mouse.
True
False - ANS-false
Program design consists of
A)
writing the documentation for a program.
B)
the ability to solve problems.
C)
writing the code for a program.
D)
, steps a programmer should do before they start coding a program in a specific language. -
ANS-D
The MAIN method tells the program where to begin running code as it is the entry or starting
point for the program.
True
False - ANS-true
A flowchart is a type of diagram that represents an algorithm, workflow or process.
True
False - ANS-true
Debugging is the process of
A) writing source code.
B) compiling the source code.
C) solving errors in the source code.
D) publishing the source code to the client. - ANS-C
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 - ANS-true
What is the output of the following code?
int u = 3;
int v = 5;
u += v;
v += u;
u -= v;
v -= u;
PRINT (u + ", " + v);
A) 5, 3
B) -5,-3
C) -5, 18
D) 3, 5 - ANS-C
A String (or string) object is a primitive data type.
True
False - ANS-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.