Question
public class abc
{
String[] xyz;
public static void main(String argv[])
{
xyz=argv;
}
public void runMethod()
{
System.out.println(argv[1]);
}
}
a.
Compile time error
b.
Output would be “hello”
c.
Output would be “there”
d.
Output would be “hello there”
Posted under Java Programming
Engage with the Community - Add Your Comment
Confused About the Answer? Ask for Details Here.
Know the Explanation? Add it Here.
Q. What would be the output of the following snippet, if compiled and executed with command line “hello there”?
Similar Questions
Discover Related MCQs
Q. How do we pass command line argument in Eclipse?
View solution
Q. Which class allows parsing of command line arguments?
View solution
Q. Which annotation is used to represent command line input and assigned to correct data type?
View solution
Q. What is the use of @syntax?
View solution
Q. What is Recursion in Java?
View solution
Q. Which of these data types is used by operating system to manage the Recursion in Java?
View solution
Q. Which of these packages contains the exception Stack Overflow in Java?
View solution
Q. Which of the following statements are incorrect?
View solution
Q. Which of these access specifier must be used for class so that it can be inherited by another subclass?
View solution
Q. Which is true about an anonymous inner class?
View solution
Q. Which is true about a method-local inner class?
View solution
Q. Which statement is true about a static nested class?
View solution
Q. Which constructs an anonymous inner class instance?
View solution
Q. What allows the programmer to destroy an object x?
View solution
Q. Which statement is true?
View solution
Q. Which statement is true?
View solution
Q. Which statement is true?
View solution
Q. Which statement is true?
View solution
Q. A class which is declared with the ________ keyword is known as an abstract class in Java.
View solution
Q. Abstract class can have constructors and static methods?
View solution
Suggested Topics
Are you eager to expand your knowledge beyond Java Programming? We've curated a selection of related categories that you might find intriguing.
Click on the categories below to discover a wealth of MCQs and enrich your understanding of Computer Science. Happy exploring!