SlideShare a Scribd company logo
JAVA
VARIABLES- TYPES
DATA TYPES
1Prepared by
P.PRATHIBHA
Topics for Today’s Session
About JAVA
JVM
DATA TYPES
Variables
Type Casting
Types of Variables
AboutJava
 Java is a computing platform for application
development and an object-oriented,
 Java is Class-based and Concurrent programming
language 
 It means the code can be executed by multiple
processes at the same time.
 Java can run on all platforms and free to access.
 Java is Simple, Secure, Robust, Complete Object
oriented and Platform Independent High level
Language
 It is Portable and Multi-thread technology gives
High Performance.
 JAVA VIRTUAL MACHINE    (JVM)
vJava compiler produce an intermediatry code known as
byte code for a machine.
vThis machine is called the JVM, it exist only inside the
computer memory.
v The process of compiling a java program into byte code is
referred to as Virtual Machine code.
v The virtual machine code is not machine specific.
v The machine code is generated by the Java Interpreter,
by acting as an intermediary between the virtual
machine and the real machine.
Variables
v Variable is an identifier, which denotes a storage location used to store a
data value
v A variable is a container which holds the value while the Java program is
executed.
v A variable is assigned with a data type.
v Variable is a name of memory location.
v It is a combination of vary + able that means its value can be changed.
v Declaring (Creating) Variables
Syntax: type variable = value;
Where type is one of Java's types (such as int or String), and 
variable is the name of the variable (such as x or name).
The equal sign is used to assign values to the variable.
Example: String name = John;
char ch = 'A';
int number = 100;
Variable Naming conventions
1) Variable names may consists letters, digits, _(underscore) 
 dollar ($).
2)  Variables naming cannot contain white spaces, 
  for example: int num ber = 100; // is invalid
      because the variable name has space in it.
3) Variable name can begin with special characters such as $ 
and _
4)  As per the java coding standards the variable name should 
begin with a lower case letter, 
for example: int num; 
5) Variable names are case sensitive in Java.
6) It should not be a Keyword.
7)  Variable names can be of any length.
LocalVariables
InstanceVariables
StaticVariables
Types / Scope of Variables
v There are three types of variables in java:
1. Local Variable
 A variable defined within a block or method or constructor 
is called local variable.
 The scope of these variables exists only within the block in 
which the variable is declared. i.e. we can access these 
variable only within that block.
 A local variable cannot be defined with static keyword.
 These variable are created when the block in entered or the 
function is called and destroyed after exiting from the block 
or when the call returns from the function.
 Initialization of Local Variable is Mandatory.
2. Instance Variable
v Instance variables are non-static variables.
v A variable declared inside the class but outside the body of 
the method, Constructor or Block. 
v These  variables are created when an  object  of  the  class  is 
created and destroyed when the object is destroyed.
v Each instance(objects) of class has its own copy of instance 
variable.
v It  is  called  instance  variable  because  its  value  is  instance 
specific and is not shared among instances.
v Initialization  of  Instance  Variable  is  not  Mandatory.  Its 
default value is 0.
v Instance Variable can be accessed only by creating objects.
3. Static Variables:
Ø Static variables are also known as Class variables.
Ø Static variables are declared using the static keyword within a
class, outside any method constructor or block.
Ø It cannot be local.
Ø You can create a single copy of static variable and share among
all the instances of the class.
Ø Memory allocation for static variable happens only once when
the class is loaded in the memory.
 Static variables are created at the start of program execution
and destroyed automatically when execution ends.
 Initialization of Static Variable is not Mandatory. Its default
value is zero (0).
 Static variables can be accessed by class name, not by object.
