SlideShare ist ein Scribd-Unternehmen logo
1 von 15
Project Submitted
on

Data types
By
Veena Bhagyawani

106/10 civil lines, Ajmer 305001
Website: www.dezyneecole.com
ARRAY
“Array is a group of continues or related
data item that share a common name.”

For Example-

College[10];

Array
Name

Index Number
Array

One Dimensional
Array

Two
Dimensional
Array

Multi
Dimensional
Array
One Dimensional Array:int number[] = new int[5];
10,20,30,40,50;

For Example.-

Storage Location
Number[0]
Number[1]
Number[2]
Number[3]
Number[4]

Assign Value
Number[0]=10;
Number[1]=20;
Number[2]=30;
Number[3]=40;
Number[4]=50;

Store Value
Number[0]

10

Number[1] 20
Number[2] 30
Number[3]
Number[4]

40
50
Creating An Array
1.Declearing The Array.
2.Creating Array.
3.Putting Values Into The
Memory Location.
Declaration The Array

Type arrayname[];
int number[5];

Type []arrayname;
int [5] number;
Creation Of Array
Arrayname=new type[size];
For Example:Number=new int[5];
Initialization Of An Array
Arrayname[subscript]=value;
For example:
Number[0]=35;
Number[1]=20;
Number[2]=30;
Two Dimensional Array
int myArray[][];
myarray =new int[3][2]
Item1

Item2

Item3

100

200

300

400

500

600

Column0

column1

column2

[0][0]

[0][1]

[0][2]

100

200

[1][0]

[1][1]

SP1
SP2

Rows0

Rows1

400

500

300

[1][1]
600
“DATA TYPE”
Data type specific the size in
type of value that can be store.
Data Type
in Java
Primitive

Non-Primitive

Array
Numeric

Non-Numeric

Character
Integer

Floating
Point

Interface
Classes

Boolean
Integer Type

Integer

Byte
{-128 to 127}

Long

Short
{-32,768
to 32,767}

Int
{2,147,483,648
to
2,147,483,647
}

{9,223,372,036,
854,775,808 to
9,223,372,036,
854,775,807}
Floating Point Type
Floating point

Float
{3.4e-038
to
1.7e+0.38}

Double
{3.4e-038
to
1.7e+308}
Character Type
Java provide a character data type
called char.

Boolean Type
TRUE
FALSE
Thank You
Presented By
Veena Bhagyawani
B.C.A 2nd Year

Weitere ähnliche Inhalte

Was ist angesagt?

Was ist angesagt? (20)

Array
ArrayArray
Array
 
Array in c
Array in cArray in c
Array in c
 
Arrays In C Language
Arrays In C LanguageArrays In C Language
Arrays In C Language
 
Arrays In C
Arrays In CArrays In C
Arrays In C
 
Array in-c
Array in-cArray in-c
Array in-c
 
C Programming : Arrays
C Programming : ArraysC Programming : Arrays
C Programming : Arrays
 
An Introduction to Programming in Java: Arrays
An Introduction to Programming in Java: ArraysAn Introduction to Programming in Java: Arrays
An Introduction to Programming in Java: Arrays
 
Array lecture
Array lectureArray lecture
Array lecture
 
Arrays in c
Arrays in cArrays in c
Arrays in c
 
Cso gaddis java_chapter8
Cso gaddis java_chapter8Cso gaddis java_chapter8
Cso gaddis java_chapter8
 
Array in (C) programing
Array in (C) programing Array in (C) programing
Array in (C) programing
 
Array C programming
Array C programmingArray C programming
Array C programming
 
Arrays
ArraysArrays
Arrays
 
Array
ArrayArray
Array
 
Java arrays
Java arraysJava arrays
Java arrays
 
SPL 10 | One Dimensional Array in C
SPL 10 | One Dimensional Array in CSPL 10 | One Dimensional Array in C
SPL 10 | One Dimensional Array in C
 
Array in c#
Array in c#Array in c#
Array in c#
 
Array in c language
Array in c languageArray in c language
Array in c language
 
Lecture17 arrays.ppt
Lecture17 arrays.pptLecture17 arrays.ppt
Lecture17 arrays.ppt
 
Lec 25 - arrays-strings
Lec 25 - arrays-stringsLec 25 - arrays-strings
Lec 25 - arrays-strings
 

Andere mochten auch (20)

Herman Wildenvey
Herman WildenveyHerman Wildenvey
Herman Wildenvey
 
Levenslijn
LevenslijnLevenslijn
Levenslijn
 
AEMPS Clinical Trials Teleportal training course mute
AEMPS Clinical Trials Teleportal training course muteAEMPS Clinical Trials Teleportal training course mute
AEMPS Clinical Trials Teleportal training course mute
 
