C++ Programming Flashcards
1
Q
What are some features of c++?
A
Support everything that C offers
Provides the foundation for OO program implementation
Extends C by providing advanced features.
2
Q
What are identifiers?
A
Identifiers are names of functions, labels, or variables.
3
Q
What is a variable?
A
A named location in memory where a value of the specified type is stored.
4
Q
What is an address?
A
A value specifying a location in memory
5
Q
What is an extern?
A
variables that are defined in another module.
6
Q
What is an auto?
A
automatic variable, used to define local variables.
7
Q
What oop languages have in common?
A
Objects
Inheritance
Polymorphism