You are on page 1of 2

WHAT IS PEOGARAMMING.?

:
a language which is used to insturct by the computer .

PROGARAMMING LANGUAGE:- a language or medium which is used to insturuct the


computer to perform some perticuler task is
known as prgramming language.
ex:- java ,python etc

TYPES OF LANGUAGE :-
1) high level language
2) low level language

1) HIGH LEVEL LANGUAGE:- A language that easy ,readable, understandable and


instructable to the human is known as high
level language .

2) LOW LEVEL LANGUAGE:- A language that easily undersatndable by the processor is


known as low level language or
machine language.

JDK (Java Devolpment kit ) :-


jdk is a java devolpment kit or tools which consist of compiler and JRE (java
runtime envorment) .

JRE (java runtime envorment) :-


jre is a envorment which is consist of jvm and build in class which is
requriers for excibution of java program.

WHAT IS JVM ?
jvm helps to convert bytecode into low-level language with the help of
interpeter .

* PLATFORM DEPENDENT :-creating one application using 1 platform run with the same
platform is known as platform dependent.

* PLATFORM INDEPENDENT:-creating one application using 1 platform run with any


platform is known as platform independent .

JAVA IS A PLATFORM INDEPENDENT BUT JDK DEPENDENT .


WE CAN DOWNLOAD ONLY JRE TO RUN THE CLASS FILE.
WE NEED JDK TO COMPILE AND RUN THE PROGRAM.

class program1
{
public Static void main(string[]args)
{
system.out.println("GOOD MORNING")
}
}

* PRINTLN STATEMENT :- Println statment having a two works


1) print the data
2) curser will be move to next line

* TOKEN :- token its smallest unit of programing which is used to compose the
instruction .
# KEYWOREDS
# IDENTIFIRE
# LITERALAS
1) KEYWORDS :- KEYWORD ARE PRE-DEFINED WORD WHICH MY COMPILER CAN UNDERSTAND FOR
SPACIFIC TASK.

* :- literls is noting but information about the object .

KEYWORDS IS WRITE IN LOWER CASE [ CAPITALE LETTER ]


IN JAVA WE HAVE 50+ KEYWORDS

2) IDENTIFIRE :- THE NAME GIVEN TO THE COMPONANTS .


in identifire we have four rules

1) WE SHOULD NOT START WITH THE NUMBERS


2) WE SHOULD NOT USE SPACE BETWEEN THE IDENTIFIRE
3) WE SHOULD NOT USE KEYWORDS AS IDENTIFIRE
4) WE SHOULD NOT USE ANY SPECAIL SYMBOLS AS IDENTIFIRE ACCEPTS $ AND _

* VARIABLE :- When a container which is use to store a data in how much of data
what kind of data what type of data
what kind of data how much data store in its depends on data types
*DATA TYPES:-it is use to create a spacific type of variables.
in java we have 2 type of datatypes
1) primative datatypes
2) non-primative datatypes

1):- PRIMATIVE DATATYPES:- primative variabales which is use to store primative


data.
2):- NON PRIMATIVE DATATYPES:- the data types which which is used to store to the
referance is known
non primative datatypes
* WHAT IS DYNAMIC READ ?
:> The Process of reading a data in a excicution time of the program is known as
dynamic read .
> WHAT IS OPRATOR ?
Operator are predefined symbols which is used to perform some spacific task on
the given data ,
the data given to the input to the operator is known as oprand .
* Types of oprator in basic of oprand :-
1) Unary oprator
2) Binory oprator
3) Ternory operator

* Unory oprator:- the oprator which can accepts only one oprand is known as
Unory oprator
* Binory oprator:- the oprator which can accepts two oprand is known as Binory
oprator
* Ternory oprator:- the oprator which accepts three oprand is known as ternory
oprator

You might also like