Java SE 11
Beginner to Advance
Topics
Chapter 1: Java Fundamentals
Chapter 2: Operators
Chapter 3: Making Decisions
Chapter 4: Java Building Blocks
Chapter 5: Methods
Chapter 6: Class Design
Chapter 7: Advanced Class Design
Chapter 8: Core Java APIs
Chapter 9: Lambdas and Functional Interfaces
Chapter 10: Exceptions
Chapter 11: Modules
Topics
Chapter 12: Annotations
Chapter 13: Generics
Chapter 14: Functional Programming
Chapter 15: Exceptions, Assertions, and Localization
Chapter 16: Modular Applications
Chapter 17: Concurrency
Chapter 18: I/O
Chapter 19: NIO.2
Chapter 20: JDBC
Chapter 21: Security
What is Java
• General Purpose Object Oriented Language
• Platform independent
Feature
• Simple
• Object-Oriented
• Portable
• Platform independent
• Secured
• Robust
• Architecture neutral
• Interpreted
• Multithreaded
Print “Hello World” Massage.
1. Create a project.
2. Define main method.
3. Write print statement.
Project Structure
Read input from console.
Create Object of ‘Scanner’ Class
Scanner scanner = new Scanner(System.in);
Import Scanner from java.util package.
import java.util.Scanner;
Read input by scanner methods
scanner.nextInt();
scanner.nextLine();

More Related Content

PDF
iOS development best practices
PPTX
Presentation5
PPTX
Introduction to Core Java Programming
PPTX
Spring presentation
PPTX
Features of java - javatportal
PPTX
The modern view on implementation of classic design patterns in Java
PPTX
Rapid application development in java
PPTX
Core java
iOS development best practices
Presentation5
Introduction to Core Java Programming
Spring presentation
Features of java - javatportal
The modern view on implementation of classic design patterns in Java
Rapid application development in java
Core java

What's hot (17)

PPTX
Java Presentation
PPTX
Java Introduction
PPTX
core java
PPTX
Presentation on java (8)
ODP
Double checkedlockingjavasingletons
PPTX
Introduction to Java
DOCX
What are the popular features of java?
PPTX
PPTX
JAVA FEATURES
PDF
Scala Italy 2015 - An Introduction to Akka and the Actor Based Model
PPTX
Features of java
PDF
Java presentation
PDF
Java programming and security
PDF
02 java programming features of java i
PDF
Java design patterns
PPTX
JAVA Career
Java Presentation
Java Introduction
core java
Presentation on java (8)
Double checkedlockingjavasingletons
Introduction to Java
What are the popular features of java?
JAVA FEATURES
Scala Italy 2015 - An Introduction to Akka and the Actor Based Model
Features of java
Java presentation
Java programming and security
02 java programming features of java i
Java design patterns
JAVA Career
Ad

Similar to 1. Java Hello world (20)

PPTX
Core java programming tutorial - Brainsmartlabs
PPT
Java basics
PPT
Introduction
PPTX
Java Programming Important Topics
PPTX
Programming in Java
PPT
Chapter 1 java
PPTX
Knowledge of Javascript
PPTX
Core java
PDF
Java Programming Fundamentals: Complete Guide for Beginners
PPTX
1.introduction to java
PPTX
1 introduction
ODP
Learning java
PDF
Programming in Java Unit 1 lesson Notes for Java
PPTX
Manuel - SPR - Intro to Java Language_2016
PDF
Professional-core-java-training
DOCX
Java se 8 fundamentals
PPTX
VMC___JAVA-THIRD QUARTER-SHS TWELVE.pptx
PDF
Java Programming for Engineers 1st Edition Julio Sanchez
Core java programming tutorial - Brainsmartlabs
Java basics
Introduction
Java Programming Important Topics
Programming in Java
Chapter 1 java
Knowledge of Javascript
Core java
Java Programming Fundamentals: Complete Guide for Beginners
1.introduction to java
1 introduction
Learning java
Programming in Java Unit 1 lesson Notes for Java
Manuel - SPR - Intro to Java Language_2016
Professional-core-java-training
Java se 8 fundamentals
VMC___JAVA-THIRD QUARTER-SHS TWELVE.pptx
Java Programming for Engineers 1st Edition Julio Sanchez
Ad