For example, If I create 4 objects of a class and access this static
variable, it would be common for all, the changes made to the
variable using one of the object would reflect when you access
it through other objects.
Example: Using variables
class A
{  
int  d=30; //instance variable  
static int m=100; //static variable  
void method()
{  
int  m=20; //local variable  
}  
} //end of class  
Type Casting
Ø Type casting is nothing but assigning a value of one primitive
data type to another.
Ø When you assign the value of one data type to another, you
should be aware of the compatibility of the data type.
Ø If they are compatible, then Java will perform the conversion
automatically known as Automatic Type Conversion 
Ø And if not, then they need to be casted or converted explicitly.
Syntax:
Ø Four integer types can be cast to any other type except Boolean.
Ø Casting into a smaller type may result in a loss of data.
Ø Similarly, the float  double can be cast to any other type except
Boolean.
Ø There are two types of casting in Java :
type variable1= (type) variable
1. Widening Casting (automatically) – converting a smaller type
to a larger type size, this type of conversion is called Implicit
conversion.
2. Narrowing Casting (manually) – converting a larger type to a
smaller size type, this type of conversion is Explicit conversion.
From To
byte short, char, int, long, float, double
short int, long, float, double
char int, long, float, double
int long, float, double
long float, double
float double
Example:
int i = 258;
 long l = i; //automatic type conversion
float f = l; //automatic type conversion
double d = 345.06;
  long l = (long)d; //explicit type casting
int i = (int)l; //explicit type casting
Data Types in Java
 Data type defines the values that a variable can take
 Data types specify the different sizes and values that can be
stored in the variable.
 In java, data types are classified into 2 categories :
1. Primitive Data type
2. Non-Primitive Data type
Primitive data types
 Primitive data types are the building blocks of data manipulation.
 These are the most basic data types available in Java.
 Java developers included these data types to maintain the portability of
java as the size of these primitive data types do not change from one
operating system to another.
 There are 8 types of primitive data types:
1. boolean data type
2. byte data type
3. char data type
4. short data type
5. int data type
6. long data type
7. float data type
8. double data type
Data Type Size Description Default
byte 1 byte Stores whole numbers from -128 
to 127
0
short 2 bytes Stores whole numbers from -
32,768 to 32,767
0
int 4 bytes Stores whole numbers from -
2,147,483,648 to 2,147,483,647
0
long 8 bytes Stores whole numbers from -
9,223,372,036,854,775,808 to 
9,223,372,036,854,775,807
0L
float 4 bytes Stores fractional numbers. 
Sufficient for storing 6 to 7 
decimal digits
0.0f
double 8 bytes Stores fractional numbers. 
Sufficient for storing 15 decimal 
digits
0.0d
boolean 1 bit Stores true or false values false
char 2 bytes Stores a single character/letter 
or ASCII values
‘u0000’
Non-Primitive Data Types
 Non-Primitive data types refer to objects and hence they
are called reference types.
 Non-primitive types include Strings, Arrays, Classes,
Interface, etc.
Strings
Arrays
Interfaces
Classes
Non-
Primitive
Data types
Strings: String is a sequence of characters.
 used to store consecutive characters or proper 
sentences 
 But in Java, a string is an object that represents a 
sequence of characters. 
 The java.lang.String class is used to create a string 
object. 
Example:  String abc = “Satwika likes music;
Arrays:  Arrays in Java are homogeneous data structures
implemented in Java as objects.
Ø Arrays store one or more values o f a specific data type
and provide indexed access to store the same. A specific
element in an array is accessed by its index.
 It can store any type of data as the size of the array
is also declared by the programmer.
Classes:  Classes are used to create objects
 A class in Java is a blueprint which includes all your 
data.  
 A class contains fields(variables) and methods to 
describe the behavior of an object.
Interface:  An interface is like a dashboard or control 
panel for a class. 
Ø It has buttons/functions for the data types 
defined, but the implementation is somewhere 
else.
Ø  Like a class, an interface can have methods and 
variables, but the methods declared 
in interface are by default abstract (only method 
signature, no body).
Difference between primitive and non-primitive data types
 Primitive  types  are  predefined.  Non-primitive  types  are 
created by the programmer and is not defined by Java (except 
for String).
 Non-primitive types  can  be  used  to  call  methods  to  perform 
certain operations, while primitive types cannot.
 A primitive type has always a value, while non-primitive types 
can be null.
 A  primitive  type  starts  with  a  lowercase  letter,  while  non-
primitive types starts with an uppercase letter.
 The size of a primitive type depends on the data type, while 
