• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/32

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

32 Cards in this Set

  • Front
  • Back
Base class
A class that is inherited by another class.
Class
A composite data type that groups related data and procedures
Class module
A separate file used to code a new class. Appears as a separate code window containing a class declaration in the IDE.
Constructor
A METHOD THAT IS AUTOMATICALLY CALLED WHEN AN OBJECT IS INSTANTIATED.
Data hiding
Limiting access to data in a class
Data member
A variable member in a class
Derived class
A class based on another class.
Encapsulation
Data hiding in a class. Implemented with access modifier keywords
Field member
A constant member in a class
Instantiation
Creating an object of a class. A Dim statement with a class name as the data type.
Method member
A member of a class that is a type of procedure.
Object
An instance of a class
Overloaded
A method that performs an action depending on the number and type of arguments it receives.
Polymorphic
A method that can appear to change its task to meet the needs of the object calling it.
Property
A member of a class that can get (display) and set (assign) a value that is a data member of an object's class.
Add Class command
Adds a new module with a Class declaration to an open project. Found in the Project menu.
Add Exiting Item command
Adds an existing form or class to a project. Found in the Project menu.
Get()
Procedure used for returning a data member value to a calling object.
Inherits
Statement used in a CLass declaration to give a new class all the features of an existing class.
New
Keyword use in a statement to declare a new object
Overridable
Keyword used in a base class method declaration to allow a general purpose method to be redefined in a derived class.
Overrides
Keyword used in a derived class method declaration to redefine a method from the base class.
Private
Access modifier keyword that declares a member of a class as accessible to the clas only.
Private Const
Declaration used in a statement to declare a field as accessible to the class only.
Property
Statement used to delare a property for a class.
Protected
Access modifier keyword that declares a member of a class as accessible to the class and derived classes.
Public
Access modifier keyword that declares a member of a class as accessible to class objects.
Public Class
Statement used to declare a new class
Public Const
Declaration used in a statement to declare a field as accessible to the class and class objects.
ReadOnly
Keyword used in a property declaration to allow a class object to get the property value, but not set the value.
Set()
Procedure used to give a data member a new value from the calling object.
Shadows
Keyword used in a derived class field declaration to redefine a field.