Programming Placement Question
11/11/2018
Program EX*****ON
12/09/2018
Like & Share Plz!
'18
Artwork No. : 23
Name- Manasa Manu
College- Sridevi Women's engineering college, Gandipet, Hyderabad.
Caption- "Mother's love is peace. It need not be acquired, It need not be deserved".
abstract class X
{
int i = 11;
int methodOneOfX()
{
return i *= i /= i;
}
abstract void methodTwoOfX(int i);
}
class Y extends X
{
void methodTwoOfX(int i)
{
System.out.println(i);
}
}
public class Test
{
public static void main(String[] args)
{
new Y().methodTwoOfX(new Y().methodOneOfX());
}
}
Click here to claim your Sponsored Listing.