Introduction Of Java
What is Java
- A general purpose programming language.
- It is like C++ but with advanced and simplified features
- Concurrently executes many statements
- Object-oriented programming language
- Platform independent
Why Learn Java
- Easy to learn.
- most commonly used language in the world.
- Large Community ( more than 10M java Developers in the world)
- Java is used at many places servers, IOT, Android, Big Data, continuous Testing, Banking, Communications and many more
- Java Tools like IDEs and built in API features make life easier.
Basics structure of java
- Overview and features of java
- Setting up java environment
- Data type and identifires
- Variables and Type casting
- Taking user inputs
- Operators
- Conditional Statements
- Loops
- Arrays
- Strings
- Mutable Strings
OOPs concepts
- Classes and Objects
- Methods
- Constructors
- Method Overloading
- Packages and access modifires
- Nested classes
- Inheritance
- Polymorphism
- Abstract classes
- interfaces
- Encapsulation
- Generics
- Anonymous Classes
- Exception handling
Collections Framework
- Introduction to collection interfaces
- List
- Set
- Map
- Natural Ordering and sorting
- Comparators
How java works
class Simple1 {
public static void main( String [] args ){
System.out.println("hello world" );
}
}
Hellow world
Post a Comment