what is java

Answers were Sorted based on User's Feedback



what is java..

Answer / pushpa

"Java" generally refers to a combination of three things:
the Java programming language (a high-level, object-oriented
programming language); the Java Virtual Machine (a
high-performance virtual machine that executes bytecodes on
a specific computing platform, typically abbreviated JVM);
and the Java platform, a JVM running compiled Java
bytecodes, usually calling on a set of standard libraries
such as those provided by Java Standard Edition (SE) or
Enterprise Edition (EE). Though coupled by design, the
language does not imply the JVM, and vice versa.

Is This Answer Correct ?    14 Yes 1 No

what is java..

Answer / ch jagan

Java is a object oriented programming also technical
language used to develop distributed applications developed
by sun micro systems.

Is This Answer Correct ?    2 Yes 0 No

what is java..

Answer / santosh kumar

Java is a programming as well as technical language used to develop distributed applications developed by sun micro systems.

Is This Answer Correct ?    1 Yes 0 No

Post New Answer

More Core Java Interview Questions

How do you start a thread?

0 Answers  


Why spring singleton is not thread safe?

0 Answers  


What is final method in java?

0 Answers  


What is the return type of readLine() when end of a file is reached?

2 Answers  


What is mysql driver class name?

0 Answers  






Explain the difference between the public, private, final, protected, and default modifiers?

0 Answers  


What is the GregorianCalendar class?

2 Answers   HCL,


How do you generate random numbers in java?

0 Answers  


What is a memory leak in java?

0 Answers  


What is a layout manager and what are different types of layout managers available in java awt?

0 Answers  


how can we import the user defined package without classpath?

1 Answers   CSC, Infosys,


Is it possible to write JAVA program without including any of the packages,such as "import java.io.*"; bcoz I instantly wrote a code without "import..." statement and runned the program on command Line & it worked. the code is: class Person { String name; int age; Person(String s,int a) { name = s; age = a; } accept() { System.out.println(name+"Hi!!!!!"); System.out.println(age); } } class Demo { public static void main(Strings args[])throws IOException { String name = args[0]; int age = Integer.parseInt(args[1]); Person p = new Person(name,age); p.accept(); } }

3 Answers  


Categories