Join the Codozzle community now and ask questions, share knowledge, and connect with peers and industry leaders!
Log in to keep sharpening those coding skills.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
How is Java different from C++?
C++ is compiled and run using the compiler which converts source code into machine code, C++ is platform dependent. Java uses both compiler and interpreter. Java source code is converted into byte code at compilation time. The interpreter executes this bytecode at the runtime and produces output.
C++ is compiled and run using the compiler which converts source code into machine code, C++ is platform dependent. Java uses both compiler and interpreter. Java source code is converted into byte code at compilation time. The interpreter executes this bytecode at the runtime and produces output.
See lessWhat do you mean by Garbage collection in programming?
Garbage collection is a term used in computer programming to describe the process of finding and deleting objects which are no longer being referenced by other objects. In other words, garbage collection is the process of removing any objects which are not being used by any other objects.
Garbage collection is a term used in computer programming to describe the process of finding and deleting objects which are no longer being referenced by other objects. In other words, garbage collection is the process of removing any objects which are not being used by any other objects.
See less