Services
Discover
Ask a Question
Log in
Sign up
Filters
Done
Question type:
Essay
Multiple Choice
Short Answer
True False
Matching
Topic
Computing
Study Set
Microsoft Visual Basic
Exam 6: The Repetition Structure
Path 4
Access For Free
Share
All types
Filters
Study Flashcards
Practice Exam
Learn
Question 41
Multiple Choice
Programmers use a(n) ____ when they need the computer to repeatedly process one or more program instructions until some condition is met,at which time the ____ ends.
Question 42
Not Answered
Which of the following statements adds the number stored in the decPrice variable to the number stored in the decSubtotal variable,and then assigns the result to the decSubtotal variable?
Question 43
Multiple Choice
If you have only two choices to offer the user,you should use two ____ rather than a list box.
Question 44
Essay
Write a pretest loop that adds together integers from 1 to 50.Use the intNumber variable (which contains the number 1)to keep track of the integers.Store the result in the intResult variable (which contains the number 0).Use the Do...Loop statement and the While keyword.
Question 45
Multiple Choice
You should use a ____ control to provide keyboard access to a list box.
Question 46
Essay
What is an accumulator? What does it mean to initialize and update an accumulator in a program?
Question 47
Multiple Choice
Which of the following loop structures always executes at least once?
Question 48
Essay
Write two different Do...Loop clauses that stop the loop when the value in the intAmount is less than or equal to the value in the intLimit variable.Use the Until keyword in the first clause,and use the While keyword in the second clause.