Adv VB.Net Practice Exam

Reviewed by Editorial Team
The ProProfs editorial team is comprised of experienced subject matter experts. They've collectively created over 10,000 quizzes and lessons, serving over 100 million users. Our team includes in-house content moderators and subject matter experts, as well as a global network of rigorously trained contributors. All adhere to our comprehensive editorial guidelines, ensuring the delivery of high-quality content.
Learn about Our Editorial Process
| By Tcarteronw
T
Tcarteronw
Community Contributor
Quizzes Created: 38 | Total Attempts: 32,005
| Attempts: 847 | Questions: 53
Please wait...
Question 1 / 53
0 %
0/100
Score 0/100
1. Use the _______ control from the toolbox to create list boxes on a form.

Explanation

Page: 280 Objective: 1

Submit
Please wait...
About This Quiz
Adv VB.Net Practice Exam - Quiz

The 'Adv VB. Net Practice Exam' assesses knowledge in handling multidimensional arrays, array elements, subscripts, and table lookups in VB. Net. Ideal for learners aiming to enhance their... see moreprogramming skills in Visual Basic. NET. see less

2. ________ is used for viewing print output on the screen.  The user can then choose to print or cancel.

Explanation

Page: 303 Objective: 11

Submit
3. The values of Boolean data types are referred to as _______.

Explanation

Page: 290 Objective: 8

Submit
4. The code that will add the name, John, to a combo box named cboNames is _______.

Explanation

Page: 283 Objective: 4

Submit
5. An array is a set of variables.  Each individual variable is called _______.

Explanation

322 Objective: 1

Submit
6. How many times will the statements inside this For/Next loop be executed?                 For indexInteger = 1 to 10                   'Statements in loop                 Next indexInteger

Explanation

Page: 293 Objective: 8

Submit
7. _______ can be used when two subscripts are needed to identify tabular data, such as when data is arranged in rows and columns.

Explanation

Page: 333 Objective: 8

Submit
8. Which of the following code examples can be used to determine the number of items in a list box named lstColor?

Explanation

Page: 284 Objective: 6

Submit
9. The SelectedIndex property of the first item in a list is _______.

Explanation

Page: 284 Objective: 5

Submit
10. Items can be added to a list during run time using the _________ method.

Explanation

Page: 282 Objective: 4

Submit
11. The process of repeating a series of instructions is called ______________.

Explanation

Page: 288 Objective: 8

Submit
12. Which of the following instructions will add the word, monkey, to a list box named lstAnimals?

Explanation

Page: 283 Objective: 4

Submit
13. Declare an array and specify the number of elements using _______.

Explanation

Page: 323 Objective: 1

Submit
14. How many times will the statements inside this For/Next loop be executed?                 For indexInteger = 2 to 12 Step 3                   'Statements in loop                             Next indexInteger

Explanation

Page: 293 Objective: 8

Submit
15. Which text box event occurs each time the user types a character into a text box?

Explanation

Page: 287 Objective: 7

Submit
16. Items in a list can be placed in alphabetical order by _______.

Explanation

Page: 283 Objective: 4

Submit
17. When is the counter incremented in a FOR/NEXT statement?

Explanation

Page: 292 Objective: 8

Submit
18. When is the counter tested in a FOR/NEXT statement?

Explanation

Page: 292 Objective: 8

Submit
19. What is the value of the SelectedIndex property if the user has selected the last item in a list with four items?

Explanation

Page: 284 Objective: 5

Submit
20. List boxes and combo boxes _______.

Explanation

Page: 281 Objective: 1

Submit
21. When you are working with an array, the easiest way to traverse the elements is to use the _______.

Explanation

Page: 324 Objective: 2

Submit
22. Terminate a For/Next loop with the _______ statement.

Explanation

Page: 295 Objective: 9

Submit
23. How many elements are contained in the array created with the following code?                           Dim strEmployee (25) As String

Explanation

Page: 323 Objective: 1

Submit
24. A single execution of a group of instructions inside a Do/Loop is called _______.

Explanation

Page: 288 Objective: 8

Submit
25. The code to delete the selected item from lstColor is _______.

Explanation

Page: 286 Objective: 4

Submit
26. What is the value of the SelectedIndex property if the user has not selected an item from a combo box?

Explanation

Page: 284 Objective: 5

Submit
27. Values for the items in a list _______.

Explanation

Page: 281 Objective: 3

Submit
28. The methods and events of the _________ component can be used to set up output for the printer.

Explanation

Page: 298 Objective: 11

Submit
29. Items can be added to a list during design time using the _________ collection.

Explanation

Page: 281 Objective: 3

Submit
30. When performing a table lookup, it is a good idea to include validation because _______.

Explanation

Page: 332 Objective: 6

Submit
31. Skip to the next iteration of a Do loop with the _______ statement.

Explanation

Page: 295 Objective: 10

Submit
32. The _______ method is used to send a line of text to the graphics page.

Explanation

Page: 300 Objective: 11

Submit
33. What will be the value of indexInteger after execution of these statements?             For indexInteger = 1 to 10 Step 2                 valueInteger = += indexInteger                         Next indexInteger

Explanation

Page: 293 Objective: 8

Submit
34. An individual item can be deleted from a list with the _______.

Explanation

Page: 285 Objective: 4

Submit
35. What method is used to make all of the text in a text box appear selected?

Explanation

Page: 297 Objective: 7

Submit
36. Which text box event occurs when a text box gets the focus?

Explanation

Page: 287 Objective: 7

