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 / ankit kumar gupta
java is veray important constraction.
| Is This Answer Correct ? | 2 Yes | 2 No |
Answer / srikanth kothakonda
java is an object oriented programming language . invented by james gosling
| Is This Answer Correct ? | 1 Yes | 1 No |
Answer / uma
java is fully object oriented language and it is platform independent but somebody says that java is a coffee seed.If you know the correct answer please post your answer.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / vbdwivedi
It's name come from Java Coffee which is a coffee bean produced in the Java islands of Indonesia.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / dheeraj soorma
JAVA is pure object oriented language that name preferred from coffees seed .no full form of java because it is not an abbreviation
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / kunal singh
java is not just a name it's an acronym of just a virtual accelerator, which is too derived from an old coffee shop that they just went to had a sip of coffee, and they decided to name it as java...............................that's all for today and thanks for being a patient listener.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / narayana swamy
Java has no full form because as coffee is the inspiration for this language name,also you can see the logo of java is cup ,plate and steam.apparently gosling got inspired by coffee named java
Then java is
J = James gosling
A = Arthur
V = van hoff
A = Andy bechtolsheim
😊
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / saroj
java is Object oriented programming language which is develop by James Gosling at Sun Microsystems. There is no full form of java.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / mr.p dude
java could also be interpreted as the names of the creators:
J ames Gosling
A rthur
V on Hoff
A ndy Bechtolstein
| Is This Answer Correct ? | 0 Yes | 0 No |
Write a program for print infinite numbers
What is difference between static and global variable in c?
what is default constructor?
whether itis a structured language?
What is the difference between pure virtual function and virtual function?
Lists the benefits of c programming language?
dennis ritchie invented C language in AT&T bell laboratory what is the extension of AT&T?
Differentiate between #include<...> and #include '...'
int j =15,i; for (i=1; 1<5; ++i) {printf ("%d%d ",j,i); j = j-3; }
A variable that is defined in a specified portion of a program but can be used throughout the program a) global variable b) local variable c) character d) none
Convert the following expression to postfix and prefix (A+B) * (D-C)
.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }