-
What is the difference between a class and a object - a
class is your own created data type, and objects are created
from classes.
-
What does instantiate mean - an instance is a concrete
occurrence of any object, existing during the run time of the
program.
-
What are the benefits of creating classes - some benefits of
creating classes are that it is possible to protect your
variables with the private syntax. You can also make them public.
-
What is another name for a class variable - another name for a
class variable is a class atribute.
-
What is a reason that you would make a class variable private -
you would make a class variable private so that you could protect
it. No other class can get to it.
-
What is a function that is inside a class called - the functions
that are inside of classes are called member functions.
-
What is a constructor - a constructor is a kind of member function
that initializes an instance of its class and no return value.
go to section_6 html page
go to section_6_training html page