Below is an example of a simple program written in Java programming language.
Change the text in the below code to make the program print "Hello Java" instead of "Hello C" and click on Submit.
We will learn more about the other aspects of the below code in the later sections.
Q. No :- 10732
public class FirstProgram {
public static void main(String[] args) {
System.out.println("Hello Java");
}
}
0 Comments