Name the data type we use to represent words and text.
String
200
What is a computer's native language called?
Machine Language
200
True or False:
Dim aNum as String
Declares the variable aNum as a plasce to store only numbers.
False
Declasing any variable as string means it contains text which can be either numbers and/or letters and/or special characters.
200
Yes or No:
Can a string contain numbers and special characters?
Yes
Strings can contain just about anything.
300
What does the compiler program do?
Converts programming instructions to machine language.
300
What kind of variable [data type] contains only "True" or "False"?
Boolean
300
Is this declaration valid?
DIM aString As String = This is a string
NO - string values must be enclosed in quotes.
400
Like a book, Visual Basic has structure: modeuls are like chapters, procedures are ;like paragraphs, and [blank of code] are like sentences. Fill in the blank.
Lines of code
400
What symbol do you use to assign values to a variable?
the EQUAL sign
400
DIM aString as String = "Olivia"
DIM bString as String = "Van Vreede"
bString = aString