What do we mean when we say memory is managed in Java?
Front
we deal exclusively in objects and primitives and have no concept of what is happening underneath with regards to memory and pointers.
Back
What is JVM?
Front
Java Virtual Machine
Back
What is the main advantage of Java code is compiled down into an intermediary language called byte code?
Front
java program can be run on any system where a Java Virtual Machine is available. You would have to compile and test the application separately on every platform on which you wish it to run otherwise.
Back
What is the JVM responsible for?
Front
Executing byte code. Java code is compiled down into an intermediary language called byte code.