OOP_Q3_Reviewer

0.0(0)
studied byStudied by 1 person
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/17

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

18 Terms

1
New cards
Variables
________ and Methods are skipped when serializing the object containing them.
2
New cards
Methods
________ or Functions are used to divide and sort Functionalities within a class so that the code will be readable even if it is long.
3
New cards
OBJECTS
________- It is created by instantiating a Class.
4
New cards
TRUE
You can have as may Arguments/Parameters as you want
5
New cards
void
a return type that returns nothing
6
New cards
int
a return type that returns integers
7
New cards
string
a return type that return strings
8
New cards
TRUE
In Overloading Methods, you can use the same method name but different parameters so that you will cater every possibility of a method
9
New cards
OBJECT ORIENTED PROGRAMMING
focuses on implementing read world objects using Classes to create variations of Objects, that has attributes and purpose
10
New cards
CLASSES
created by the programmer, It will act as a blueprint of an object that you want to implement in your program
11
New cards
OBJECTS
It is created by instantiating a Class
12
New cards
ATTRIBUTES
These are the global variables declared inside the class of our object
13
New cards
CLASS Instantiation
The process of creating an Object using a class so we can use it on our program
14
New cards
PACKAGES
This is like a folder in our project where we can throw all our related codes in the same directory
15
New cards
TRUE
We can create multiple packages inside our java project, we can also reuse it in other projects if we choose to do so
16
New cards
TRUE
We can create classes inside a package and import it in our main class so that we can use that class in our program
17
New cards
CLASS Instantiation
The process of creating an Instance of a class so we can use it on our program
18
New cards
ACCESS Modifiers
Used to modify where classes, variables and methods are accessible