What does java ide mean?
No Answer is Posted For this Question
Be the First to Post Answer
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
Explain about GridBag Layout?
What language is pass by reference?
How to create a thread in java?
Is static a singleton?
design an lru cache in java?
How does serialization work
What is a variable analysis?
how to use finalize()Method to resources
What does the ‘static’ keyword mean? Is it possible to override private or static method in java?
how to transactions(Bank transactions) in business process in ejb?
What part of memory - Stack or Heap - is cleaned in the garbage collection process?