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 / ajith
Just Analysis Virtual Architecture........JAVA this is correct answer
| Is This Answer Correct ? | 1 Yes | 2 No |
Answer / rudresh
java doesn't have acronym...its just a symbol of cofee cup....
| Is This Answer Correct ? | 0 Yes | 1 No |
Answer / ashok kumar sahoo
Junction Actually Virtual Application.
| Is This Answer Correct ? | 1 Yes | 3 No |
Answer / prasenjit das
there is no meaning of JAVA. But technologically Java is a language or a written programme used to launch some interactive internet applications.
| Is This Answer Correct ? | 1 Yes | 3 No |
Answer / neela azibha
java is an programming language,very easy to learn in my knowledge java fullform is JAVANESE ARCHITECTURE VIRTUAL ACCELERATOR.
| Is This Answer Correct ? | 0 Yes | 2 No |
Answer / vijay rahul
java stand for.. JUST ANOTHER VIRTUAL ACCELATOR..\
THIS USE FOR BULDING THE APPLICATION..
| Is This Answer Correct ? | 0 Yes | 2 No |
Explain this code. #include <stdio.h> void f1(int *k) { *k = *k + 10; } main ( ){ int i; i = 0; printf (" The value of i before call %d \n", i); f1 (&i); printf (" The value of i after call %d \n", i); }
I have a function which accepts a pointer to an int. How can I pass a constant like 5 to it?
a program that can input number of records and can view it again the record
main() { int i = 10; printf(" %d %d %d \n", ++i, i++, ++i); }
What is file in c preprocessor?
Write a program to add the following ¼+2/4+3/4+5/3+6/3+... (Like up to any 12 no.s)
What are qualifiers and modifiers c?
out put of printf(ā%dā,printf(ram));
what is use of loop?
How to write a program to receive an integer & find its octal equivalent by using for loop?
What are the usage of pointer in c?
What is an lvalue and an rvalue?