Computer Science, asked by srivastavranu416, 1 month ago

Explain compile and run of a java program briefly.​

Answers

Answered by mmanoharanmman91
0

Answer:

hi how are you

Explanation:

my number 9345769726

Answered by MarinetteRT
3

Answer:

Compiler: A software that accepts the whole program written in high level language and converts it into its equivalent program in machine level language is known as compiler

public class FirstJavaProgram

{

public static void main(String[] args)

{

System.out.println("This is my first program in java");

} //End of main

} //End of FirstJavaProgram Class

Output: This is my first program in java

Similar questions