non-primitive types have all the same size.
Summary
 In this lesson you learnt about
 About Java?
 Java Virtual Machine
 Variables
 Types / Scope of variables
 Type Casting
 Data Types
Java data types, variables and jvm

More Related Content

What's hot

Java variable types
Java variable typesJava variable types
Java variable types
Soba Arjun
 
Introduction to java
Introduction to javaIntroduction to java
Introduction to java
Ajay Sharma
 
Java operators
Java operatorsJava operators
Java operators
Shehrevar Davierwala
 
Control statements in java
Control statements in javaControl statements in java
Control statements in java
Madishetty Prathibha
 
Control flow statements in java
Control flow statements in javaControl flow statements in java
Control flow statements in java
yugandhar vadlamudi
 
Data types in java
Data types in javaData types in java
Data types in java
HarshitaAshwani
 
Control structures in java
Control structures in javaControl structures in java
Control structures in java
VINOTH R
 
Java basics and java variables
Java basics and java variablesJava basics and java variables
Java basics and java variables
Pushpendra Tyagi
 
Delegates and events in C#
Delegates and events in C#Delegates and events in C#
Delegates and events in C#
Dr.Neeraj Kumar Pandey
 
Core java
Core javaCore java
Core java
Shivaraj R
 
Introduction To C#
Introduction To C#Introduction To C#
Introduction To C#
SAMIR BHOGAYTA
 
Constructor in java
Constructor in javaConstructor in java
Constructor in java
SIVASHANKARIRAJAN
 
Java program structure
Java program structureJava program structure
Java program structure
shalinikarunakaran1
 
Java Datatypes
Java DatatypesJava Datatypes
Java Datatypes
Mayank Aggarwal
 
Java tutorial PPT
Java tutorial PPTJava tutorial PPT
Java tutorial PPT
Intelligo Technologies
 
Java abstract class & abstract methods
Java abstract class & abstract methodsJava abstract class & abstract methods
Java abstract class & abstract methods
Shubham Dwivedi
 
Java Programming for Designers
Java Programming for DesignersJava Programming for Designers
Java Programming for Designers
R. Sosa
 
Operators in java presentation
Operators in java presentationOperators in java presentation
Operators in java presentation
kunal kishore
 
Program control statements in c#
Program control statements in c#Program control statements in c#
Program control statements in c#
Dr.Neeraj Kumar Pandey
 

What's hot (20)

Java variable types
Java variable typesJava variable types
Java variable types
 
Introduction to java
Introduction to javaIntroduction to java
Introduction to java
 
Java operators
Java operatorsJava operators
Java operators
 
Control statements in java
Control statements in javaControl statements in java
Control statements in java
 
Control flow statements in java
Control flow statements in javaControl flow statements in java
Control flow statements in java
 
Data types in java
Data types in javaData types in java
Data types in java
 
Control structures in java
Control structures in javaControl structures in java
Control structures in java
 
Java basics and java variables
Java basics and java variablesJava basics and java variables
Java basics and java variables
 
Delegates and events in C#
Delegates and events in C#Delegates and events in C#
Delegates and events in C#
 
Core java
Core javaCore java
Core java
 
Introduction To C#
Introduction To C#Introduction To C#
Introduction To C#
 
7.data types in c#
7.data types in c#7.data types in c#
7.data types in c#
 
Constructor in java
Constructor in javaConstructor in java
Constructor in java
 
Java program structure
Java program structureJava program structure
Java program structure
 
Java Datatypes
Java DatatypesJava Datatypes
Java Datatypes
 
Java tutorial PPT
Java tutorial PPTJava tutorial PPT
Java tutorial PPT
 
Java abstract class & abstract methods
Java abstract class & abstract methodsJava abstract class & abstract methods
Java abstract class & abstract methods
 
Java Programming for Designers
Java Programming for DesignersJava Programming for Designers
Java Programming for Designers
 
Operators in java presentation
Operators in java presentationOperators in java presentation
Operators in java presentation
 
Program control statements in c#
Program control statements in c#Program control statements in c#
Program control statements in c#
 

