OOP Terminology Flashcards

You may prefer our related Brainscape-certified flashcards:
1
Q

OOP

A

It is a programming model that is based on interconnected objects. Example: Java

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

Abstraction

A

Abstraction is being able to use something without knowing how it really works Example: A person driving a car.

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

Reserved Words

A

Words in java that are a part of the language. You cannot use them in any other way. Example: String, int, and boolean.

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

Class

A

A blueprint for a group of objects with similar characteristics. Example: public class Cars{}

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

Object

A

An example or instance of a class. For example, Jaguar might be an instance of the class Cars.

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

Modularity

A

The ability that code can be designed in modules that assemble together and work separately.

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

New Keyword

A

Creating a word to make a new object in java and storing the new word in the memory of the program. Example: Scanner scan= new Scanner(System.in);

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

Null Keyword

A

Null is a reserved word for literal strings. it indicates no data is referenced.

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