Introduction to Java Flashcards

1
Q

What is the meaning of OOP?

A

Object Oriented Programming

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

This is not a Programming Language, it’s a paradigm

A

Object Oriented Programming

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

In OOP, it focuses on implementing real world object using what?

A

Classes

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

OOP focuses on implementing real world object using classes to create variations of what?

A

Objects

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

True or False:
Objects does not have any attributes and purpose.

A

False

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

OOP helps us create what kind of code?

A

Flexible and Efficient Code than procedural programming

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

This are created by the programmer

A

Classes

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

Classes are created to act as a what of an object?

A

Blueprint

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

True or False:
Classes will act as a blueprint of an object so you can implement to your program

A

True

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

In classes, what does it contain?

A

“Attributes and Methods” that your desired object should have

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

This are created by instantiating a class

A

Objects

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

Objects has anything that has what?

A

Attribute and Purpose

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

These are the global variables declared inside the class of our object

A

Attributes

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

Attributes are use to what?

A

“Create Variations” of an object using only one class

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

This is the process of creating an Object using a class so we can use it on our program/

A

Class Instantiation

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