Chapter 2 Flashcards
Which thing make JAVA portable
JVM
What is JAVA byte code
Java code convert into JAVA byte code which JVM understands.
Is JAVA platform independent
Yes
What is the difference between JAVA and C++
Java has destructors (garbage collection). Java do not have pointers. Java have no templates. Java have no header files. Java is OOP
Please list down JAVA front and web development technologies
- Servlets
- JSP
- JSF
- Applets
What are business components for JAVA
EJBs
What is used for database in Java
JDBC
In Java, some time it happens that business, database and user objects are reside on different machines. How to link them.
using RMI (Remote Method invocation)
What is JVM verifier
It make sure robustness, security and safety on java code
What software required for java to run on machine
JDK (java development kit)
Is there any global functions or global variables in Java
No
How to compile java program
javac filename.java
It converts code into byte code
How to run the compiled file
java filename
Who creates byte code
compiler
Who puts byte code into memory
class loader