Question: The following classes are considered to be in different files, what will happen when you attempt to compile and run the main? public class Main
The following classes are considered to be in different files, what will happen when you attempt to compile and run the main?
public class Main {
public static void main(String[] args){
Hebron hl;
hl = new PPU();
hl.greeting();
}
}
class Hebron(
public Hebron (){}
}
class PPU extends Hebron (
public PPU(){
public void greeting(){
System.out.println("Welcome to PPU"); }
Select one:
Oa. Output: Welcome to PPU
Ob. Runtime error
Oc. Compilation error
Od. Output: Welcome to Hebron
//
}
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
The code you provided has several syntax errors such as incorrect parentheses and ... View full answer
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
