Is null keyword in java?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More Core Java Interview Questions

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).

0 Answers  


Why do we create public static method in java?

0 Answers  


Difference between String and String Buffer?

3 Answers  


Is there any difference between nested classes and inner classes?

0 Answers  


abstract class Demo { public void show() { System.out.println("Hello I am In show method of Abstract class"); } } class Sample extends Demo { public void show() { super.show(); System.out.println("Hello I am In Sample "); } } public class Test { public static void main(String[] args) { //I WANT TO CALL THE METHOD OF BASE CLASS IT IS POSSIBLE OR NOT CAN WE USE SCOPE RESOLUTION OPERATOR TO CALL OR JAVA NOT SUPPORTED THAT :: OPERATORE } }

3 Answers  






Does java support multi dimensional arrays ?

6 Answers  


What is another word for methodology?

0 Answers  


What will be the output of round(3.7) and ceil(3.7)?

0 Answers  


What is a private class in java?

0 Answers  


How big is a gigabyte?

0 Answers  


What are the rules for variable declaration?

0 Answers  


What is the difference between notify and notifyall method?

0 Answers  


Categories