Plafinancer i economic fast and go
Plafinancer i economic fast and goPlafinancer i economic fast and go
Plafinancer i economic fast and go
 
DBMS
DBMSDBMS
DBMS
 
Java
JavaJava
Java
 
Levenslijn
LevenslijnLevenslijn
Levenslijn
 
E-commerce
E-commerce E-commerce
E-commerce
 
7 grzechów e-commerce
7 grzechów e-commerce7 grzechów e-commerce
7 grzechów e-commerce
 
Proyecto Fin de Carrera
Proyecto Fin de CarreraProyecto Fin de Carrera
Proyecto Fin de Carrera
 
H LAUNCH
H LAUNCHH LAUNCH
H LAUNCH
 
Presentation1
Presentation1Presentation1
Presentation1
 
Pla d'operacions
Pla d'operacionsPla d'operacions
Pla d'operacions
 
4 narzędzia do synchronizacji plików w firmie
4 narzędzia do synchronizacji plików w firmie4 narzędzia do synchronizacji plików w firmie
4 narzędzia do synchronizacji plików w firmie
 
Computer fundamentals
Computer fundamentalsComputer fundamentals
Computer fundamentals
 
Disfruta de Coruña
Disfruta de CoruñaDisfruta de Coruña
Disfruta de Coruña
 
Basic computer concepts
Basic computer conceptsBasic computer concepts
Basic computer concepts
 
Fast goplafinancerieconomic
Fast goplafinancerieconomicFast goplafinancerieconomic
Fast goplafinancerieconomic
 
Parveer mahal
Parveer mahalParveer mahal
Parveer mahal
 
C++ operator
C++ operatorC++ operator
C++ operator
 

Ähnlich wie Array,data type (20)

Md05 arrays
Md05 arraysMd05 arrays
Md05 arrays
 
ARRAYS.ppt
ARRAYS.pptARRAYS.ppt
ARRAYS.ppt
 
ARRAYS.ppt
ARRAYS.pptARRAYS.ppt
ARRAYS.ppt
 
Arrays are used to store multiple values in a single variable, instead of dec...
Arrays are used to store multiple values in a single variable, instead of dec...Arrays are used to store multiple values in a single variable, instead of dec...
Arrays are used to store multiple values in a single variable, instead of dec...
 
ARRAYS.ppt
ARRAYS.pptARRAYS.ppt
ARRAYS.ppt
 
Multi dimensional arrays
Multi dimensional arraysMulti dimensional arrays
Multi dimensional arrays
 
Comp102 lec 8
Comp102   lec 8Comp102   lec 8
Comp102 lec 8
 
Lecture 6
Lecture 6Lecture 6
Lecture 6
 
Array
ArrayArray
Array
 
Array
ArrayArray
Array
 
12. arrays
12. arrays12. arrays
12. arrays
 
Arrays.pptx
Arrays.pptxArrays.pptx
Arrays.pptx
 
Array
ArrayArray
Array
 
ARRAYS.ppt
ARRAYS.pptARRAYS.ppt
ARRAYS.ppt
 
Eo gaddis java_chapter_07_5e
Eo gaddis java_chapter_07_5eEo gaddis java_chapter_07_5e
Eo gaddis java_chapter_07_5e
 
Array
ArrayArray
Array
 
Arrays
ArraysArrays
Arrays
 
Programming in c arrays
Programming in c   arraysProgramming in c   arrays
Programming in c arrays
 
2 arrays
2   arrays2   arrays
2 arrays
 
Arrays in CPP
Arrays in CPPArrays in CPP
Arrays in CPP
 

Kürzlich hochgeladen

Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfagholdier
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104misteraugie
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationnomboosow
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Sapana Sha
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdfQucHHunhnh
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeThiyagu K
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)eniolaolutunde
 
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...fonyou31
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactPECB
 
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...christianmathematics
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfAdmir Softic
 
Class 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdfClass 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdfAyushMahapatra5
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphThiyagu K
 
APM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAPM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAssociation for Project Management
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introductionMaksud Ahmed
 
Disha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdfDisha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdfchloefrazer622
 

Kürzlich hochgeladen (20)

Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdf
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communication
 
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
 
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and Mode
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)
 
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global Impact
 
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptxINDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
 
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdf
 
Class 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdfClass 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdf
 
Advance Mobile Application Development class 07
Advance Mobile Application Development class 07Advance Mobile Application Development class 07
Advance Mobile Application Development class 07
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot Graph
 
APM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAPM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across Sectors
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introduction
 
Disha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdfDisha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdf
 

Array,data type