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 / jaya prakash.b
JAVA means "Just Another Virtual Architecture "
| Is This Answer Correct ? | 0 Yes | 2 No |
Answer / jagadeesh
JAVA FULL FORM IS " JUST ANOTHER VIRTUAL APPROACH "
| Is This Answer Correct ? | 7 Yes | 10 No |
Answer / revathyumavanitha
justifycomputer architecture for virtual application
| Is This Answer Correct ? | 1 Yes | 4 No |
Answer / praveeen
There is no full form for java as it is the language of people who based in Indonesia, its difficult to understand, but as we all know its a programming language.Java is the word derived from Indonesian language.That's it, No full form for JAVA.
| Is This Answer Correct ? | 0 Yes | 3 No |
Answer / venkatesh
Hi This Is venkatesh from dindigul...
JAVA - JUST ANOTHER VIRTUAL ANALYZER
It is the Expansion of JAVA........
With out fail Keep it on your Mind..
| Is This Answer Correct ? | 0 Yes | 3 No |
The postoder traversal is 7,14,3,55,22,5,17 Then ur Inorder traversal is??? please help me on this
How can I get the current date or time of day in a c program?
How can I open a file so that other programs can update it at the same time?
what will be the result of the following program ? char *gxxx() { static char xxx[1024]; return xxx; } main() { char *g="string"; strcpy(gxxx(),g); g = gxxx(); strcpy(g,"oldstring"); printf("The string is : %s",gxxx()); } a) The string is : string b) The string is :Oldstring c) Run time error/Core dump d) Syntax error during compilation e) None of these
What is the difference between getch() and getche()?
How can I find out how much free space is available on disk?
What are the different types of linkage exist in c?
Write a C Program to display the following menu: Menu 1. Display 2. Copy 3. Append 4. Exit Accept the choice (1-4) from the user, and perform the following tasks: Choice 1: Accept a file name from the user and display the file on screen Choice 2: Accept two file names, and copy first file to the second Choice 3: Accept two file names, and append second file to the first file Choice 4: Terminate the program
1 Answers Accenture, Concor, DMU, Satyam, Syntel, Tora,
Is c is a high level language?
what is software?
I want tcs placement papers of 2004-2009 , its urgent
main() { int *ptr=(int*)malloc(sizeof(int)); *ptr=4; printf("%d",(*ptr)+++*ptr++); }