Why all programming languages have main as a execution
starting point?

Answers were Sorted based on User's Feedback



Why all programming languages have main as a execution starting point?..

Answer / uday kiran divvela

All the languages follows a centralized design patter, that
is they must start program execution from main() method
onwards.
But in java programing language without main() method also
we can execute the programs.

Is This Answer Correct ?    6 Yes 2 No

Why all programming languages have main as a execution starting point?..

Answer / babu

In all programming languages compilation starts from one
specific point and they need it one specific point for
excecution so we have main().

In java we can excute the program without main but we need
a main method for compilation.

Is This Answer Correct ?    1 Yes 1 No

Why all programming languages have main as a execution starting point?..

Answer / srikanth reddy

from main()method where we are creating objects and load the
class and calling methods of that class

Is This Answer Correct ?    0 Yes 0 No

Why all programming languages have main as a execution starting point?..

Answer / balamurugan

in java jvm only understand the class which contain main
method so, jvm understand that main method should be the
starting point in java

in other cases compiler need starting point in every
program to execute a program sync to execute so we need
main method for every program

Is This Answer Correct ?    0 Yes 2 No

Post New Answer

More Core Java Interview Questions

Are the imports checked for validity at compile time? Will the code containing an import such as java.lang.abcd compile?

0 Answers  


What is difference between call by value and call by reference?

0 Answers  


Hi i am creating desktop application in that i want calling to mobile number. i have java telephone api (JTAPI) but i dont understand how it configure & use plese help me

0 Answers  


List the interfaces which extends collection interface?

0 Answers  


Can an interface extands a class?

5 Answers  






What is local declaration?

0 Answers  


what is difference between set and list in collection?

3 Answers   Satyam,


What is the default size of set in java?

0 Answers  


What is the purpose of a transient variable?

0 Answers  


What is Session and cookies?Explain in detail with an example?

4 Answers   Accenture, CTS,


What is the difference between applet and application?

0 Answers  


what is the difference between multitasking and multithreading?

21 Answers   TCS,


Categories