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 |
what is the difference between NULL('\0') and 0?
What is the difference between call by value and call by reference in c?
Explain Function Pointer?
How can I change their mode to binary?
What are local variables c?
what is use of loop?
What does sizeof int return?
hello freinds next week my interview in reliance,nybody has an idea about it intervew questions..so tell
what is an inline fuction??
void main() { int a=1; printf("%d %d %d",a,++a,a++); } the output is supposed to be 1 2 2....but it is 3 3 1 this is due to calling conventions of C. if anyone can explain me how it happens?
consider the following C code main() { int i=3,x; while(i>0) { x=func(i); i--; } int func(int n) { static sum=0; sum=sum+n; return(sum); } the final value of x is
what is the code for getting the output as * ** ***