what is the meaning of java that is (J A V A) full form of
JAVA
Answers were Sorted based on User's Feedback
Answer / jacob
JAVA full form is Just Another Virtual Language :)
| Is This Answer Correct ? | 15 Yes | 7 No |
Answer / kannammai ramaiah
JAVA is a name of coffee seed.James Gosling and his crew
members drank coffee at the time of thinking name for the
programming language written by them.Finally they decided to
keep the name of the coffee which contains the coffee seed
JAVA drunken by them as the name of the programming language
developed by them
| Is This Answer Correct ? | 6 Yes | 2 No |
Answer / 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 |
Answer / kodeeswaran
Java means just another virtual application
| Is This Answer Correct ? | 6 Yes | 2 No |
Answer / neela azibha
java is an ooprogramming lang.it is an high level lang also,
i feel with the help of coffee seed they develope JAVA,the fullform of java is JAVANESE ARCHITECTURE VIRTUAL ACCELERATOR
| Is This Answer Correct ? | 10 Yes | 7 No |
Answer / vemuri.v.n.sandeep kumar
JAVA MEANS TO DEVELOP OR GIVE MORE POWERS TO AN APPLICATION WHICH IS ALREADY BUILD OR GOING TO BUILD APP
THE FULL FORM OF JAVA IS
J--- JUST
A--- ANOTHER
V--- VIRTUALIZATION
A--- APP
| Is This Answer Correct ? | 4 Yes | 1 No |
Answer / vinod designer
Naturally Java is a seed of coffee.
But technologically Java is a language or a written programme used to launch some interactive internet applications.
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / atindra nath ojha
The full form i feels is JAVANESE ARCHITECTURE VIRTUAL ACCELERATOR
| Is This Answer Correct ? | 81 Yes | 79 No |
Answer / yogesh sharma
javanese architecture virual accelerator
| Is This Answer Correct ? | 41 Yes | 39 No |
What is equivalent to ++i+++j?
6)swap(int x,y) { int temp; temp=x; x=y; y=temp; } main() { int x=2;y=3; swap(x,y); } after calling swap ,what are yhe values x&y?
If a five digit number is input through the keyboard, write a program to print a new number by adding one to each of its digits.For example if the number that is input is 12391 then the output should be displayed as 23402
f() { int a=2; f1(a++); } f1(int c) { printf("%d", c); } c=?
Find the O/p of the following struct node { char *name; int num; }; int main() { struct node s1={"Harry",1331}; struct node s2=s1; if(s1==s2) printf("Same"); else printf("Diff"); }
Write a program to exchange two variaables without temp
What is the best way to store flag values in a program?
Write a program to print factorial of given number without using recursion?
Which of the Following will define a type NODE that is a node in a Linked list? A)struct node {NODE*next;int x;};type def struct node NODE; B)typedef struct NODE {struct NODE *next;int x;}; C)typedef struct NODE {NODE *next;int x;}; D)typedef struct {NODE *next;int x;}NODE;
write a C program, given number is double without using addt ion and multiplication operator?ex:n=6,ans=12,pls send me ans to goviseenu@gmail.com
write a program to check whether a given integer is a strong number or not? [Hint: 145=1!+4!+5! =1+24+120 =145]
a single linked list consists of nodes a to z .print the nodes in reverse order from z to a using recursion