Java Software Developer Interview Questions

3,069 java software developer interview questions shared by candidates

What will be the output of the following program ? class Parent { public void display () { System.out.println ("Parent"); } } class Child extends Parent { public void display () { System.out.println ("Child"); } } class Main { public static void doDisplay (Parent p) { p.display (); } public static void main (String[]args) { Parent a = new Parent (); Parent b = new Child (); Child c = new Child (); doDisplay (a); doDisplay (b); doDisplay (c); } }

Java Software Developer

Interviewed at Anonymous

3.4
Jul 5, 2024

What will be the output of the following program ? class Parent { public void display () { System.out.println ("Parent"); } } class Child extends Parent { public void display () { System.out.println ("Child"); } } class Main { public static void doDisplay (Parent p) { p.display (); } public static void main (String[]args) { Parent a = new Parent (); Parent b = new Child (); Child c = new Child (); doDisplay (a); doDisplay (b); doDisplay (c); } }

Viewing 2161 - 2170 interview questions

Glassdoor has 3,069 interview questions and reports from Java software developer interviews. Prepare for your interview. Get hired. Love your job.