---
title: "In Java, what is run time polymorphism"  
description: "In Java, what is run time polymorphism"  
author: "Anonymous User"  
published: 2015-07-01  
updated: 2020-09-19  
canonical: https://www.mindstick.com/interview/2668/in-java-what-is-run-time-polymorphism  
category: "java"  
tags: ["java"]  
reading_time: 1 minute  

---

# In Java, what is run time polymorphism

**Polymorphism** can be explained as an object's ability to adapt to the program's context and take multiple forms. The method overriding is an example of run time polymorphism. You can have a method in a subclass, which overrides the method in its super classes with the same name and signature. At run time, Java virtual machine determines the appropriate method to be called.

## Answers

### Answer by Anonymous User

**Polymorphism** can be explained as an object's ability to adapt to the program's context and take multiple forms. The method overriding is an example of run time polymorphism. You can have a method in a subclass, which overrides the method in its super classes with the same name and signature. At run time, Java virtual machine determines the appropriate method to be called.


---

Original Source: https://www.mindstick.com/interview/2668/in-java-what-is-run-time-polymorphism

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
