Edit Game
Visual Basic Revision
 Delete

Use commas to add multiple tags

 Private  Unlisted  Public



 Save

Delimiter between question and answer:

Tips:

  • No column headers.
  • Each line maps to a question.
  • If the delimiter is used in a question, the question should be surrounded by double quotes: "My, question","My, answer"
  • The first answer in the multiple choice question must be the correct answer.






 Save   18  Close
Looking at the properties of a form, explain the steps required to ensure the form starts maximized
Click on the WindowState property and change it from "normal" to "maximized"
What is called when you draw a rough design of the user interface with pen and paper?
Mock-up diagram
What does IDE stand for?
Integrated Development Environment
What is a word used to describe the process of finding and removing errors in code?
Debug
A sequence of instructions that continually repeats itself until a condition is met?
Loop
What is a conditional?
IF statement
A set of steps used to complete a specific task is called an?
Algorithm
A container/section used to define custom functions and variables is called a?
Module
What is another name for a window?
Form
What would the following line of code do?
Nothing! It is just a comment in the code for information
What do programmers call a set of instructions like this?
Pseudocode
Name the different objects that you can see on this form
1 button, 1 textbox, 3 lables
What type of variable only stores a true or false value?
Boolean
What type of variable stores text?
String
What type of variable only stores whole numbers?
Integer
What command is used to create a variable?
Dim
When coding with Visual Basic, what must be used eventually every time an "IF" is used?
End If
What does the following code do? lblChangeme.forecolor = color.red
Changes the font colour of lblChangeme to red