Similar to Java data types, variables and jvm

Full CSE 310 Unit 1 PPT.pptx for java language
Full CSE 310 Unit 1 PPT.pptx for java languageFull CSE 310 Unit 1 PPT.pptx for java language
Full CSE 310 Unit 1 PPT.pptx for java language
ssuser2963071
 
Object-Oriented Programming with Java UNIT 1
Object-Oriented Programming with Java UNIT 1Object-Oriented Programming with Java UNIT 1
Object-Oriented Programming with Java UNIT 1
SURBHI SAROHA
 
01 Java Language And OOP PART I
01 Java Language And OOP PART I01 Java Language And OOP PART I
01 Java Language And OOP PART I
Hari Christian
 
Java (1).ppt seminar topics engineering
Java (1).ppt  seminar topics engineeringJava (1).ppt  seminar topics engineering
Java (1).ppt seminar topics engineering
4MU21CS023
 
Java platform
Java platformJava platform
Java platform
Visithan
 
L2 datatypes and variables
L2 datatypes and variablesL2 datatypes and variables
L2 datatypes and variables
teach4uin
 
Java_Roadmap.pptx
Java_Roadmap.pptxJava_Roadmap.pptx
Java_Roadmap.pptx
ssuser814cf2
 
Std 12 Computer Chapter 7 Java Basics (Part 1)
Std 12 Computer Chapter 7 Java Basics (Part 1)Std 12 Computer Chapter 7 Java Basics (Part 1)
Std 12 Computer Chapter 7 Java Basics (Part 1)
Nuzhat Memon
 
Java Basics
Java BasicsJava Basics
Java unit 2
Java unit 2Java unit 2
Java unit 2
Shipra Swati
 
Introduction to-programming
Introduction to-programmingIntroduction to-programming
Introduction to-programming
BG Java EE Course
 
Java
JavaJava
Assignmentjsnsnshshusjdnsnshhzudjdndndjd
AssignmentjsnsnshshusjdnsnshhzudjdndndjdAssignmentjsnsnshshusjdnsnshhzudjdndndjd
Assignmentjsnsnshshusjdnsnshhzudjdndndjd
tusharjain613841
 
Modern_2.pptx for java
Modern_2.pptx for java Modern_2.pptx for java
Modern_2.pptx for java
MayaTofik
 
Volatile keyword
Volatile keywordVolatile keyword
Volatile keyword
charan kumar
 
Introduction to java
Introduction to javaIntroduction to java
Introduction to java
rishi ram khanal
 
OOP-java-variables.pptx
OOP-java-variables.pptxOOP-java-variables.pptx
OOP-java-variables.pptx
ssuserb1a18d
 

Similar to Java data types, variables and jvm (20)

Full CSE 310 Unit 1 PPT.pptx for java language
Full CSE 310 Unit 1 PPT.pptx for java languageFull CSE 310 Unit 1 PPT.pptx for java language
Full CSE 310 Unit 1 PPT.pptx for java language
 
Object-Oriented Programming with Java UNIT 1
Object-Oriented Programming with Java UNIT 1Object-Oriented Programming with Java UNIT 1
Object-Oriented Programming with Java UNIT 1
 
01 Java Language And OOP PART I
01 Java Language And OOP PART I01 Java Language And OOP PART I
01 Java Language And OOP PART I
 
java notes.pdf
java notes.pdfjava notes.pdf
java notes.pdf
 
Md03 - part3
Md03 - part3Md03 - part3
Md03 - part3
 
Java (1).ppt seminar topics engineering
Java (1).ppt  seminar topics engineeringJava (1).ppt  seminar topics engineering
Java (1).ppt seminar topics engineering
 
Java platform
Java platformJava platform
Java platform
 
L2 datatypes and variables
L2 datatypes and variablesL2 datatypes and variables
L2 datatypes and variables
 
Java_Roadmap.pptx
Java_Roadmap.pptxJava_Roadmap.pptx
Java_Roadmap.pptx
 
