What is boolean logic?
No Answer is Posted For this Question
Be the First to Post Answer
Catch(Exception e){ } in that what is Exception and purpose of that in that place exactly?
What does sprintf return?
Can private class be inherited in java?
What is binary search in java?
What is the memory leak in java?
What are the data types supported by java? What is autoboxing and unboxing?
Difference between Reader/Writer and InputStream/Output Stream?
9 Answers Adobe, Kirusa, Verizon,
What is a 16 bit word?
Can we call virtual funciton in a constructor ?
How do you start a new line in java?
Is it possible to write static method in abstract class? justyfy your 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