what is the meaning of java that is (J A V A) full form of
JAVA
Answer Posted / neela azibha
java is an ooprogramming lang.it is an high level lang also,
i feel with the help of coffee seed they develope JAVA,the fullform of java is JAVANESE ARCHITECTURE VIRTUAL ACCELERATOR
| Is This Answer Correct ? | 10 Yes | 7 No |
Post New Answer View All Answers
what is stack , heap ,code segment,and data segment
What are types of structure?
Given below are three different ways to print the character for ASCII code 88. Which is the correct way1) char c = 88; cout << c << " ";2) cout.put(88);3) cout << char(88) << " "; a) 1 b) 2 c) 3 d) constant
Can main () be called recursively?
What is the equivalent code of the following statement in WHILE LOOP format?
how to find binary of number?
What kind of structure is a house?
What is the use of a semicolon (;) at the end of every program statement?
Where in memory are my variables stored?
Write programs for String Reversal & Palindrome check
What are pointers? What are stacks and queues?
pgm to find number of words starting with capital letters in a file(additional memory usage not allowed)(if a word starting with capital also next letter in word is capital cann't be counted twice)
.main() { char *p = "hello world!"; p[0] = 'H'; printf("%s",p); }
Write a program to print fibonacci series without using recursion?
Is it fine to write void main () or main () in c?