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