Software Engineer Java Developer Interview Questions

4,198 software engineer java developer interview questions shared by candidates

all the technical aspects, architecture, design, SOLID standards, design patterns, handling of tooling and security exceptions, Sonar way standards, OOP, code review, it's not a classic technical maintenance, that's really all
avatar

Java Software Developer

Interviewed at Anonymous Content

3.4
Dec 8, 2022

all the technical aspects, architecture, design, SOLID standards, design patterns, handling of tooling and security exceptions, Sonar way standards, OOP, code review, it's not a classic technical maintenance, that's really all

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 2951 - 2960 interview questions

Glassdoor has 4,198 interview questions and reports from Software engineer java developer interviews. Prepare for your interview. Get hired. Love your job.