What is %02d?
No Answer is Posted For this Question
Be the First to Post Answer
How can we run a java program without making any object?
Can a class be declared as protected?
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
Write an algorithm program in java for the following question.. In a VLSI design techniques,they used rectangles to design circuits. EVery rectangle is to be placed according to x,y coordinates. Check whether or not two rectangles overlap each other. Here overlapping of rectangles is acceptable, if 1) one rectangle intersect with other. 2) one rectangle fully covers other. The time of algorithm should not exceed o(n logn).
What is hash in java?
What exactly is java?
Define a java class.
what is object-oriented programming in java?
What is the specification of ?CODEBASE? in an applet?
What is the purpose of using break in each case of switch statement?
What is passing value java?
What is a static method in java?