Question: programing (java) A1. Find the output of the following code in order. public class Faculty extends Employee ! public static void main(String[] args) { new
A1. Find the output of the following code in order. public class Faculty extends Employee ! public static void main(String[] args) { new Faculty (); System.out.println("Good Luck"); } e public Faculty () { System.out.println(" Faculty's no-arg constructor is invoked"); } 1 class Employee extends Person { public Employee () { System.out.println(" Employee's no-arg constructor is invoked') : 1 } class Person public Person() { this (Invoke person's overloaded constructor"): System.out.println(" Person's and constructors invoked): 3 public Person (Strings) { System.out.println(s)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
