Skip to content

Commit ab723ef

Browse files
authored
Update README.md
1 parent 45530fc commit ab723ef

File tree

1 file changed

+14
-2
lines changed

1 file changed

+14
-2
lines changed

README.md

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,19 @@ Core Java Interview Question
33

44

55
#### Q1 What is JAVA?
6-
Java is a high-level programming language and is platform-independent.
7-
Java is a collection of objects. It was developed by Sun Microsystems. There are a lot of applications, websites, and games that are developed using Java.
6+
Java is a high-level programming language and is platform-independent.
7+
Java is a collection of objects. It was developed by Sun Microsystems. There are a lot of applications, websites, and games that are developed using Java.
88

9+
#### Q2 What are the features of JAVA?
10+
#### Features of Java are as follows:
911

12+
#### OOP concepts
13+
* Object-oriented
14+
* Inheritance
15+
* Encapsulation
16+
* Polymorphism
17+
* Abstraction
18+
* ** Platform independent:** A single program works on different platforms without any modification.
19+
* ** High Performance:** JIT (Just In Time compiler) enables high performance in Java. JIT converts the bytecode into machine language and then JVM starts the execution.
20+
* ** Multi-threaded:** A flow of execution is known as a Thread. JVM creates a thread which is called the main thread. The user can create multiple threads by extending the thread class
21+
or by implementing the Runnable interface.

0 commit comments

Comments
 (0)