Submit
37. The data that appears in a combo box when it is first displayed can be added to the combo box _______.

Explanation

Page: 281 Objective: 4

Submit
38. A VB programmer can combine multiple fields of related data using a _______.

Explanation

Page: 325 Objective: 3

Submit
39. The statements inside of a Do/Loop may never be executed if _______.

Explanation

Page: 288 Objective: 8

Submit
40. What will be the value of valueInteger after execution of these statements?             For indexInteger = 1 to 10 Step 2                 valueInteger += indexInteger                         Next indexInteger

Explanation

Page: 293 Objective: 8

Submit
41. When does a For/Next statement terminate iteration?

Explanation

Page: 292 Objective: 8

Submit
42. If an exception is thrown and the message, "Index was outside the bounds of the array." displays, this indicates _______.

Explanation

Page: 323 Objective: 1

Submit
43. How many times will the statements inside this For/Next loop be executed?                 For indexInteger = 4 to 1                   'Statements in loop                             Next indexInteger

Explanation

Page: 293 Objective: 8

Submit
44. What is the value of indexInteger after the code in the loop below is completed?                 For indexInteger = 1 to 10                   'Statements in loop                 Next indexInteger

Explanation

Page: 293 Objective: 8

Submit
45. Incorrect indentation of the statements in For/Next loops _______.

Explanation

Page: 292 Objective: 8

Submit
46. The group of instructions that are repeated in a Do/Loop are called a(n) __________.

Explanation

Page: 288 Objective: 8

Submit
47. Which of the following is not a style for combo boxes?

Explanation

Page: 281 Objective: 2

Submit
48. What is the value of indexInteger after the loop below is executed?                 For indexInteger = 4 to 1                   'Statements in loop                 Next indexInteger

Explanation

Page: 293 Objective: 8

Submit
49. __________ can be used to find a specific value in an array.

Explanation

Page: 329 Objective: 6

Submit
50. The code to print the selected item from the lstColor is _______.

Explanation

Page: 302 Objective: 11

Submit
51. The individual variables in an array are accessed by their _______, which is their position in the array.

Explanation

Page: 322 Objective: 1

Submit
52. The PrintDocument's PrintPage event is fired once for each page to be printed.  This technique is referred to as a _______.

Explanation

Page: 299 Objective: 11

Submit
53. A _______ control contains a text box as part of the control

Explanation

Page: 280 Objective: 1

Submit
View My Results

Quiz Review Timeline (Updated): Mar 22, 2023 +

Our quizzes are rigorously reviewed, monitored and continuously updated by our expert board to maintain accuracy, relevance, and timeliness.

  • Current Version
  • Mar 22, 2023
    Quiz Edited by
    ProProfs Editorial Team
  • May 11, 2011
    Quiz Created by
    Tcarteronw
Cancel
  • All
    All (53)
  • Unanswered
    Unanswered ()
  • Answered
    Answered ()
Use the _______ control from the toolbox to create list boxes on a...
________ is used for viewing print output on the screen.  The...
The values of Boolean data types are referred to as _______.
The code that will add the name, John, to a combo box...
An array is a set of variables.  Each individual variable is...
How many times will the statements inside this For/Next loop be...
_______ can be used when two subscripts are needed to identify tabular...
Which of the following code examples can be used to determine the...
The SelectedIndex property of the first item in a list is _______.
Items can be added to a list during run time using the _________...
The process of repeating a series of instructions is called...
Which of the following instructions will add the word, monkey, to a...
Declare an array and specify the number of elements using _______.
How many times will the statements inside this For/Next loop be...
Which text box event occurs each time the user types a character into...
Items in a list can be placed in alphabetical order by _______.
When is the counter incremented in a FOR/NEXT statement?
When is the counter tested in a FOR/NEXT statement?
What is the value of the SelectedIndex property if the user has...
List boxes and combo boxes _______.
When you are working with an array, the easiest way to traverse the...
Terminate a For/Next loop with the _______ statement.
How many elements are contained in the array created with the...
A single execution of a group of instructions inside a Do/Loop is...
The code to delete the selected item from lstColor is _______.
What is the value of the SelectedIndex property if the user has not...
Values for the items in a list _______.
The methods and events of the _________ component can be used to set...
Items can be added to a list during design time using the _________...
When performing a table lookup, it is a good idea to include...
Skip to the next iteration of a Do loop with the _______ statement.
The _______ method is used to send a line of text to the graphics...
What will be the value of indexInteger after execution of these...
An individual item can be deleted from a list with the _______.
What method is used to make all of the text in a text box appear...
Which text box event occurs when a text box gets the focus?
The data that appears in a combo box when it is first displayed can be...
A VB programmer can combine multiple fields of related data using a...
The statements inside of a Do/Loop may never be executed if _______.
What will be the value of valueInteger after execution of these...
When does a For/Next statement terminate iteration?
If an exception is thrown and the message, "Index was outside the...
How many times will the statements inside this For/Next loop be...
What is the value of indexInteger after the code in the loop below is...
Incorrect indentation of the statements in For/Next loops _______.
The group of instructions that are repeated in a Do/Loop are called...
Which of the following is not a style for combo boxes?
What is the value of indexInteger after the loop below is executed? ...
__________ can be used to find a specific value in an array.
The code to print the selected item from the lstColor is _______.
The individual variables in an array are accessed by their _______,...
The PrintDocument's PrintPage event is fired once for each page to...
A _______ control contains a text box as part of the control
Alert!

Advertisement