Java Quiz #3 | #Java #Coding #Quiz

preview_player
Показать описание
Java for Beginners Quiz 3
Comment your Answer 📝

Like and SUBSCRIBE ✅

#Programming #JavaForBeginners #Python
#PythonForBeginners #ProgrammingMemes
#Coder #Code #shorts
Рекомендации по теме
Комментарии
Автор

*String Pooling:*
Strings are stored in Heap. When a new string is declared (as variable), the JVM searches if the string already exists in the "String Pool",
if yes -> New String Points to already existing reference in Heap (String Pool)
if No -> Creates new Reference and stores in String pool (Heap).

JassCodes