You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+14-2Lines changed: 14 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,19 @@ Core Java Interview Question
3
3
4
4
5
5
#### 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.
8
8
9
+
#### Q2 What are the features of JAVA?
10
+
#### Features of Java are as follows:
9
11
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
0 commit comments