Std 12 Computer Chapter 7 Java Basics (Part 1)
Std 12 Computer Chapter 7 Java Basics (Part 1)Std 12 Computer Chapter 7 Java Basics (Part 1)
Std 12 Computer Chapter 7 Java Basics (Part 1)
 
Java Basics
Java BasicsJava Basics
Java Basics
 
Java unit 2
Java unit 2Java unit 2
Java unit 2
 
Introduction to-programming
Introduction to-programmingIntroduction to-programming
Introduction to-programming
 
Java
JavaJava
Java
 
Assignmentjsnsnshshusjdnsnshhzudjdndndjd
AssignmentjsnsnshshusjdnsnshhzudjdndndjdAssignmentjsnsnshshusjdnsnshhzudjdndndjd
Assignmentjsnsnshshusjdnsnshhzudjdndndjd
 
C sharp chap2
C sharp chap2C sharp chap2
C sharp chap2
 
Modern_2.pptx for java
Modern_2.pptx for java Modern_2.pptx for java
Modern_2.pptx for java
 
Volatile keyword
Volatile keywordVolatile keyword
Volatile keyword
 
Introduction to java
Introduction to javaIntroduction to java
Introduction to java
 
OOP-java-variables.pptx
OOP-java-variables.pptxOOP-java-variables.pptx
OOP-java-variables.pptx
 

More from Madishetty Prathibha

Object Oriented programming - Introduction
Object Oriented programming - IntroductionObject Oriented programming - Introduction
Object Oriented programming - Introduction
Madishetty Prathibha
 
Access modifiers in java
Access modifiers in javaAccess modifiers in java
Access modifiers in java
Madishetty Prathibha
 
Constructor in java
Constructor in javaConstructor in java
Constructor in java
Madishetty Prathibha
 
Classes objects in java
Classes objects in javaClasses objects in java
Classes objects in java
Madishetty Prathibha
 
Structure of java program diff c- cpp and java
Structure of java program  diff c- cpp and javaStructure of java program  diff c- cpp and java
Structure of java program diff c- cpp and java
Madishetty Prathibha
 
Operators in java
Operators in javaOperators in java
Operators in java
Madishetty Prathibha
 
Types of datastructures
Types of datastructuresTypes of datastructures
Types of datastructures
Madishetty Prathibha
 
Introduction to algorithms
Introduction to algorithmsIntroduction to algorithms
Introduction to algorithms
Madishetty Prathibha
 
Introduction to data structures (ss)
Introduction to data structures (ss)Introduction to data structures (ss)
Introduction to data structures (ss)
Madishetty Prathibha
 
Java Tokens
Java  TokensJava  Tokens
Oops concepts || Object Oriented Programming Concepts in Java
Oops concepts || Object Oriented Programming Concepts in JavaOops concepts || Object Oriented Programming Concepts in Java
Oops concepts || Object Oriented Programming Concepts in Java
Madishetty Prathibha
 
Java features
Java  features Java  features
Java features
Madishetty Prathibha
 
Introduction of java
Introduction  of javaIntroduction  of java
Introduction of java
Madishetty Prathibha
 

More from Madishetty Prathibha (13)

Object Oriented programming - Introduction
Object Oriented programming - IntroductionObject Oriented programming - Introduction
Object Oriented programming - Introduction
 
Access modifiers in java
Access modifiers in javaAccess modifiers in java
Access modifiers in java
 
Constructor in java
Constructor in javaConstructor in java
Constructor in java
 
Classes objects in java
Classes objects in javaClasses objects in java
Classes objects in java
 
Structure of java program diff c- cpp and java
Structure of java program  diff c- cpp and javaStructure of java program  diff c- cpp and java
Structure of java program diff c- cpp and java
 
Operators in java
Operators in javaOperators in java
Operators in java
 
Types of datastructures
Types of datastructuresTypes of datastructures
Types of datastructures
 
Introduction to algorithms
Introduction to algorithmsIntroduction to algorithms
Introduction to algorithms
 
Introduction to data structures (ss)
Introduction to data structures (ss)Introduction to data structures (ss)
Introduction to data structures (ss)
 
