why in java first invoke public static void main(String args[])
method????Why not public static void method1(String args[])??
Answer Posted / amit
Becuase the main(String args[]) need not to call by user it
will be call automatically And method1(String args[]) need to
call user.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is abstraction oop?
What are the 4 pillars of oop?
What is abstraction example?
What are the two different types of polymorphism?
What is difference between pop and oop?
What is polymorphism programming?
What are the 5 oop principles?
Write a c++ program to display pass and fail for three student using static member function
What is object-oriented programming? Webopedia definition
What is basic concept of oop?
What is abstraction in oops with example?
Which language is not a true object oriented programming language?
Are polymorphisms mutations?
Why do we need oop?
Why can't we have instance(stack) of a class as a member of the same class like eg.Class A{A obj;} as we can have self refential pointer