What is emant by API?
is it related to java only or it is common for all OOPS
supporting language?
Answers were Sorted based on User's Feedback
Answer / abcd
API: Application Progammable Interface.
An interface used to work with the application objects.
API 's are platfiorm specific. Sun MicroSystems has its own
API package specified for the jdk x.x
Microsoft wil have its own API....If you are using the
java ..then java based API..will support all the OOPS by
default.
| Is This Answer Correct ? | 0 Yes | 1 No |
What are the rules for naming an array?
Difference between String and StringBuffer.
which method is used to know the status of the Thread?
What is the output of the following Java program? class Main { public static void main(String args[]){ final int i; i = 10; System.out.println(i); } } 10. What is the output of the following Java program? class Main { public static void main(String args[]){ final int i; i = 10; System.out.println(i); } }
What class of exceptions are generated by the java run-time system?
Can I override protected method in java?
What does it mean to flush a file?
What is difference between synchronize and concurrent collection in java?
What is methods and methodology?
what ide u r using and wat version, how wil u build the project etc ?
There are 2 classes, 1 LandAnimal and another WaterAnimal. There is another class Animal which wants to have the properties of both LandAnimal and WaterAnimal. How will you design this situation?
Why Java doesn’t support multiple inheritance?