What do you mean by JVM?
No Answer is Posted For this Question
Be the First to Post Answer
can we have function for truncating the sign as like abs in oracle.
What are init(), start() methods and whey they are called?
What are unchecked exceptions in java?
What are the differences between string, stringbuffer and stringbuilder?
How the interruptible method gets implemented?
who can we create the object of a class? in how many ways we can create it (max 5)
Why java doesn’t support multiple inheritances?
33. try { 34. // some code here 35. } catch (NullPointerException e1) { 36. System.out.print(”a”); 37. } catch (RuntimeException e2) { 38. System.out.print(”b”); 39. } finally { 40. System.out.print(”c”); 41. } What is the result if a NullPointerException occurs on line 34? 1 c 2 a 3 ab 4 ac
Can we place the any object to key attribute of HashMap<key,value>?
What is the difference between C++ and Java and your preferences?
What is classes in java?
Can we assign null to double in java?