Skip to content

Commit cf3c576

Browse files
committed
Adjust width and height of image
1 parent 8223c7d commit cf3c576

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

README.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Frequently asked Java Interview questions
3535

3636
The pictorial representation of these three components looks as follows,
3737

38-
![Screenshot](images/JVM_JRE_JDK.png)
38+
<img scr="images/JVM_JRE_JDK.png" width="300" height="300" />
3939

4040
**[⬆ Back to Top](#table-of-contents)**
4141

@@ -196,6 +196,10 @@ Frequently asked Java Interview questions
196196

197197
**[⬆ Back to Top](#table-of-contents)**
198198

199+
5. ### What is public static void main?
200+
201+
**[⬆ Back to Top](#table-of-contents)**
202+
199203
5. ### What is string constant pool
200204

201205
String constant pool is a storage space inside the heap memory area where string literals are stored. It is also known as String pool or String Intern Pool. This is privately maintained by String class and it is empty by default. Whenever you create a new string object, JVM checks for presence of string object in the string pool. If the string value is already present, the same object reference is shared with the variable, else a new string is created in the pool with the variable reference stored in stack area.

0 commit comments

Comments
 (0)