Which is a more formal way of importing packages and classes as JavaScript objects?
A. import(java.util.*);
B. importClass(java.util.*);
C. import.Class(java.util.*);
D. Class.import(java.util.*);
Answer: Option B
Solution (By Examveda Team)
Because packages and classes are represented as JavaScript objects, you can assign themto variables to give them shorter names. But you can also more formally import them, if you want to:importClass(java.util.HashMap); // Same as : var HashMap = java.util.HashMap
Join The Discussion