Java Tokens
Java  TokensJava  Tokens
Java Tokens
 
Oops concepts || Object Oriented Programming Concepts in Java
Oops concepts || Object Oriented Programming Concepts in JavaOops concepts || Object Oriented Programming Concepts in Java
Oops concepts || Object Oriented Programming Concepts in Java
 
Java features
Java  features Java  features
Java features
 
Introduction of java
Introduction  of javaIntroduction  of java
Introduction of java
 

Recently uploaded

Home assignment II on Spectroscopy 2024 Answers.pdf
Home assignment II on Spectroscopy 2024 Answers.pdfHome assignment II on Spectroscopy 2024 Answers.pdf
Home assignment II on Spectroscopy 2024 Answers.pdf
Tamralipta Mahavidyalaya
 
Acetabularia Information For Class 9 .docx
Acetabularia Information For Class 9  .docxAcetabularia Information For Class 9  .docx
Acetabularia Information For Class 9 .docx
vaibhavrinwa19
 
2024.06.01 Introducing a competency framework for languag learning materials ...
2024.06.01 Introducing a competency framework for languag learning materials ...2024.06.01 Introducing a competency framework for languag learning materials ...
2024.06.01 Introducing a competency framework for languag learning materials ...
Sandy Millin
 
Unit 2- Research Aptitude (UGC NET Paper I).pdf
Unit 2- Research Aptitude (UGC NET Paper I).pdfUnit 2- Research Aptitude (UGC NET Paper I).pdf
Unit 2- Research Aptitude (UGC NET Paper I).pdf
Thiyagu K
 
Adversarial Attention Modeling for Multi-dimensional Emotion Regression.pdf
Adversarial Attention Modeling for Multi-dimensional Emotion Regression.pdfAdversarial Attention Modeling for Multi-dimensional Emotion Regression.pdf
Adversarial Attention Modeling for Multi-dimensional Emotion Regression.pdf
Po-Chuan Chen
 
Embracing GenAI - A Strategic Imperative
Embracing GenAI - A Strategic ImperativeEmbracing GenAI - A Strategic Imperative
Embracing GenAI - A Strategic Imperative
Peter Windle
 
June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...
June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...
June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...
Levi Shapiro
 
The geography of Taylor Swift - some ideas
The geography of Taylor Swift - some ideasThe geography of Taylor Swift - some ideas
The geography of Taylor Swift - some ideas
GeoBlogs
 
special B.ed 2nd year old paper_20240531.pdf
special B.ed 2nd year old paper_20240531.pdfspecial B.ed 2nd year old paper_20240531.pdf
special B.ed 2nd year old paper_20240531.pdf
Special education needs
 
678020731-Sumas-y-Restas-Para-Colorear.pdf
678020731-Sumas-y-Restas-Para-Colorear.pdf678020731-Sumas-y-Restas-Para-Colorear.pdf
678020731-Sumas-y-Restas-Para-Colorear.pdf
CarlosHernanMontoyab2
 
Model Attribute Check Company Auto Property
Model Attribute  Check Company Auto PropertyModel Attribute  Check Company Auto Property
Model Attribute Check Company Auto Property
Celine George
 
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
siemaillard
 
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
EugeneSaldivar
 
Unit 8 - Information and Communication Technology (Paper I).pdf
Unit 8 - Information and Communication Technology (Paper I).pdfUnit 8 - Information and Communication Technology (Paper I).pdf
Unit 8 - Information and Communication Technology (Paper I).pdf
Thiyagu K
 
How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...
Jisc
 
The French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free downloadThe French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free download
Vivekanand Anglo Vedic Academy
 
The Roman Empire A Historical Colossus.pdf
The Roman Empire A Historical Colossus.pdfThe Roman Empire A Historical Colossus.pdf
The Roman Empire A Historical Colossus.pdf
kaushalkr1407
 
Polish students' mobility in the Czech Republic
Polish students' mobility in the Czech RepublicPolish students' mobility in the Czech Republic
Polish students' mobility in the Czech Republic
Anna Sz.
 
