Quiz2-InputProcessingOutput Flashcards
The structure of the camelCase naming convention is to write the first word of the variable name in lowercase letter and then to capitalize the first character of the second and subsequent words. (T/F)
True
The following two expressions will always yield identical results: (T/F)
(a + b) / c
a + b / c
False
An uninitialized variable is a variable that has been declared and automatically initialized to zero. (T/F)
False
A sequence of characters that is used as data is called a String. (T/F)
True
In a flowchart, the symbol that represents an assignment statement is an oval. (T/F)
False
Not oval that’s start end
it’s a processing symbol (rectangle)
Pseudocode is often used to plan out a program because the programmer does not have to worry about syntax rules. (T/F)
True
A variable is a storage location in memory that is represented by a name and can hold different values during the execution of the program. (T/F)
True
In a mathematical expression, addition and subtraction will be evaluated before multiplication (T/F).
False
Variable names cannot include spaces. (T/F)
True
The variable name myBookTitle
is written in camelCase convention. (T/F)
True
Flowcharts and pseudocode documents are the same thing.(T/F)
False
Which of the following error types produces incorrect results but does not prevent the program from running?
A) Logic
B) Syntax
C) Human
A) Logic errors
The program development cycle is made up of _____ steps that are repeated until no errors can be found in the program.
5 steps are:
1. Requirements/analysis info
2.Designing
3.Coding
4.Testing
5.Implementation/Deployment to an audience
_________ is an informal language used by programmers to create models of programs.
Pseudocode
A(n) __________ is a diagram that graphically depicts the steps that take place in a program.
Flowchart
The __________ structure consists of a set of statements that execute in the order in which they appear.
Sequence
A(n) ___________ symbol is used for an assignment statement in a flowchart.
Processing symbol (Rectangle)
The __________ operator is used to raise 5 to the second power.
Caret symbol
What is the value of the following expression?
12 - 4*3 / 2 + 9
15
FOLLOW PEMDAS UNLESS INDICATED BY ()
4*3=12
12/2=6
12-6=6
6+9=15
What is the value of the following expression?
(12 - 4) *3 / 2 + 9
21
DO PARANTHESIS FIRST
THEN PEMDAS LEFT TO RIGHT
(12-4)=8
8*3=24
24/2=12
12+9=21
Which of the following is NOT a variable data type?
Numeral, Real, String, Integer.
Numeral
A(n) __________ is a name that represents a value which cannot be changed during the program’s execution.
Named constant
The process of stepping through each of a program’s statements, one by one to see what each statement does is known as ____________.
Hand tracing
The following is an example of a(n) _____________ statement.
Set rate = 6.25
Assignment
(would be in the rectangle)
Which of the following is NOT an actual programming language?
C++, Java, Pseudocode, Python, HTML
Pseudocode
What is the first step of the program development cycle?
A) Write the code
B) Correct for Syntax errors
C) Design the program
C) Designing the Code
What term is used for a string that appears in the actual code of a program?
literal string
What symbol is used to mark the beginning and end of a string?
Quotation marks (“)double (‘)single
A variable declaration typically specifies the variable’s _________ and ________.
Name, Data Type
Which of the following would cause an error in a program?
A) Attempting to store a floating-point value in a variable with Integer data type
B) attempting to store a floating-point value in a variable with String data type
C) attempting to store an Integer in a variable with String data type.
D) ALL of these would cause errors
D) ALL of these would cause errors
syntax errors specifically
What is the value of the variable
result in the following expression?
Set result = 6 + 8 * 4 / 2
22
PEMDAS
8*4=32
32/2=16
6+16=22
What is the value of the variable result in the following expression?
Set result = (6 + 8) * 4 / 2
28
PARANTHESIS then PEMDAS
6+8=14
14*4=56
56/2=28
What is the value of the variable result in the following expression?
Set result = (6 + 8) / 4 * 2
7
6+8=14
14/4=3.5
3.5*2=7
What is the error in the following pseudocode?
Display “What is your name?”
Input userName
Declare String userName
userName has been used (line 2) BEFORE it is declared (line 3)
What is the error in the following pseudocode?
Declare String user
Display “How many widgets do you want to buy?”
Input user
The input variable “user” was declared a String. But “user” should be a number (integer or real) not a string (characters).
What is the error in the following pseudocode?
Declare Integer widgets
Declare Real cost
Set widgets = 3.5
Set cost = widgets * 5
widgets was declaed as an Integer but it should be a REAL because the value= 3.5.
integers cannot hold a floating-point values (numbers with decimals or negatives).