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 |
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }
What is the stack in c?
How to throw some light on the b tree?
. Consider the following program main() { int a[5]={1,3,6,7,0}; int *b; b=&a[2]; } The value of b[-1] is (A) 1 (B) 3 (C) -6 (D) none
What are the different types of storage classes in C?
Why is sizeof () an operator and not a function?
void main() { static int i = 5; if(--i) { main(); printf("%d ",i); } } what would be output of the above program and justify your answer? }
5 Answers C DAC, CDAC, Infosys, Wipro,
Write a program to find the number of times that a given word(i.e. a short string) occurs in a sentence (i.e. a long string!). Read data from standard input. The first line is a single word, which is followed by general text on the second line. Read both up to a newline character, and insert a terminating null before processing. Typical output should be: The word is "the". The sentence is "the cat sat on the mat". The word occurs 2 times.
Is null a keyword in c?
Why static variable is used in c?
Once I have used freopen, how can I get the original stdout (or stdin) back?
What is the difference between File pointer and Internal Charecter Pointer?