Exam 3: Understanding Structure
Exam 1: An Overview of Computers and Proramming51 Questions
Exam 2: Elements of High Quality Programs51 Questions
Exam 3: Understanding Structure51 Questions
Exam 4: Making Decisions51 Questions
Exam 5: Looping51 Questions
Exam 6: Arrays51 Questions
Exam 7: File Handling and Applications51 Questions
Exam 8: Advanced Data Handling Techniques51 Questions
Exam 9: Advanced Modularization Techniques51 Questions
Exam 10: Object Oriented Programming51 Questions
Exam 11: More Object Oriented Programming Concepts51 Questions
Exam 12: Event Driven Gui Programming Multithreading and Animation51 Questions
Exam 13: System Modeling With the Uml51 Questions
Exam 14: Using Relational Databases51 Questions
Select questions type
A group of statements that execute as a single unit are called a(n) ____________________.
Free
(Short Answer)
4.9/5
(32)
Correct Answer:
block
if-else examples can also be called ____ because they contain the action taken when the tested condition is true and the action taken when it is false.
Free
(Multiple Choice)
4.8/5
(36)
Correct Answer:
D
Structured programming is sometimes called ____________________-less programming.
Free
(Short Answer)
4.8/5
(37)
Correct Answer:
goto,go to,go-to
A loop must return to the ____ question at some later point in a structure.
(Multiple Choice)
4.9/5
(41)
The following pseudocode is an example of a ____ structure. get number
While number is positive
add to sum
get number
Endwhile
(Multiple Choice)
4.8/5
(44)
A ____ read is an added statement that gets the first input value in a program.
(Multiple Choice)
4.8/5
(43)
As a general rule, an eof question should always come immediately after an input statement because the end-of-file condition will be detected at input.
(True/False)
4.9/5
(41)
Match each term with a statement below.
Correct Answer:
Premises:
Responses:
(Matching)
4.9/5
(43)
Why does spaghetti code have a shorter shelf life than structured code?
(Essay)
4.8/5
(35)
Rewrite the following as a while loop:
do
pay bills
while more bills remain to be paid
(Essay)
4.8/5
(48)
The following pseudocode is an example of a ____ structure. if firstNumber is bigger than secondNumber then
print firstNumber
Else
print secondNumber
Endif
(Multiple Choice)
4.9/5
(37)
Structured programs can be easily broken down into routines or ____ that can be assigned to any number of programmers.
(Multiple Choice)
4.7/5
(28)
Structures can be stacked or connected to one another at their ____.
(Multiple Choice)
4.8/5
(33)
The following pseudocode is an example of a ____ structure. get firstNumber
Get secondNumber
Add firstNumber and secondNumber
Print result
(Multiple Choice)
4.9/5
(41)
A(n) ____________________ can contain any number of tasks, but there is no option to branch off and skip any of the tasks.
(Short Answer)
4.7/5
(39)
Showing 1 - 20 of 51
Filters
- Essay(0)
- Multiple Choice(0)
- Short Answer(0)
- True False(0)
- Matching(0)