Question:Consider the following code:public static void main(String bicycle[]) { System.out.println(bicycle[0]); } What would be the result if "java TwoTyre one two" is entered in the command line?
public static void main(String bicycle[]) { System.out.println(bicycle[0]); }
A one B two C TwoTyre D None
+ AnswerA
+ Report