what is the meaning of java that is (J A V A) full form of
JAVA
Answer Posted / ramesh
just analysis and virtual analytically
A high-level programming language developed by Sun Microsystems. Java was originally called OAK, and was designed for handheld devices and set-top boxes. Oak was unsuccessful so in 1995 Sun changed the name to Java and modified the language to take advantage of the burgeoning World Wide Web.
Java is an object-oriented language similar to C++, but simplified to eliminate language features that cause common programming errors. Java source code files (files with a .java extension) are compiled into a format called bytecode (files with a .class extension), which can then be executed by a Java interpreter. Compiled Java code can run on most computers because Java interpreters and runtime environments, known as Java Virtual Machines (VMs), exist for most operating systems, including UNIX, the Macintosh OS, and Windows. Bytecode can also be converted directly into machine language instructions by a just-in-time compiler (JIT).
Java is a general purpose programming language with a number of features that make the language well suited for use on the World Wide Web. Small Java applications are called Java applets and can be downloaded from a Web server and run on your computer by a Java-compatible Web browser, such as Netscape Navigator or Microsoft Internet Explorer.
| Is This Answer Correct ? | 6 Yes | 2 No |
Post New Answer View All Answers
How to get string length of given string in c?
What are linked lists in c?
What are local static variables? How can you use them?
Explain Basic concepts of C language?
Write a program to print all permutations of a given string.
What are variables and it what way is it different from constants?
Difference between Function to pointer and pointer to function
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.
What does 1f stand for?
What is class and object in c?
Differentiate between static and dynamic modeling.
Synonymous with pointer array a) character array b) ragged array c) multiple array d) none
Write a program to check prime number in c programming?
I have written a pro*C program to fetch data from the cursor. where in i have used the concept of BULK FETCH.... each FETCH statement is taking lots of time to fetch specified number of rows at...
What is meant by operator precedence?