Study

Visual Basic Revision

  •   0%
  •  0     0     0

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