SlideShare a Scribd company logo
13
Most read
14
Most read
16
Most read
JAVA
Prepared by
P.Prathibha
Lecturer
Topics for Today’s Session
Object Oriented Programming
JAVA TOKENS
COMMENTS
keywords Constants
Operators Separators
Identifiers
Initially developed
by
James Gosling
at
Sun Microsystems
and
released
in
1995.
JAVA
Object Oriented Programming
 Object oriented Programming is a modern programming method
to design a program using Classes and Objects
Objects
Real world entities that has their own
properties and behaviours such as
Book, Chair, Car, Pen, Table, etc.,
Class
A class is a blueprint or prototype from
which objects are created.
 Major objective is to eliminate unfavorable features
encountered in Procedural approach
What is
Java? 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  Tokens
Java  Tokens
Java Tokens
 A Java Program
 contains number of classes
 Classes contains number of statements and methods
 Methods contains various expressions and statements.
which describes the actions carried out on data.
 Smallest individual units in a program are called
“Tokens”
 Token is basically smallest element, which is identified
by the Compiler.
 Java compiler uses tokens for constructing expressions
and statements.
Keywords
Identifier
Constants
Operators
Separators
Types of Tokens
Java Tokens are classified into
Keywords
 Keywords are essential part of a language definition.
 These are pre-defined or Reserved words in a
programming language.
 Keywords are standard identifiers and their functions is
predefined by the Compiler.
 Each keyword is assigned a special task cannot be
changed by the user.
 These cannot be used as identifiers.
 These are, a part of Java syntax .
 A keyword should always be written in lowercase as Java
is a case sensitive language.
 Java has reserved 50 words as Keywords.
List of Java Keywords
Java Identifiers
 Identifiers are Programmer designed tokens.
 These are used for identification purposes.
 Identifiers are the names, which are assigned to classes,
Objects, Labels, Variables, Methods, Packages and
Interfaces.
For Example: words which are in red are identifiers like
int num=2;
String str=“Hello”;
Class Fruit ( /* class members*/
Void function() {/* method body */
int sum() {/* method body*/
Points To Remember Regarding
Identifiers
1. We can use uppercase letters (A to Z), lowercase letters ( a to b),
dollar symbol ($), numerals (0 to 9) and underscore (_) only
while creating an Identifier.
2. Identifiers must begin with a letter, dollar sign or underscore.
But not with numbers.
3. Identifiers cannot be a keyword.
4. Identifiers are case-sensitive.
5. It's a convention to start an identifier with a letter rather
and $ or _.
6. After the first character, Identifier can have any combination of
characters
7. Whitespaces are not allowed.
8. Similarly, you cannot use symbols such as @, #, and so on.
Example: (Valid identifiers) : $xy, _name,ab12
Example: (Invalid identifiers) : *a,-h4,12num,%sd, float
Constants/ Literals
 Constants are also like normal variables. But their values can not be
modified by the program once they are defined.
 Constants refers to fixed values. They are also called as literals.
 Any constant value which can be assigned to the variable is called as
literal/constant.
 Constants are expressions with a immutable value.
 These are defined by users and can belong to any data type.
 Java supports five types of literals which are as follows:
1. Integer
2. Floating Point
3. Character
4. String
5. Boolean
Example: int a1 = 782; // Int literal
float c2 = 451.40; // Float literal
char c = “Hello” // char literal
String name = “Harsha"; // String literal
boolean x = true; // Boolean literal
Operators
 An operator is a symbol that represents a mathematical or
non- mathematical operation.
 Operators are used to perform operations on variables
and values.
 Java divides the operators into the following :
1. Arithmetic operators
2. Assignment operators
3. Relational / Comparison operators
4. Logical operators
5. Unary Operators ( Increment , Decrement Operators)
6. Bitwise operators
7. Conditional Operators
8. Special Operators
 Separator is a token used to separate two individual tokens used in a Java
program.
 These are Special symbols used to indicate where a groups of code are divided
and arranged.
 These are few characters which have special meaning known to Java
compiler and cannot be used for any other purpose.
 Separators are also known as Punctuators
Separators
Symbol Description
Brackets []
These are used as an array element reference and also indicates single
and multidimensional subscripts
Parentheses() These indicate a function call along with function parameters
Braces{}
Define the beginning and end of a block of code for Classes, Methods
and local scopes
Comma ( , )
To separate variable declarations, also helps in separating more than one
statement in an expression
Semi-Colon (;)
This is used to invoke an initialization list and also to separate
statements
Asterisk (*) This is used to create a pointer variable in Java
Period(.)
To separate package names from sub packages and classes and also
used to separate a variable or method from a reference variable.
Comments
 Comments in Java are often are non-executable statements,
used to understand the code better.
 Comments make the program more readable.
 Comments are ignored by the compiler while compiling a code.
 Comments are the statements that are not executed by the
compiler and interpreter.
 The comments can be used to provide information or
explanation about the variable, method, class or any statement.
Types of Java Comments: There are three types of comments :
1. Single Line Comment
2. Multi Line Comment
3. Documentation Comment
1. Single-line comments:
 This type of comment is mainly used for describing the code
functionality.
 These used to comment only one line.
 These start with two forward slashes (//).
 Any text between // and the end of the line is ignored by Java (will
not be executed).
//This is single line comment
2. Multi Line Comment
 The multi line comment is used to comment multiple lines of
code.
 Multi-line comments start with /* and ends with */.
 Any text between /* and */ will be ignored by Java.
/*
This is multi line
comment
*/
3. Documentation Comment
 This type of comments is used generally when you are writing
code for a project/ software package.
 The documentation comment is used to create documentation
API.
 To create documentation API, you need to use javadoc tool.
/**
This is
documentation
comment
*/
Conclusion
 In this lesson you learnt about
 Object Oriented Programming
 What is Java?
 Java Tokens
 Comments
Java  Tokens

More Related Content

PPTX
Control structures in java
PPTX
Social issues
PPT
Introduction on Environmental Studies
PPTX
Constructor in java
DOCX
Passport Automation System
PPTX
Operators in java
PDF
Java Inheritance
PPT
English social issues
Control structures in java
Social issues
Introduction on Environmental Studies
Constructor in java
Passport Automation System
Operators in java
Java Inheritance
English social issues

What's hot (20)

PPTX
History Of JAVA
PPSX
Data Types & Variables in JAVA
PPTX
Applets in java
PPTX
Data Types, Variables, and Operators
PPTX
Classes objects in java
PPTX
Java program structure
PPTX
Features of java
PDF
Introduction to Java Programming
PPTX
Interface in java
PPTX
Java Data Types
PDF
Constants, Variables and Data Types in Java
PPTX
Java awt (abstract window toolkit)
PPTX
Access specifiers(modifiers) in java
PPTX
Operators in java
PPTX
Type casting in java
PPTX
Control statements in java
PPTX
Java tokens
PPTX
Packages in java
PDF
Java I/o streams
History Of JAVA
Data Types & Variables in JAVA
Applets in java
Data Types, Variables, and Operators
Classes objects in java
Java program structure
Features of java
Introduction to Java Programming
Interface in java
Java Data Types
Constants, Variables and Data Types in Java
Java awt (abstract window toolkit)
Access specifiers(modifiers) in java
Operators in java
Type casting in java
Control statements in java
Java tokens
Packages in java
Java I/o streams
Ad

Similar to Java Tokens (20)

PDF
Overview of java Language-3.pdf
PPTX
Object oriented Programming for CSE, IT,
PDF
Java Simplified: Understanding Programming Basics
PPTX
Concepts of core java
PPTX
Chapter One Basics ofJava Programmming.pptx
PDF
Java basic concept
PPTX
OOP Poster Presentation
PPTX
Java Unit-1.1 chunri kyu shuru kar rh koi si je di of du th n high ch ka dh h...
PPTX
Java_Roadmap.pptx
PPTX
Java (1).ppt seminar topics engineering
PPTX
Object-Oriented Programming with Java UNIT 1
PPTX
Modern_2.pptx for java
PDF
Introduction to Java Object Oiented Concepts and Basic terminologies
PDF
Bt0074 oops with java
PPT
Java for Mainframers
PDF
Java unit 2
PDF
2.Lesson Plan - Java Variables and Data types.pdf.pdf
DOC
java handout.doc
PPTX
Java fundamentals
PPTX
Object Oriented Programming unit 1 content for students
Overview of java Language-3.pdf
Object oriented Programming for CSE, IT,
Java Simplified: Understanding Programming Basics
Concepts of core java
Chapter One Basics ofJava Programmming.pptx
Java basic concept
OOP Poster Presentation
Java Unit-1.1 chunri kyu shuru kar rh koi si je di of du th n high ch ka dh h...
Java_Roadmap.pptx
Java (1).ppt seminar topics engineering
Object-Oriented Programming with Java UNIT 1
Modern_2.pptx for java
Introduction to Java Object Oiented Concepts and Basic terminologies
Bt0074 oops with java
Java for Mainframers
Java unit 2
2.Lesson Plan - Java Variables and Data types.pdf.pdf
java handout.doc
Java fundamentals
Object Oriented Programming unit 1 content for students
Ad

More from Madishetty Prathibha (12)

PPTX
Object Oriented programming - Introduction
PPTX
Access modifiers in java
PPTX
Constructor in java
PPTX
Structure of java program diff c- cpp and java
PPTX
Operators in java
PPTX
Types of datastructures
PPTX
Introduction to algorithms
PDF
Java data types, variables and jvm
PPTX
Introduction to data structures (ss)
PDF
Oops concepts || Object Oriented Programming Concepts in Java
PPT
Java features
PPSX
Introduction of java
Object Oriented programming - Introduction
Access modifiers in java
Constructor in java
Structure of java program diff c- cpp and java
Operators in java
Types of datastructures
Introduction to algorithms
Java data types, variables and jvm
Introduction to data structures (ss)
Oops concepts || Object Oriented Programming Concepts in Java
Java features
Introduction of java

Recently uploaded (20)

PDF
RTP_AR_KS1_Tutor's Guide_English [FOR REPRODUCTION].pdf
PDF
Weekly quiz Compilation Jan -July 25.pdf
PDF
Module 4: Burden of Disease Tutorial Slides S2 2025
PPTX
PPT- ENG7_QUARTER1_LESSON1_WEEK1. IMAGERY -DESCRIPTIONS pptx.pptx
DOC
Soft-furnishing-By-Architect-A.F.M.Mohiuddin-Akhand.doc
PDF
LNK 2025 (2).pdf MWEHEHEHEHEHEHEHEHEHEHE
PDF
LDMMIA Reiki Yoga Finals Review Spring Summer
PPTX
Orientation - ARALprogram of Deped to the Parents.pptx
PPTX
Cell Structure & Organelles in detailed.
PDF
Practical Manual AGRO-233 Principles and Practices of Natural Farming
PDF
What if we spent less time fighting change, and more time building what’s rig...
PDF
Paper A Mock Exam 9_ Attempt review.pdf.
PPTX
master seminar digital applications in india
PDF
Updated Idioms and Phrasal Verbs in English subject
PDF
A GUIDE TO GENETICS FOR UNDERGRADUATE MEDICAL STUDENTS
PPTX
1st Inaugural Professorial Lecture held on 19th February 2020 (Governance and...
PDF
Complications of Minimal Access Surgery at WLH
PDF
grade 11-chemistry_fetena_net_5883.pdf teacher guide for all student
PDF
Anesthesia in Laparoscopic Surgery in India
PDF
01-Introduction-to-Information-Management.pdf
RTP_AR_KS1_Tutor's Guide_English [FOR REPRODUCTION].pdf
Weekly quiz Compilation Jan -July 25.pdf
Module 4: Burden of Disease Tutorial Slides S2 2025
PPT- ENG7_QUARTER1_LESSON1_WEEK1. IMAGERY -DESCRIPTIONS pptx.pptx
Soft-furnishing-By-Architect-A.F.M.Mohiuddin-Akhand.doc
LNK 2025 (2).pdf MWEHEHEHEHEHEHEHEHEHEHE
LDMMIA Reiki Yoga Finals Review Spring Summer
Orientation - ARALprogram of Deped to the Parents.pptx
Cell Structure & Organelles in detailed.
Practical Manual AGRO-233 Principles and Practices of Natural Farming
What if we spent less time fighting change, and more time building what’s rig...
Paper A Mock Exam 9_ Attempt review.pdf.
master seminar digital applications in india
Updated Idioms and Phrasal Verbs in English subject
A GUIDE TO GENETICS FOR UNDERGRADUATE MEDICAL STUDENTS
1st Inaugural Professorial Lecture held on 19th February 2020 (Governance and...
Complications of Minimal Access Surgery at WLH
grade 11-chemistry_fetena_net_5883.pdf teacher guide for all student
Anesthesia in Laparoscopic Surgery in India
01-Introduction-to-Information-Management.pdf

Java Tokens

  • 2. Topics for Today’s Session Object Oriented Programming JAVA TOKENS COMMENTS keywords Constants Operators Separators Identifiers
  • 3. Initially developed by James Gosling at Sun Microsystems and released in 1995. JAVA
  • 4. Object Oriented Programming  Object oriented Programming is a modern programming method to design a program using Classes and Objects Objects Real world entities that has their own properties and behaviours such as Book, Chair, Car, Pen, Table, etc., Class A class is a blueprint or prototype from which objects are created.  Major objective is to eliminate unfavorable features encountered in Procedural approach
  • 5. What is Java? 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.
  • 8. Java Tokens  A Java Program  contains number of classes  Classes contains number of statements and methods  Methods contains various expressions and statements. which describes the actions carried out on data.  Smallest individual units in a program are called “Tokens”  Token is basically smallest element, which is identified by the Compiler.  Java compiler uses tokens for constructing expressions and statements.
  • 10. Keywords  Keywords are essential part of a language definition.  These are pre-defined or Reserved words in a programming language.  Keywords are standard identifiers and their functions is predefined by the Compiler.  Each keyword is assigned a special task cannot be changed by the user.  These cannot be used as identifiers.  These are, a part of Java syntax .  A keyword should always be written in lowercase as Java is a case sensitive language.  Java has reserved 50 words as Keywords.
  • 11. List of Java Keywords
  • 12. Java Identifiers  Identifiers are Programmer designed tokens.  These are used for identification purposes.  Identifiers are the names, which are assigned to classes, Objects, Labels, Variables, Methods, Packages and Interfaces. For Example: words which are in red are identifiers like int num=2; String str=“Hello”; Class Fruit ( /* class members*/ Void function() {/* method body */ int sum() {/* method body*/
  • 13. Points To Remember Regarding Identifiers 1. We can use uppercase letters (A to Z), lowercase letters ( a to b), dollar symbol ($), numerals (0 to 9) and underscore (_) only while creating an Identifier. 2. Identifiers must begin with a letter, dollar sign or underscore. But not with numbers. 3. Identifiers cannot be a keyword. 4. Identifiers are case-sensitive. 5. It's a convention to start an identifier with a letter rather and $ or _. 6. After the first character, Identifier can have any combination of characters 7. Whitespaces are not allowed. 8. Similarly, you cannot use symbols such as @, #, and so on. Example: (Valid identifiers) : $xy, _name,ab12 Example: (Invalid identifiers) : *a,-h4,12num,%sd, float
  • 14. Constants/ Literals  Constants are also like normal variables. But their values can not be modified by the program once they are defined.  Constants refers to fixed values. They are also called as literals.  Any constant value which can be assigned to the variable is called as literal/constant.  Constants are expressions with a immutable value.  These are defined by users and can belong to any data type.  Java supports five types of literals which are as follows: 1. Integer 2. Floating Point 3. Character 4. String 5. Boolean Example: int a1 = 782; // Int literal float c2 = 451.40; // Float literal char c = “Hello” // char literal String name = “Harsha"; // String literal boolean x = true; // Boolean literal
  • 15. Operators  An operator is a symbol that represents a mathematical or non- mathematical operation.  Operators are used to perform operations on variables and values.  Java divides the operators into the following : 1. Arithmetic operators 2. Assignment operators 3. Relational / Comparison operators 4. Logical operators 5. Unary Operators ( Increment , Decrement Operators) 6. Bitwise operators 7. Conditional Operators 8. Special Operators
  • 16.  Separator is a token used to separate two individual tokens used in a Java program.  These are Special symbols used to indicate where a groups of code are divided and arranged.  These are few characters which have special meaning known to Java compiler and cannot be used for any other purpose.  Separators are also known as Punctuators Separators Symbol Description Brackets [] These are used as an array element reference and also indicates single and multidimensional subscripts Parentheses() These indicate a function call along with function parameters Braces{} Define the beginning and end of a block of code for Classes, Methods and local scopes Comma ( , ) To separate variable declarations, also helps in separating more than one statement in an expression Semi-Colon (;) This is used to invoke an initialization list and also to separate statements Asterisk (*) This is used to create a pointer variable in Java Period(.) To separate package names from sub packages and classes and also used to separate a variable or method from a reference variable.
  • 17. Comments  Comments in Java are often are non-executable statements, used to understand the code better.  Comments make the program more readable.  Comments are ignored by the compiler while compiling a code.  Comments are the statements that are not executed by the compiler and interpreter.  The comments can be used to provide information or explanation about the variable, method, class or any statement. Types of Java Comments: There are three types of comments : 1. Single Line Comment 2. Multi Line Comment 3. Documentation Comment
  • 18. 1. Single-line comments:  This type of comment is mainly used for describing the code functionality.  These used to comment only one line.  These start with two forward slashes (//).  Any text between // and the end of the line is ignored by Java (will not be executed). //This is single line comment 2. Multi Line Comment  The multi line comment is used to comment multiple lines of code.  Multi-line comments start with /* and ends with */.  Any text between /* and */ will be ignored by Java. /* This is multi line comment */
  • 19. 3. Documentation Comment  This type of comments is used generally when you are writing code for a project/ software package.  The documentation comment is used to create documentation API.  To create documentation API, you need to use javadoc tool. /** This is documentation comment */
  • 20. Conclusion  In this lesson you learnt about  Object Oriented Programming  What is Java?  Java Tokens  Comments