Sail E0 Webinar
Question
What is the result of compiling and running the following code?class Base{ public Base(){ System.out.print("Base"); }}public class Derived extends Base{ public Derived(){ this("Examveda"); System.out.print("Derived"); } public Derived(String s){ System.out.print(s); } public static void main(String[] args){ new Derived(); }}
Options:
A .  Compilation Error
B .  BaseExamiansDerived
C .  ExamiansDerivedBase
D .  ExamiansDerived
E .  ExamiansBaseDerived
Answer: Option B

Submit Your Solution Below and Earn Points !
Next Question

Submit Solution

Your email address will not be published. Required fields are marked *

More Questions on This Topic :

Question 3. Which is true?....

Latest Videos

Latest Test Papers