Skip to main content

What is Java



   What Is JAVA?   

Java is a General Purpose, platform independent, Concurrent, very Fast, and most Important Object Oriented  Programming  Language 

General Purpose :  Implies That It's Not Constrained To One Particular Domain and it can be Used to a wide variety of applications.

Object Oriented: It helps to interact with more real-life scenarios in a more natural way. 

Platform Independent: it helps to run the java code on every platform. java mantra is write once run anywhere that is writing a program once a new must be able to run it.

Concurrent Programming : which is nothing but multithreading Andits enables programs to perform multiple activities at the same time is also very fast and it is almost indistinguishable. 


These are the some core attributes of java which make the java really a solid and very reliable and a complete programing language. it is the most widely used programming languages 












Comments

Popular posts from this blog

C++ Program Finding The Absolute Value

#include<iostream> using namespace std; int main() { cout<<" enter any number"; cin>>num; if(num>0) { cout<<"The absolute value of number is:"<< num; } else { cout<<"The absolute value of number is :"<< -(num); } return 0; } OUTPUT Enter Any number: 2 The absolute value of number is 2