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

what are the other loops except for for,while,do while and until?

0 Answers   Aricent,


1+(2*3)+(4*5*6)+(7*8*9*10)+... specified input value

1 Answers   MAQ,


inner join,outerjoin,trigger,stored procedure explain with code snippets?

1 Answers   IBM,


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,


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

5 Answers   Infosys,






write a program in java to find the moving average of all prime numbers between 2 and 100.

0 Answers  


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

4 Answers   Tech Mahindra,


Program to print map of India in java.

2 Answers  


Is it possible to define marker interface in java.If possible then how to define user defined marker interface?

1 Answers   Tech Mahindra,


Write a program to convert a decimal number to binary form?

1 Answers   Oracle,


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  


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,


Categories