What is oops in java?
No Answer is Posted For this Question
Be the First to Post Answer
What does ide stand for?
Explain about the select method with an example?
How does a try statement determine which catch clause should be used to handle an exception?
Why pointers are not used in java?
What is a functional interface?
How to perform linear search in java?
Why java is not a pure object oriented language?
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); } }
Is ResultSet class?
5 Answers Bally Technologies, TCS,
what is mean by overriding in which situation we wil use?
5 Answers Atlas Systems, CSC, DCPL,
what is the Diff. between Access Specifiers and Access Modifiers?
39 Answers BMC, Cyber Shot, Infosys, VTS, Wipro,
Is it possible to create object with out its default constructor? if possible how? else not possible? justify