What is class array in java?
No Answer is Posted For this Question
Be the First to Post Answer
Name component subclasses that support painting in java programming?
If system.exit (0); is written at the end of the try block, will the finally block still execute?
What is a java developer salary?
Why set do not allow duplicates in java?
What is the return type of read()?
Addition to previous section relative word 5th one was Putrid ans: rotten, also there was prob. in 1st section on bucket weight ans:10kg, also there was a prob. on train speed to find bridge length ans:800 mtrs.
Is null a value?
What is the use of flag?
How to set the Heap size in Java ?
What is the differnence between String Buffer and String builder despite having knowledge that String builder is faster than String Buffer and last one is threadsafe.please tell another important difference.
What is a numeric literal?
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