What is the primitive type byte?


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

Post New Answer

More Core Java Interview Questions

What is %02d?

0 Answers  


What is lazy activation?

2 Answers   CMC,


What is the benefit of inner / nested classes ?

0 Answers  


Why multiple inheritance is not supported by java?

0 Answers  


What happens when I use / and % with a negative numerator?

0 Answers  






What is the properties class in java programming?

0 Answers  


What is casting in java programming?

0 Answers  


Explain the difference between string, stringbuffer and stringbuilder in java?

0 Answers  


How java enabled high performance?

0 Answers  


What is overriding in java?

0 Answers  


What is a instance variable?

0 Answers  


I declared main() method as private. But it still running and displaying the output. Please Answer it . Code Snippet as Below: import java.io.*; class over { private static void main(String[] args) { int high = Integer.MAX_VALUE; int overflow = high + 1; int low = Integer.MIN_VALUE; int underflow = low - 1; System.out.println(high + "\n" +overflow +"\n"+ low +"\n"+underflow); //System.out.println(overflow); //System.out.println(low); //System.out.println(underflow); } }

4 Answers   Cap Gemini,


Categories