Choose a topic to test your knowledge and improve your VB.Net skills
____ can be used instead of a Structure statement.
It is disadvantageous to use public variables in classes because ____
____ variables of a class are not visible to applications that use the instance of that class.
You create a Public property using a _______ procedure.
The ________ keyword indicates that the property’s value can be retrieved (read) by an application.
The ________ keyword indicates that an application can set the property’s value, but it cannot retrieve the value.
The code contained in the ______ allows an application to retrieve the contents of the Private variable associated with the property.
Is there an error in the below code? Private _intSide As Integer Public Property Side As Integer _intSide=_intSide+2 End Property
Is there an error in the below code? Private _dblBonus As Double Public ReadOnly Property Bonus As Double Set(ByVal value As Decimal) _dblBonus = value End Set End Property
A ________ is a special computer that serves webpages.
A _______ computer requests web pages from the server.
A ________ web page is not interactive and is used to display information only.
ASP is a ________ language that tells the client’s browser how to render the page on the computer screen.
Text that cannot be changed by the user is termed as _____ text.
The first webpage added to an application is the _______ page.
___ property sets the border of an image.
_____ initializes a new instance of Line class.
The background color of a Web page is determined by the ______ property.
A ______ Web page contains controls with which the user can interact.
A button’s _______ event is used to run code.
The ______ validator is used to compare an entry with a constant value or the property stored in a control.
The ______ validator is used to display all of the validation error messages in a single location on aWeb page.
The ______ validator is used to verify that an entry is within the specified minimum and maximum values.
The ______ validator is used to verify that an entry matches a specific pattern.
The ______ validator is used to verify that a control contains data.
The ______ validator is used to verify that control contains data verify that an entry passes the specified validation logic.
To make text appear around image ______ section is used.
If you want text to appear to the left of the selected image control on a Web form, you would need to click which button in thePosition dialog box?
The default property for a text box control is
Which of the following accesss modifier specifies that one or more declared programming elements are accessible from within the assembly that contains their declaration, not only by the component that declares them?
A _____ performs invisible tasks even if you write no code
A GUI
Visual Studio .NET provides which feature:
___ allow custom items of information about a program element to be stored with an assembly's metadata.
Which of the following is not correct about the value types and reference types in VB.NET?
Microsoft Windows uses a GUI environment. GUI (pronounced "gooey") stands for ____
The _____ enable us to pass data between a program and a class.
Which is true about the name and text property of a control?
Visual Basic is a tool that allows you to develop application in…………
Form_Mouse Down ( ) procedure is executed when any mouse button is clicked in a free area of the ______.
____ method removes a dialog box from view.
______ cannot be declared in a form or class module
____ function is used to return a copy of a string without leading spaces.
_____ is a method which moves the focus to the specified control or form
The default property for a text box control is _____
The ______ is a tool used for both the Input and output purpose
In visual basic the declaration of variables is done by _____ key word.