Computer Science, asked by anutwins2626, 9 months ago


Test class has been saved with file name “Abc.java”. Which of the given options is the correct command to successfully run the
following code?
class Test{
public static void main(String args[]){
System.out.println("Hello Java")
}
}
Select
a. javac Abc , java Test
b. javac Test , java Abc
c. javac Test , java Test
d. javac Abc , java Abc

Answers

Answered by anuham97
1

Answer:

option 1

javac Abc , java Test

Similar questions