Chapter 4
Chapter 5
Operate this!
This code needs a fixin'
This category is like a box of chocolates
100
This is the name prefix for a textbox
What is txt
100
Every If statement must end with this
What is End If
100
11 Mod 2 =
What is 5
100
Dim intyear As Decimal stryear = txtyear.text intyear = Convert.ToInt32(stryear)
What is Decimal should be changed to Integer
100
For Arithmetic Operators, which comes first in the order of operations?
What is Exponents
200
This property allows you to click on a button using the enter key
What is the accept button
200
A GroupBox object is an example of this type of object
What is Container
200
6 <> 6 True or False?
What is False
200
If month.checked Then intnumber = 1 Else if year.checked then intnumber = 2 End If
What is the radio buttons need a name prefix of rad radmonth radyear
200
In the like of code To String("G") The N stands for this
What is General
300
This is a named location in the RAM where data is stored
What is a variable
300
<, > and = are examples of what type of operator?
What is Relational
300
zz < z True or False
What is False
300
If radyes.checked then intmoney = 50 Else if radno.checked then intmoney = 0
What is End if
300
This type of procedure does not return a value
What is subprocedure
400
This line of code does not allow any default conversions between numeric data types and string data types
What is Option Strict On
400
How would you write code that would make a message box titled 'error' display the text 'Invalid Entry'
What is Msgbox("Invalid Entry", ,"Error")
400
3 < 5 XOR 6 > 7 True or False?
What is True
400
Dim strseconds txtseconds.text = strseconds
What is decseconds = textseconds.tect
400
In this line of code intnumber = Convert.ToInt(strnumber) Strnumber is the _______________(identifies the value)
What is Argument
500
This is the format specifier you would use if you wanted to display a number as a percent with two places past the decimal
What is ToString("P2")
500
Which logical operator is first in the order of operations?
What is Not
500
Not(x > y) And Not (b < B) True or False
What is True
500
Option Strict On Dim intdistance As Integer intdistance = 17.5
What is 17.5 is a decimal
500
When you want to display two or more strings, you need this symbol &, which stands for what
What is Concatenate
M
e
n
u