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.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What are identifiers?

A

Identifiers are names of functions, labels, or variables.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is a variable?

A

A named location in memory where a value of the specified type is stored.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is an address?

A

A value specifying a location in memory

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is an extern?

A

variables that are defined in another module.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What is an auto?

A

automatic variable, used to define local variables.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What oop languages have in common?

A

Objects
Inheritance
Polymorphism

How well did you know this?
1
Not at all
2
3
4
5
Perfectly