Skip to main content

Polymarphism interview questions and answers in java

Polymorphism is one of the Oops concept and mostly used feature in java. The ability of an object to take more than one form is called Polymorphism. The most common use of polymorphism in OOPs occurs when a parent class reference is used to refer to a child class object.

        It is impossible to know that the only possible way to access the object is through a reference variable. A reference variable can be of  only one type. Once declared, the type of the reference variable cannot be changed.

        A reference variable can refer to any object of its declared type or any subtype of its declared type. A reference variable can be declared as a class or interface.

Ex: Let's take a look into the below example

1
2
3
4
5
interface Vehicle{}

class Mileage {}

public class Car extends Mileage implements Vehicle{}

see the implementation of the above example,

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
package com.blogspot.javatbrains;

     interface Vehicle {
          void type();
     }

     class Milage {
          public void totalMilage() {
              System.out.println("Inside the Milage class");
          }
     }

     class Car extends Milage implements Vehicle {

          @Override
          public void type() {
              System.out.println("Vehicle type is car");
         }

         public void totalMilage() {
              System.out.println("Inside the Car class");
         }
    }

    public class Polymarphism {

          public static void main(String[] args) {
              Car car = new Car();
              Milage milage = car;
              Vehicle vehicle = car;
                 car.totalMilage();
                 car.type();
                 milage.totalMilage();
                 vehicle.type();
         }
    }
    
Interview Questions and Answers:

1. What is Polymorphism in java?

A: Polymorphism is a 'Greek' word. Poly means 'many', morphism means 'forms'. The ability to exist in different forms is called 'Polymorphism'. 
    Polymorphism is a characteristic of being able to assign a different meaning or usage to something in different context - specifically, to allow an entity such as a variable, a function, or an object to have more than one form.

2. How does java implements polymorphism?

A: Polymorphism manifest itself in java in the form of multiple methods having the same name.
  • In some cases, multiple methods have the same name, but different formal arguments list.
  • In other case, multiple methods have same name, same return types, and same formal arguments list.
 3. Explain the different forms of polymorphism?

A: There are two types of polymorphism one is Compile-time polymorphism and other one is Runtime polymorphism. Compile-time polymorphism is method overloading. Runtime polymorphism using inheritance and interfaces.

Polymorphism manifest itself three distinct forms in java:
  • Method overloading
  • Method overriding through inheritance
  • Method overriding through java interface
 4. What is Runtime polymorphism or dynamic method dispatch?

A: In java, Runtime polymorphism or dynamic method dispatch is a process in which a call to an overridden method is resolved at runtime rather then at compile-time. In this process an overridden method is called through the reference variable of a subclass. The determination of the method to be called is based on the object being referred to by the reference variable.

5.  Can you explain Static binding with an example?

A: When type of the object is determined at compile-time is called static binding. If any of the private, static or final are there in a class that is static binding.

Here, is the example of the static binding,

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
public class Developer{
           private void doWork(){
                 System.out.println("Developer is doing work");
           }

           public static void main(String[] args){
                 Developer emp = new Developer();
                 emp.doWork();
           }
    }

6. Can you explain dynamic binding with an example?

A:  When type of the object is determined at the time of Runtime, it is known as dynamic binding. 

Here, is the example of dynamic binding,

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
public class Developer{
          void doWork(){
               System.out.println("Developer is doing work");
          }
     }

     public class Tester extends Developer{
          void doWork(){
              System.out.println("Tester is doing work");
          }
       
          public static void main(String[] args){
               Developer dev = new Tester();
               dev.doWork();
          }
    }

        In the above example object type can't be determined the compiler, because the instance of Developer is also an instance of Tester. So, compiler doesn't know that's type, only it's base type.

7. What is mean by overloading and overriding in java?

A: Method overloading and overriding is most widely used concept in java programming. You need to go through this link which already present about overloading and overriding.

8. What is interface in java?

A: You can go through this link which already I posted about the interfaces.

If any of you are facing more than these questions in interview, please share with me through "Contact me here" gadget or drop me an email to "admin@javatbrains.com".

Do you know?

Comments

Popular posts from this blog

Multithreading in java with example

Multithreading  is one of the most important concept in core java. In this article we will learn what is multithreading? , what is the use of it? and What is the use of Synchronization and when to use it?  with detailed examples. At a time, two or more threads are accessing the same object is called as Multithreading  in Java .  First, we will create two threads for two objects. It is also possible to run two or more threads on a single class object. In this case, there is a possibility to get unreliable results. If the two threads are perform same task, then they need same object to be executed each time. For your better understanding, take an example of any reservations like, railway, movie ticket booking,etc. Let us think only one berth is available in a train and two passengers are asking for that berth. The first person has sent a request to allocate that ticket/berth to him. At the same time, the second person also sent a request to allocate that ...

Git installation for AngularJS 2 in Windows 10

Download Git latest version from https://git-scm.com/downloads or you click on the below link to download directly for windows https://git-scm.com/download/win . Once download completes, click on executable file to start installation process and choose Yes to allow the software installation in windows 10. Click on Next button to continue further installation. Browse the isntallation directory and click on Next button to continue. Select the list of components which you want to be installed and click on Next button to proced further installation. Type the shortcut name for Start menu and click on Next button. Select how you want to use the Git and click on Next button. For Windows no need to change anything, let it be the default one. Choose the Use the OpenSSL library and click on Next button. Select how should Git treat line ending in text files and click on Next button. Select which terminal emulator to use with Git and click on Next button. Configure extr...

JNDI configuration for Tomcat 9 with Oracle

In this article, I am going to place the required source code to get data from the table by using the JNDI configuration. Below are the environment details that I have configured currently. Windows - 7 Oracle - 10g Tomcat - 9 JDK - 8 Eclipse Oxygen Ojdbc6 jar required First, we need to create the Dynamic Web Project. If you don't know how to do <Click Here>. I have faced a lot of issues before getting the output like 405, No driver class to load, etc. I am using JSP & Servlets in the current explanation. Before started writing the application logic, we need to do the below configuration in the installed tomcat directory. Place OJDBC6.jar in the Tomcat LIB directory. Add this Resource under <GlobalNamingResources> in Server.xml file which is present under the conf directory in Tomcat. < Resource name = "jdbc/myoracle" global= "jdbc/myoracle" auth = "Container" type= "javax.sql.DataSource" driverClass...