Basic concepts in OOP Flashcards
What is object oriented programming ?
A method of programming based on hierarchy of classes with well defined and cooperating objects
OR
A language model organized around objects
OR
A schematic paradigm for programming in which the linear concepts of procedures and tasks are replaced by the concepts of objects and message passing.
What is an object ?
An object is an executable copy of a class.
OR
It can be referred to as a new instance
What are the characteristics of objects ?
State
Behavior
How do you create an object ?
Create a class Create a constructor Create the object
How does an object store its states
In fields
How does an an object expose its behavior
through methods
How do objects communicate?
through methods that operate on an objects internal state.
What is a class?
A blueprint from which then individual objects can be created. OR A class is a structure that defines the data and the methods to work on that data
What is the syntax of class
class CLASSNAME{ // constructor( ) { } // Object }
What is a package
A namespace that organizes a set of related classes and interfaces.
What is an encapsulation
The concept that enables the hiding unnecessary details in classes and only providing a clear and simple interface for working with them.
What is inheritance?
This is a concept in OOP that enables new objects to take on the properties of existing objects.
What is a subclass/derived class?
A class that inherits from a superclass.
What is the base or superclass?
A class that is used as the basis for inheritance.
Example
class Student { int studentID; String emailAddress; String name; String sex; Date D.O.B; string course; } class UndergraduateStudent extends Student{ String mentor; string degreeCourse; int numberOfMajors;
What is abstraction?
Abstraction is the process of extracting common features from specific examples.
OR
Abstraction is a process of defining the essential concepts while ignoring the inessential details.
What are the different types of abstraction?
Data Abstraction
Functional Abstraction
Object Abstraction
What is polymorphism?
This is the ability to present the same interface differing underlying forms
What are the two common types of polymorphism in OOP?
Method Overloading
Method overriding
What is garbage collection?
This is a form of automatic memory management whereby the garbage collector attempts to reclaim garbage or memory occupied by the objects that are no longer in use by the program.
What are variables?
This is a container that holds values that are used in a program.
what are the types of variables in java?
Instance variables class variables local variable parameters
What is an instance variable?
Non-static fields are also known as instance variables because their values are unique to each instance of a class (object)
What is a class variable?
This is a field declared with the static modifier
What is a local variable
These are variables declared within a method.
What are parameters?
These are the variables found within the parenthesis.