IS 371 Final

UW-Madison IS371 Study Flashcards

129 cards   |   Total Attempts: 182
  

Cards In This Set

Front Back
An identifier whose value cannot be changed after its initial declaration is called a _______
Constant
Property______ returns an object containing all the values in a ListBox.
Items
Items’s method ______ adds an item to a ListBox.
Add
The expression _______ returns the current system time and date.
Date.Now
When Option Strict is set to On, variables ____
Might need to be converted explicitly to a different type to avoid errors
Property _____ of ______ contains the number of items in a ListBox.
Count, Items
The keyword is used to pass value-type variables to methods by-refer­ence
ByRef
To show the Solution Explorer if is not shown, select __________.
View > Solution Explorer
Which of the following is a valid declaration in Visual Basic?
Dim number As Integer
Whats the most appropriate variable to store a sales tax value in VB?
Double
A textbox can contain several lines of text. To enable this functionality we have to set __________ property to True
MultiLine
The default event of a textbox is ________
TextChanged
If a variable is initialized with a value of 5, what value will it contain after the expression -= 3
2
The body of a Do...While loop executes at least _______
At least once
The ______ statement executes until its loop-condition is false
Do While----Loop