Skip to main content

Posts

Showing posts with the label Java Method Overriding 2 (Super Keyword) Hackerrank Solution

Java Method Overriding 2 (Super Keyword) Hackerrank Solution

 Java Method Overriding 2 (Super Keyword) Hackerrank Solution For Explanation Watch Video: import  java.util.*; import  java.io.*; class  BiCycle{     String define_me(){          return   "a vehicle with pedals." ;     } } class  MotorCycle  extends  BiCycle{     String define_me(){          return   "a cycle with an engine." ;     }          MotorCycle(){         System.out.println( "Hello I am a motorcycle, I am " + define_me());          String temp=super.define_me(); //Fix this line         System.out.println( "My ancestor is a cycle who is " + temp );     }      } class  Solution{      public   static   void  main(String []args){         MotorCycle M= new  MotorCycle();     } }