Exam 3: Understanding Structure
Exam 1: An Overview of Computers and Programming60 Questions
Exam 2: Elements of High-Quality Programs59 Questions
Exam 3: Understanding Structure60 Questions
Exam 4: Making Decisions60 Questions
Exam 5: Looping59 Questions
Exam 6: Arrays60 Questions
Exam 7: File Handling and Applications59 Questions
Exam 8: Advanced Data Handling Concepts60 Questions
Exam 9: Advanced Modularization Techniques60 Questions
Exam 10: Object-Oriented Programming60 Questions
Exam 11: More Object-Oriented Programming Concepts60 Questions
Exam 12: Event-Driven Gui Programming, Multithreading, and Animation60 Questions
Select questions type
Match each term with a statement below.
-A variation of the selection structure
(Multiple Choice)
4.8/5
(34)
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
(40)
The action or actions that occur within a loop are known as a(n)____.
(Multiple Choice)
4.8/5
(32)
In a structured program,any structure can be nested within another structure.
(True/False)
4.8/5
(34)
The following pseudocode is an example of ____. do stepA
Do stepB
If conditionC is true then
Do stepD
Else
Do stepE
Endif
While conditionF is true
Do stepG
Endwhile
(Multiple Choice)
4.8/5
(38)
Match each term with a statement below.
-All logic problems can be solved using only these three structures: sequence,selection,and loop.The three structures,of course,can be combined in an infinite number of ways.What are two general ways structures can be combined?
(Essay)
4.9/5
(33)
Programs that use _____ code logic are unstructured programs that do not follow the rules of structured logic.
(Multiple Choice)
4.9/5
(39)
When you ____________________ structures,the statements that start and end a structure are always on the same level and always in pairs.
(Short Answer)
5.0/5
(45)
Match each term with a statement below.
-Continue to repeat actions while a condition remains true
(Multiple Choice)
4.7/5
(37)
No matter how complicated it is,any set of steps can always be reduced to combinations of the two basic structures of sequence and loop.
(True/False)
4.8/5
(38)
Match each term with a statement below.
-Rewrite the following as a while loop:
do
pay bills
while more bills remain to be paid
(Essay)
4.9/5
(37)
Match each term with a statement below.
-Placing a structure within another structure
(Multiple Choice)
4.8/5
(40)
Pseudocode uses the end-structure statement ____ to clearly show where the structure ends.
(Multiple Choice)
4.9/5
(38)
A group of statements that execute as a single unit are called a(n)____________________.
(Short Answer)
5.0/5
(31)
A structured program includes only combinations of the three basic structures: ____.
(Multiple Choice)
4.9/5
(28)
Match each term with a statement below.
-Define the term structure as it relates to programming.
(Essay)
4.9/5
(37)
Match each term with a statement below.
-What are the characteristics of a structured program?
(Essay)
4.8/5
(42)
The following pseudocode is an example of ____. if conditionA is true then
Do stepE
Else
Do stepB
Do stepC
Do stepD
Endif
(Multiple Choice)
4.8/5
(29)
The following pseudocode is an example of a ____ structure. get firstNumber
Get secondNumber
Add firstNumber and secondNumber
Print result
(Multiple Choice)
4.7/5
(41)
Showing 21 - 40 of 60
Filters
- Essay(0)
- Multiple Choice(0)
- Short Answer(0)
- True False(0)
- Matching(0)