Skip to main content

Posts

Showing posts with the label first java program

first java program

Question 1 : Write a program in java for print a greeting message . Answer:  This program demonstrate how to write a simple java program print a greeting message on the output console. 1: public class FirstProgram 2: { 3: // Create the main method here 4: public static void main(String args[]) 5: { 6: System.out.println("this is my first program in java"); 7: } 8: } Ads By Google