when everything can be done by static block then why do we
use main method?.

Answers were Sorted based on User's Feedback



when everything can be done by static block then why do we use main method?...

Answer / hemanth kumar kalavagunta

Yes ... when everything can be done by static block then why
do we use main method. this is because, main method is the
only step from which compiler can enter the program to start
and this is the only way through which the data from outside
jvm can be entered into the jvm in the form of command line
arguments. using the static blocks there is no way to get
the data from the outside of the program and it is confined
to the program and program is it's world. main's world is
related both with the inside of jvm and outside of jvm.

Is This Answer Correct ?    12 Yes 0 No

when everything can be done by static block then why do we use main method?...

Answer / guest

the main block is declared as static sothat the java
interpreter could use it without instantiating it,but if we
declare everything as static there is no meaning of a class
and specifying instance variables and methods belong to
that specific class only.

Is This Answer Correct ?    2 Yes 1 No

Post New Answer

More Core Java Interview Questions

What methodology can be employed to locate substrings inside a string?

0 Answers  


What is a line break?

0 Answers  


What is the difference between synchronized and synchronized block?

0 Answers  


what is Abstract DataType?

1 Answers  


What are the Static and Dynamic Variables? Differentiate them.

0 Answers   CGI,






How many bytes is 255 characters?

0 Answers  


What is the use of runnable interface?

0 Answers  


What is javac used for?

0 Answers  


Do I need to import java.lang package any time? Why?

1 Answers  


why use interface? if interface declear a method implement in class. why direct implement method in class

1 Answers   HCL,


How to declare objects of a class ?

0 Answers   Akamai Technologies,


Explain list interface?

0 Answers  


Categories