What is meant by Java ?
Answers were Sorted based on User's Feedback
Answer / sasirekha
Java is Object Orieted Programming Language developed by Sun
Microsystem (U.S.A).It Is Platform Independent Language.It
Is Simple Secure Robust Compiled & InterPreted Language.
Is This Answer Correct ? | 6 Yes | 2 No |
Which is bigger double or float?
How java enabled high performance?
What is the major drawback of internal iteration over external iteration?
What are the two ways in which thread can be created?
What is a variable analysis?
What are locale settings?
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 } }
What is the difference between a switch statement and an if statement?
What is meant by data hiding in java?
What is lifetime variable?
How do generics work?
whats is inheritance?
15 Answers CTS, HCL,