0% found this document useful (0 votes)
55 views1 page

Source Code:: Class Hello (Public Static Void Main (String Args) (System - Out.println ("Hello, India!") ) )

This Java code defines a Hello class with a main method that prints the text "Hello, India!" to the console when run. It contains a single class with a main method that uses System.out.println to display a greeting message.

Uploaded by

umair riaz
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
55 views1 page

Source Code:: Class Hello (Public Static Void Main (String Args) (System - Out.println ("Hello, India!") ) )

This Java code defines a Hello class with a main method that prints the text "Hello, India!" to the console when run. It contains a single class with a main method that uses System.out.println to display a greeting message.

Uploaded by

umair riaz
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

SOURCE CODE:

class Hello
{
public static void main(String [] args)
{
System.out.println("Hello,India!");
}
}

OUTPUT:

You might also like