• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/36

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

36 Cards in this Set

  • Front
  • Back
Object-oriented programming features:
-data abstraction
-encapsulation
-modularity
-polymorphism
-inheritance
What is an object?
an independent 'machine' with a distinct role or responsibility.
Class
A Class is a user defined datatype which contains the variables, properties and methods in it.
Instance
An occurrence or a copy of an object.

"Lassie object is an instance of the Dog class."
Object State
The set of values of the attributes of a particular object
Method
Method is a set of procedural statements for achieving the desired result.
Message passing
The process by which an object sends data to another object or asks the other object to invoke a method.
Inheritance
a class inherits all the state and behaviour of another class.

"Subclasses" are more specialized versions of a class
Encapsulation
Encapsulation conceals the functional details of a class from objects that send messages to it.
Polymorphism
The ability of objects belonging to different data types to respond to calls of methods of the same name, each one according to an appropriate type-specific behavior.
What is meant by Object Oriented Programming?
OOP is a method of programming in which programs are organised as cooperative collections of objects. Each object is an instance of a class and each class belong to a hierarchy.
What is a Class?
Class is a template for a set of objects that share a common structure and a common behaviour.
What is an Object?
Object is an instance of a class. It has state,behaviour and identity. It is also called as an instance of a class.
What is an Instance?
An instance has state, behaviour and identity. The structure and behaviour of similar classes are defined in their common class. An instance is also called as an object.
What are the core OOP’s concepts?
Abstraction, Encapsulation,Inheritance and Polymorphism are the core OOP’s concepts.
What is meant by abstraction?
Abstraction defines the essential characteristics of an object that distinguish it from all other kinds of objects. Abstraction provides crisply-defined conceptual boundaries relative to the perspective of the viewer. Its the process of focussing on the essential characteristics of an object. Abstraction is one of the fundamental elements of the object model.
What is meant by Encapsulation?
Encapsulation is the process of compartmentalising the elements of an abtraction that defines the structure and behaviour. Encapsulation helps to separate the contractual interface of an abstraction and implementation.
What is meant by Inheritance?
Inheritance is a relationship among classes, wherein one class shares the structure or behaviour defined in another class. This is called Single Inheritance. If a class shares the structure or behaviour from multiple classes, then it is called Multiple Inheritance. Inheritance defines “is-a” hierarchy among classes in which one subclass inherits from one or more generalised superclasses.
What is meant by Polymorphism?
Polymorphism literally means taking more than one form. Polymorphism is a characteristic of being able to assign a different behavior or value in a subclass, to something that was declared in a parent class.
What is an Abstract Class?
Abstract class is a class that has no instances. An abstract class is written with the expectation that its concrete subclasses will add to its structure and behaviour, typically by implementing its abstract operations.
What is an Interface?
Interface is an outside view of a class or object which emphaizes its abstraction while hiding its structure and secrets of its behaviour.
What is a base class?
Base class is the most generalised class in a class structure. Most applications have such root classes. In Java, Object is the base class for all classes.
What is a subclass?
Subclass is a class that inherits from one or more classes
What is a superclass?
superclass is a class from which another class inherits.
What is a constructor?
Constructor is an operation that creates an object and/or initializes its state.
What is a destructor?
Destructor is an operation that frees the state of an object and/or destroys the object itself. In Java, there is no concept of destructors. Its taken care by the JVM.
What is meant by Binding?
Binding denotes association of a name with a class.
What is meant by static binding?
Static binding is a binding in which the class association is made during compile time. This is also called as Early binding.
What is meant by Dynamic binding?
Dynamic binding is a binding in which the class association is not made until the object is created at execution time. It is also called as Late binding.
Define Modularity?
Modularity is the property of a system that has been decomposed into a set of cohesive and loosely coupled modules.
What is meant by Persistence?
Persistence is the property of an object by which its existence transcends space and time.
What is colloboration?
Colloboration is a process whereby several objects cooperate to provide some higher level behaviour.
In Java, How to make an object completely encapsulated?
All the instance variables should be declared as private and public getter and setter methods should be provided for accessing the instance variables.
How is polymorphism acheived in java?
Inheritance, Overloading and Overriding are used to acheive Polymorphism in java.
What is an abstraction and why is it important?
Representing essential features by hiding the background process / details. In other words, it is specifying what to do but not how to do.

Abstraction is important at the conceptual level of an application. It helps in understanding clearly, what the process and the flow of an application. The abstraction allows the complete flow and development of an application into a structured action. The conceptual level of project execution is derived from abstraction which the gateway for the entire application development.
Polymorphism
Polymorphism means the ability to take more than one form. An operation may exhibit different behaviors in different instances. The behavior depends on the data types used in the operation.