Game Preview

Visual Basic Revision

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