Answered step by step
Verified Expert Solution
Question
1 Approved Answer
25 - What will be the output of the following code ? public class Student { public void play() { System.out.print(play); study(); } public void
25 - What will be the output of the following code ? public class Student { public void play() { System.out.print("play"); study(); } public void study () { System.out.print("study "); } } public class UskudarStudent extends Student { public void play() { super.play(); System.out.print("websurf "); } } public class Test { public static void main(String[] args) { UskudarStudent k new UskudarStudent (); k.play(); } } = a) Websurf b) play study websurf c) play study d) play websurf
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started