Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


what is the use of a super keyword?

Answers were Sorted based on User's Feedback



what is the use of a super keyword?..

Answer / sobhanadri.15

super keyword is used for accessing the variables in the
construtor of the subclass

Is This Answer Correct ?    5 Yes 1 No

what is the use of a super keyword?..

Answer / swamireddy

the super keyword is used for accessing a base class
constructor values of the sub class.actually constructor
values are not inherited to the derived class.the super
keyword using inherited easily
for example:
import java.io.*;
class a
{
int x,y;
a(int i,int j)
{
x=i;
y=j;
System.out.ptintln(" "+x+" "+y);
}
}
class b extends a
{
int g;
b(int i,int j)
{
super(i,j);
g=i+i*(j*j);
System.out.println(g);
}
}
class mab
{
public static void main(String args[])
{
b ob=new b(24,2);
}
}
output:
24 2
48 4

Is This Answer Correct ?    7 Yes 4 No

what is the use of a super keyword?..

Answer / prem chawla

super keyword is refer to the parent class object it means
it can acc0ess all properties of the parent object

Is This Answer Correct ?    2 Yes 1 No

what is the use of a super keyword?..

Answer / upasana das

example of inheritance using super keyword
class a
{
int x,y;
a(int i,int j)
{
x=i;
y=j;
System.out.println(" "+x+" "+y);
}
}
class b extends a
{
int g;
b(int i,int j)
{
super(i,j);
g=i+i*(j*j);
System.out.println(g);
}
}
class mab
{
public static void main(String args[])
{
b ob=new b(24,2);
}
}

output: 24 2
120

Is This Answer Correct ?    2 Yes 2 No

Post New Answer

More Java Related AllOther Interview Questions

How do I download and install eclipse on windows 10?

0 Answers  


What is lambda used for?

0 Answers  


What is the means of java?

0 Answers  


What about 'hostile applets'? : java security

0 Answers  


there are 67 seats in train . there are only 5 seats in a row and in last row there are only 2 seats. One person can reseve only 5 seat at a time. If person reserving seat , the care is atken that he may get all in row. if seats are not available in row then the arrangement is so that person group get nearby seats. the following class is given public class seat { char name; int seat; boolean isSeatempty } 1.Draw require class digram and object diagram. 2.Write function seatallot(int noofperson) to allocate seat with seat nuber printed for the each name.

0 Answers   Sapient,


What are tlds in java?

0 Answers  


In system.out.println(), what is system, out and println?

0 Answers  


Can a method be static and synchronized?

0 Answers  


What kind of thread is the garbage collector thread?

0 Answers  


What is default constructor in java?

0 Answers  


Do I need to install jre if I have jdk?

0 Answers  


What is the difference between a jdk and a jvm?

0 Answers  


Categories