Introduction to Java Flashcards
What is the meaning of OOP?
Object Oriented Programming
This is not a Programming Language, it’s a paradigm
Object Oriented Programming
In OOP, it focuses on implementing real world object using what?
Classes
OOP focuses on implementing real world object using classes to create variations of what?
Objects
True or False:
Objects does not have any attributes and purpose.
False
OOP helps us create what kind of code?
Flexible and Efficient Code than procedural programming
This are created by the programmer
Classes
Classes are created to act as a what of an object?
Blueprint
True or False:
Classes will act as a blueprint of an object so you can implement to your program
True
In classes, what does it contain?
“Attributes and Methods” that your desired object should have
This are created by instantiating a class
Objects
Objects has anything that has what?
Attribute and Purpose
These are the global variables declared inside the class of our object
Attributes
Attributes are use to what?
“Create Variations” of an object using only one class
This is the process of creating an Object using a class so we can use it on our program/
Class Instantiation