View
 

Test Study Guide

Page history last edited by Mr. Kretsch 7 months, 1 week ago

Know these definitions

  • IDE
  • TOE
  • Property
  • Variable
  • Block
  • Scope 
  • Object 
  • Event 

Know these concepts

  • Access key
  • Accept and Cancel keys
  • Tab index 
  • TOE Chart
  • Data types, Integer, Float, and String 

Know the common properties of buttons, labels, and text boxes 

Remember the ideas in the Good User Interface slides 

Understand variables 

  • What does the statement
    Dim fltPi as Float = 3.14159
    do? 
  • The statement
    intCounter = intCounter + 1
    is bad algebra but a legal and often useful program statement. What does it do? 
  • Where can I use a variable declared in a Sub?
  • Where can I use a variable declared at the top of the class? 

Understand arithmetic expression evaluation

  1. If the variable intFoo equals 23, then intFoo / 4 equals 5. Why?
  2. If the variable intBar equals 101, then intBar Mod 12 also equals 5. Why? 
  3. If the variable intFie equals 4 and the variable intFum equals  -2, then the expression:
              4 - intFie * intFum + 6
    equals  18. Why?

 

Comments (0)

You don't have permission to comment on this page.