Choose a topic to test your knowledge and improve your VB.Net skills
The number that appears after the period in the __________ value indicates the order in which the controls were added to the groupbox.
The TabIndex value of a group box is 5. If the txtName control was the first control added to the group box, its TabIndex value will be ___
Which of the following calculates the quarterly payment on a loan of $6000 for 3 years at 9% interest? Payments should be expressed as a negative number.
An application communicates with the user through _______
One can display a message box using the __________ method.
Which is the caption part for the following Visual Basic command? MessageBox.Show("Delete this record?","Payroll",MessageBoxButtons.YesNo, MessageBoxIcon.Exclamation, MessageBoxDefaultButton.Button2).
When referring to the method’s return value in code, one should use the __________ value rather than the integer.
You use the __________ constant to include the Exclamation icon in a message box.
The text box’s __________ event procedure prevents user from entering a specified character.
A control’s KeyPress event occurs every time ____
The procedure associated with the KeyPress event has __________ parameters.
‘e’ parameter’s __________ property is used to determine the pressed key.
‘e’ parameter’s __________ property is used to cancel the key if not accepted in the text area.
You use the __________ tool to add a radio button to a form.
Radio buttons are used to ____
During runtime radio button can be selected, if a radio button is already selected or not by using the __________ property.
Radio button in an interface is labeled using __________ property.
A Radio button can be directly accessed from the keyboard using a _______
You use the __________ tool to add a checkbox to a form.
Checkbox are used to _____
During runtime checkbox can be selected, if a checkbox is already selected or not by using the __________ property.
Checkbox in an interface is labeled using __________ property.
A checkbox can be directly accessed from the keyboard using a ____
Programmers use __________ known as loops.
The requirement for repeating the instructions is referred to as the ____
The requirement for not repeating the instructions is referred to as the _
In a __________ loop the condition is evaluated before the instructions within the loop are processed.
The __________ is used to code both pretest and posttest loops.
The __________ in a Do…Loop statement can contain variables, methods, constants, properties and operators.
How many times will the MessageBox.Show method in the following code be processed? intCount =0 Do While intCount > 3 MessageBox.Show("Hello") intCount = intCount + 1 Loop
How many times will the MessageBox.Show method in the following code be processed? intCount =0; Do MessageBox.Show("Hello") intCount += 1 Loop While intCount > 3
The instructions in a __________ loop are always processed at least once, whereas the instructions in a __________ loop might not be processed at all.
______ is a numeric variable used for counting something.
______ is a numeric variable used for accumulating something.
_______means to assign a beginning value to the counter or accumulator.
______ means adding a number to the value stored in the accumulator or counter.
When a checkbox’s ____________ property is set to true, it can both accept and display multiple lines of text.
Text box’s ReadOnly Property is set to ______________ by default.
A text box’s _____________ property specifies whether the text box has scroll bar.
The instruction above the loop is known as the ______
The instruction in the loop body is referred to as _______
The _______ allows you to abbreviate an assignment statement.
_______ is a numeric variable used for counting something.
A ____________ loop is a loop whose processing is controlled by a counter.
______ is a counter-controlled loop.
How many times will the MessageBox.Show method in the following code be processed? For intCount As Integer = 4 To 11 Step 2 MessageBox.Show("Hello") Next intCount
What value is stored in the intCount variable when the loop ends? For intCount As Integer = 4 To 11 Step 2 MessageBox.Show("Hello") Next intCount
How many times will the MessageBox.Show method in the following code be processed? For count As Integer = 5 to 9 Step 5 MessageBox.Show(“Hi”) Next count
What value is stored in the count variable when the loop ends? For count As Integer = 5 to 9 Step 5 MessageBox.Show(“Hi”) Next count
_____ is the process of adding a number to the value stored in a value.