Home > Visual Basic Programming > Quizzes > VB.NET Fundamentals Test
VB.NET Fundamentals Test
Fast practice, instant feedback. Timer auto-submits when time’s up.
Avg score: 0% Most missed: “How do you create a Read only Property in VB.NET”
VB.NET Fundamentals Test
Time left 00:00
25 Questions

1. BCL stands for?
2. ____________ is when objects contain their respective data and code.
3. In order to allow multiple WCF services to listen on the same port - you must set which property of the binding class to true?
4. What toolbar allows you to control alignment and spacing?
5. A property of an object can be another object.
6. A 'for' loop will run faster in VB.NET or C# ?
7. A variable declared as: Dim Var as Integer = 5 - after executing the next line of: Var -= 1 - would have what value?
8. In the declaration: Dim varA As Object - VarB - VarC As Integer - what type is VarB?
9. How do you create a Read only Property in VB.NET
10. What character precedes a hotkey or accelerator that you are creating?
11. A collection of DataRows is called a ________.
12. How many times can a class inherit from different parent classes?
13. True or False? The Finally portion of a Try-Catch-Finally block only executes when an error occurs.
14. What technology allows you to issue SQL-like commands against a collection of objects in VB.Net?
15. In order to copy the schemas - relationships and constraints of a dataset but not any data you would utilize which method?
16. How do you limit implicit type conversion in VB.NET?
17. Terminate a For/Next loop with the _______ statement.
18. True or False? The following array declaration is valid: Dim X(-1) As Integer.
19. Which operation is performed first in the following example? y = 17 + 7 / 2
20. Which of the following is not a method of the Textbox class?
21. Which statement helps prevent multiple threads from accessing the same codeblock at the same time?
22. When you open a loop with a For statement - you can close the loop with a ___________ statement.
23. The correct syntax for the event that is fired when the mouse pointer rests on a TextBox control is
24. True or False? A public method declared inside of a public module is accessible from another assembly.
25. True or False? By default - parameters are passed ByRef.