is public static void main() work in java?is "String arg[]"
needed as argument?

Answers were Sorted based on User's Feedback



is public static void main() work in java?is "String arg[]" needed as argument?..

Answer / kapil

public static void main() will not work in java.
You have to give argument String arg[]

Is This Answer Correct ?    15 Yes 0 No

is public static void main() work in java?is "String arg[]" needed as argument?..

Answer / ghanshyam dobariya

Without specifying "String[] args" it will be compiled...
but will create run time exceptoin...

Is This Answer Correct ?    7 Yes 2 No

is public static void main() work in java?is "String arg[]" needed as argument?..

Answer / sravani

each and every main method of java program must take array of objects of string class.Hence writing String args[] as main method arguement is must.

Is This Answer Correct ?    3 Yes 0 No

is public static void main() work in java?is "String arg[]" needed as argument?..

Answer / abhishek goray

as overloading is also done implicitly in java...without
writing the whole signature of the function main ..java will
compile it as a user-defined function rather than the main
function it is looking for.

so we have to write the whole signature
public static void main(String[] args)

Is This Answer Correct ?    2 Yes 0 No

Post New Answer

More J2SE Code Interview Questions

How Can I Trace A Java Program . Please Give Me Step by Step Process

1 Answers   IBM,


write a program that inputs two real numbers then exchanges their values.

7 Answers   Infosys,


Design a program using one-dimensional array that determines the highest value among the eight input values from a user. Display the difference of each value from the highest to the lowest.

1 Answers   RoboSoft,


does anyone know the code to display a triangle using a applet?

1 Answers  


write a program in java to solve a system of n-variabled simultaneous equations using the guassian elimination method. let the maximum possible value of n be 100. run the program using hypothetical values for a set of 10- variables simultaneous equations. print out the program, the input equation and the results generated by the program.

0 Answers   TCS,






Program to print map of India in java.

2 Answers  


Bubble Sort. java thereafter the user will be asked to inpout the size of the list,sort the list in ascending order and display the sorted list in a horizontal manner???

0 Answers  


How can we get the details for printing the employee details at run time using JDBC connectivity? can u provide the coding for that? Its urgent?

2 Answers  


A game that has five levels of play has the score for each level stored in an array. You are to write a program that goes through that array and finds: a) the minimum score, and the level at which it occurred b) the maximum score, and the level at which it occurred c)the average score for all five levels The score data you must use for this program are as follows: Game Level Score 1 450 2 316 3 148 Stack implementations is mandatory.

0 Answers  


how to create a (*)pyramid using java codes???

5 Answers   Infosys,


write a program that will ask the user to enter a number n and display the product of all numbers from 1 to n.

1 Answers  


how to store and retrive a set of values without using an array

8 Answers   FCS, HCL, Maximus,


Categories