Instructions for Submissions thorugh G- Classroom.pptx
Instructions for Submissions thorugh G- Classroom.pptxInstructions for Submissions thorugh G- Classroom.pptx
Instructions for Submissions thorugh G- Classroom.pptx
Jheel Barad
 
Synthetic Fiber Construction in lab .pptx
Synthetic Fiber Construction in lab .pptxSynthetic Fiber Construction in lab .pptx
Synthetic Fiber Construction in lab .pptx
Pavel ( NSTU)
 

Recently uploaded (20)

Home assignment II on Spectroscopy 2024 Answers.pdf
Home assignment II on Spectroscopy 2024 Answers.pdfHome assignment II on Spectroscopy 2024 Answers.pdf
Home assignment II on Spectroscopy 2024 Answers.pdf
 
Acetabularia Information For Class 9 .docx
Acetabularia Information For Class 9  .docxAcetabularia Information For Class 9  .docx
Acetabularia Information For Class 9 .docx
 
2024.06.01 Introducing a competency framework for languag learning materials ...
2024.06.01 Introducing a competency framework for languag learning materials ...2024.06.01 Introducing a competency framework for languag learning materials ...
2024.06.01 Introducing a competency framework for languag learning materials ...
 
Unit 2- Research Aptitude (UGC NET Paper I).pdf
Unit 2- Research Aptitude (UGC NET Paper I).pdfUnit 2- Research Aptitude (UGC NET Paper I).pdf
Unit 2- Research Aptitude (UGC NET Paper I).pdf
 
Adversarial Attention Modeling for Multi-dimensional Emotion Regression.pdf
Adversarial Attention Modeling for Multi-dimensional Emotion Regression.pdfAdversarial Attention Modeling for Multi-dimensional Emotion Regression.pdf
Adversarial Attention Modeling for Multi-dimensional Emotion Regression.pdf
 
Embracing GenAI - A Strategic Imperative
Embracing GenAI - A Strategic ImperativeEmbracing GenAI - A Strategic Imperative
Embracing GenAI - A Strategic Imperative
 
June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...
June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...
June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...
 
The geography of Taylor Swift - some ideas
The geography of Taylor Swift - some ideasThe geography of Taylor Swift - some ideas
The geography of Taylor Swift - some ideas
 
special B.ed 2nd year old paper_20240531.pdf
special B.ed 2nd year old paper_20240531.pdfspecial B.ed 2nd year old paper_20240531.pdf
special B.ed 2nd year old paper_20240531.pdf
 
678020731-Sumas-y-Restas-Para-Colorear.pdf
678020731-Sumas-y-Restas-Para-Colorear.pdf678020731-Sumas-y-Restas-Para-Colorear.pdf
678020731-Sumas-y-Restas-Para-Colorear.pdf
 
Model Attribute Check Company Auto Property
Model Attribute  Check Company Auto PropertyModel Attribute  Check Company Auto Property
Model Attribute Check Company Auto Property
 
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
 
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
 
Unit 8 - Information and Communication Technology (Paper I).pdf
Unit 8 - Information and Communication Technology (Paper I).pdfUnit 8 - Information and Communication Technology (Paper I).pdf
Unit 8 - Information and Communication Technology (Paper I).pdf
 
How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...
 
The French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free downloadThe French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free download
 
The Roman Empire A Historical Colossus.pdf
The Roman Empire A Historical Colossus.pdfThe Roman Empire A Historical Colossus.pdf
The Roman Empire A Historical Colossus.pdf
 
Polish students' mobility in the Czech Republic
Polish students' mobility in the Czech RepublicPolish students' mobility in the Czech Republic
Polish students' mobility in the Czech Republic
 
Instructions for Submissions thorugh G- Classroom.pptx
Instructions for Submissions thorugh G- Classroom.pptxInstructions for Submissions thorugh G- Classroom.pptx
Instructions for Submissions thorugh G- Classroom.pptx
 
Synthetic Fiber Construction in lab .pptx
Synthetic Fiber Construction in lab .pptxSynthetic Fiber Construction in lab .pptx
Synthetic Fiber Construction in lab .pptx
 

Java data types, variables and jvm