Computer Science, asked by Anonymous, 4 hours ago

Explain What is Java Programming ?

Explain some of the basic concepts of Java Programming , practice program etc..

Note : Don't copy from any site, Don't spam.​

Answers

Answered by CoderRishav
1

Answer:

Java is a Programming Language developed by James A Gosling.

sample program -

class Sample {

public static void main(String[] tags) {

System.out.print("Hello, World");

}

}

Answered by rajumohan1998
0

Answer:

Java Programming is a popular language ,and it is embedded with OOP Principles. OOP  is nothing but object oriented programming .The main thing to know about OOP is object ,we perform many operations through this object.

A java program basically look like this

class class-name

{

class members;

class methods()

main method()

}

E.g

To print Hello message

class sample

{

public static void main(String args[])

{

System.out.println("Hello Rajesh");

}

}

Explanation:

This program prints the hello message.

Similar questions