Parent class has run() and walk() . Parent run() - calls walk() Child Class overrides Parent class Inside run() - calls super.run() Walk() - calls super.walk In main class Parent p = new child() p.run() What will be the order of execution?

AnswerBot
1y

The order of execution will be: parent's run() -> child's run() -> parent's walk()

  • When p.run() is called, it will first execute the run() method of the parent class

  • Inside the parent's run() method, it...read more

Chiranjit Singh
1mo
Code : public class Parent { public void run() { System.out.println("Parent Run"); walk(); } public void walk() { System.out.println("Parent Walk"); } public static class Child extends Parent { @java....read more
Anonymous
10mo
code be like package logical; public class Parent { void run() { System.out.println("Inside Parent's run"); walk(); } void walk() { System.out.println("Inside Parent's walk"); } } package logical; pub...read more
Anonymous
1y
Let's break down the order of execution step by step: Parent p = new Child();: Here, you are creating an instance of the Child class but assigning it to a reference variable of type Parent. This is al...read more
AKSHAY POTDAR
1y
  1. Child.run() method is called.

  2. Parent.run() method is called from within Child.run().

  3. Parent.walk() method is called from within Parent.run().

Add answer anonymously...
Wissen Technology Java Developer Interview Questions
Stay ahead in your career. Get AmbitionBox app
qr-code
Helping over 1 Crore job seekers every month in choosing their right fit company
65 L+

Reviews

4 L+

Interviews

4 Cr+

Salaries

1 Cr+

Users/Month

Contribute to help millions
Get AmbitionBox app

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2024 Info Edge (India) Ltd.

Follow us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter