100% found this document useful (1 vote)
231 views

Language Fundamentals

The document outlines the agenda for a course on Java language fundamentals. It covers topics such as identifiers, reserved words, data types, literals, arrays, variables, memory areas in the JVM, coding standards, and more. The agenda includes details on rules for identifiers, reserved words for different purposes, primitive data types in Java, literals for various data types, details on single, multi-dimensional and anonymous arrays, variable types, uninitialized arrays, the main method, var-arg methods, command line arguments, coding standards for classes, interfaces, methods, variables and constants. It also discusses Java bean coding standards and standards for listeners.

Uploaded by

ROHIT JAIN
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
100% found this document useful (1 vote)
231 views

Language Fundamentals

The document outlines the agenda for a course on Java language fundamentals. It covers topics such as identifiers, reserved words, data types, literals, arrays, variables, memory areas in the JVM, coding standards, and more. The agenda includes details on rules for identifiers, reserved words for different purposes, primitive data types in Java, literals for various data types, details on single, multi-dimensional and anonymous arrays, variable types, uninitialized arrays, the main method, var-arg methods, command line arguments, coding standards for classes, interfaces, methods, variables and constants. It also discusses Java bean coding standards and standards for listeners.

Uploaded by

ROHIT JAIN
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

JAVA Means DURGA SIR

Language Fundamentals
Agenda :

1. Introduction
2. Identifiers
o Rules to define java identifiers:
3. Reserved words
o Reserved words for data types: (8)
o Reserved words for flow control:(11)
o Keywords for modifiers:(11)
o Keywords for exception handling:(6)
o Class related keywords:(6)
o Object related keywords:(4)
o Void return type keyword
o Unused keywords
o Reserved literals
o Enum
o Conclusions
4. Data types
o Integral data types
 Byte
 Short
 Int
 long
o Floating Point Data types
o boolean data type
o Char data type
o Java is pure object oriented programming or not ?
o Summary of java primitive data type
5. Literals
o Integral Literals
o Floating Point Literals
o Boolean literals
o Char literals
o String literals
o 1.7 Version enhansements with respect to Literals
 Binary Literals
 Usage of _ (underscore)symbol in numeric literals
6. Arrays
1. Introduction
2. Array declaration
 Single dimensional array declaration
 Two dimensional array declaration
 Three dimensional array declaration
3. Array construction

nd
DURGASOFT, # 202,2 Floor,HUDA Maitrivanam,Ameerpet, Hyderabad - 500038,
2  040 – 64 51 27 86, 80 96 96 96 96, 9246212143 | www.durgasoft.com
JAVA Means DURGA SIR

 Multi dimensional array creation


4. Array initialization
5. Array declaration, construction, initialization in a single line.
6. length Vs length() method
7. Anonymous arrays
8. Array element assignments
9. Array variable assignments
Types of variables
o Primitive variables
o Reference variables
o Instance variables
o Static variables
o Local variables
o Conclusions
Un initialized arrays
o Instance level
o Static level
o Local level
Var arg method
o Single Dimensional Array Vs Var-Arg Method
Main method
o 1.7 Version Enhansements with respect to main()
Command line arguments
Java coding standards
o Coding standards for classes
o Coding standards for interfaces
o Coding standards for methods
o Coding standards for variables
o Coding standards for constants
o Java bean coding standards
 Syntax for setter method
 Syntax for getter method
o Coding standards for listeners
 To register a listener
 To unregister a listener
Various Memory areas present inside JVM

nd
DURGASOFT, # 202,2 Floor,HUDA Maitrivanam,Ameerpet, Hyderabad - 500038,
3  040 – 64 51 27 86, 80 96 96 96 96, 9246212143 | www.durgasoft.com

You might also like