Recently uploaded (20)

PDF
LIFE & LIVING TRILOGY- PART (1) WHO ARE WE.pdf
PDF
Τίμαιος είναι φιλοσοφικός διάλογος του Πλάτωνα
PDF
Complications of Minimal Access-Surgery.pdf
PPTX
What’s under the hood: Parsing standardized learning content for AI
PDF
Race Reva University – Shaping Future Leaders in Artificial Intelligence
PDF
Hazard Identification & Risk Assessment .pdf
PPTX
Core Concepts of Personalized Learning and Virtual Learning Environments
PDF
My India Quiz Book_20210205121199924.pdf
PDF
English Textual Question & Ans (12th Class).pdf
PDF
Journal of Dental Science - UDMY (2021).pdf
PDF
MICROENCAPSULATION_NDDS_BPHARMACY__SEM VII_PCI .pdf
PDF
What if we spent less time fighting change, and more time building what’s rig...
PDF
LIFE & LIVING TRILOGY - PART (3) REALITY & MYSTERY.pdf
PPTX
B.Sc. DS Unit 2 Software Engineering.pptx
PDF
MBA _Common_ 2nd year Syllabus _2021-22_.pdf
PPTX
Virtual and Augmented Reality in Current Scenario
PDF
semiconductor packaging in vlsi design fab
PDF
Paper A Mock Exam 9_ Attempt review.pdf.
PDF
FORM 1 BIOLOGY MIND MAPS and their schemes
PDF
AI-driven educational solutions for real-life interventions in the Philippine...
LIFE & LIVING TRILOGY- PART (1) WHO ARE WE.pdf
Τίμαιος είναι φιλοσοφικός διάλογος του Πλάτωνα
Complications of Minimal Access-Surgery.pdf
What’s under the hood: Parsing standardized learning content for AI
Race Reva University – Shaping Future Leaders in Artificial Intelligence
Hazard Identification & Risk Assessment .pdf
Core Concepts of Personalized Learning and Virtual Learning Environments
My India Quiz Book_20210205121199924.pdf
English Textual Question & Ans (12th Class).pdf
Journal of Dental Science - UDMY (2021).pdf
MICROENCAPSULATION_NDDS_BPHARMACY__SEM VII_PCI .pdf
What if we spent less time fighting change, and more time building what’s rig...
LIFE & LIVING TRILOGY - PART (3) REALITY & MYSTERY.pdf
B.Sc. DS Unit 2 Software Engineering.pptx
MBA _Common_ 2nd year Syllabus _2021-22_.pdf
Virtual and Augmented Reality in Current Scenario
semiconductor packaging in vlsi design fab
Paper A Mock Exam 9_ Attempt review.pdf.
FORM 1 BIOLOGY MIND MAPS and their schemes
AI-driven educational solutions for real-life interventions in the Philippine...

1. Java Hello world

  • 1. Java SE 11 Beginner to Advance
  • 2. Topics Chapter 1: Java Fundamentals Chapter 2: Operators Chapter 3: Making Decisions Chapter 4: Java Building Blocks Chapter 5: Methods Chapter 6: Class Design Chapter 7: Advanced Class Design Chapter 8: Core Java APIs Chapter 9: Lambdas and Functional Interfaces Chapter 10: Exceptions Chapter 11: Modules
  • 3. Topics Chapter 12: Annotations Chapter 13: Generics Chapter 14: Functional Programming Chapter 15: Exceptions, Assertions, and Localization Chapter 16: Modular Applications Chapter 17: Concurrency Chapter 18: I/O Chapter 19: NIO.2 Chapter 20: JDBC Chapter 21: Security
  • 4. What is Java • General Purpose Object Oriented Language • Platform independent
  • 5. Feature • Simple • Object-Oriented • Portable • Platform independent • Secured • Robust • Architecture neutral • Interpreted • Multithreaded
  • 6. Print “Hello World” Massage. 1. Create a project. 2. Define main method. 3. Write print statement.
  • 8. Read input from console. Create Object of ‘Scanner’ Class Scanner scanner = new Scanner(System.in); Import Scanner from java.util package. import java.util.Scanner; Read input by scanner methods scanner.nextInt(); scanner.nextLine();