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 happens when a main method is declared as private?

Answer Posted / kundan

when u will declare main method is private
it will successfully compile and Run
and result will publish,

class A
{
int x=7;
void show(){
System.out.println(x);
}
}
class Test
{
private static void main(String args[])
{
A a = new A();
a.show();
}
}

out put:-
Main method not public

Is This Answer Correct ?    7 Yes 4 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Is java a security risk?

972


what is thread? : Java thread

948


What is finally and finalize in java?

1035


What is the difference between instanceof and isinstance?

1002


Can I uninstall java?

992


Can we use catch statement for checked exceptions?

928


What is the difference between iterator and enumeration ?

977


What is difference between static variable and global variable?

1012


What is the simpletimezone class in java programming?

1093


Can extern variables be initialized?

910


What is array class in java?

1030


How do you find the maximum number from an array without comparing and sorting?

1085


What is difference between class and object in java?

1032


What are the characteristics of java?

995


Can we override private constructor in java?

926