Concepts of core java

AkshitaMangrulkar 49 views 7 slides May 24, 2021
Slide 1
Slide 1 of 7
Slide 1
1
Slide 2
2
Slide 3
3
Slide 4
4
Slide 5
5
Slide 6
6
Slide 7
7

About This Presentation

Brief overview on java


Slide Content

Concepts of CORE JAVA By AKSHITA MANGRULKAR

W h a t i s Ja v a ?

Features of Java

Java Variables A variable is a container which holds the value while the  Java program   is executed. Data Types in Java Data types specify the different sizes and values that can be stored in the variable. There are two types of data types in Java: Primitive data types: The primitive data types include Boolean , char, byte, short, int, long, float and double. Non-primitive data types: The non-primitive data types include  Classes ,  Interfaces , and  Arrays . Eg. Int age=20; Value Variable_name Data Type

Operators in Java Operator  in  Java  is a symbol which is used to perform operations. For example: +, -, *, / etc.

Java Keywords Java keywords are also known as reserved words. Keywords are particular words which acts as a key to a code. These are predefined words by Java so it cannot be used as a variable or object name.
Tags