@@ -14,8 +14,8 @@ Java is a **programming language** and a **platform**.
14
14
- It has Rich set of APIs
15
15
- Removed confusing features - explicit pointers, operator overloading, multiple inheritance, etc
16
16
17
- - ** Object-oriented :**
18
- - In Java, we organize the software as a combination of different types of objects that incorporates both data and behaviour .
17
+ - ** Object-Oriented :**
18
+ - In Java, we organize the software as a combination of different types of objects that incorporates both data and behavior .
19
19
- Based on the concept of Objects, Class, Inheritance, Polymorphism, Abstraction, Encapsulation
20
20
21
21
- ** Platform Independent:**
@@ -34,8 +34,8 @@ Java is a **programming language** and a **platform**.
34
34
35
35
- ** Robust:**
36
36
- ** Good memory management -** automatic garbage collection.
37
- - ** No pointers -** increses security.
38
- - ** Exception handling -** increses robustness against errors.
37
+ - ** No pointers -** increases security.
38
+ - ** Exception handling -** increases robustness against errors.
39
39
- ** Strongly typed -** every variable must be declared with a data type.
40
40
- ** Statically typed -** type checking of variables is performed at compile time.
41
41
@@ -45,7 +45,7 @@ Java is a **programming language** and a **platform**.
45
45
- ** Portable:**
46
46
- Write Once and Run Anywhere.
47
47
48
- - ** interpreted :**
48
+ - ** Interpreted :**
49
49
- Java is compiled to bytecodes, which are interpreted by a Java run-time environment.
50
50
- The interpreter reads bytecode stream then execute the instructions.
51
51
0 commit comments