what is the meaning of java that is (J A V A) full form of
JAVA
Answer Posted / vemuri.v.n.sandeep kumar
JAVA MEANS TO DEVELOP OR GIVE MORE POWERS TO AN APPLICATION WHICH IS ALREADY BUILD OR GOING TO BUILD APP
THE FULL FORM OF JAVA IS
J--- JUST
A--- ANOTHER
V--- VIRTUALIZATION
A--- APP
| Is This Answer Correct ? | 4 Yes | 1 No |
Post New Answer View All Answers
Combinations of fibanocci prime series
What is a pointer on a pointer in c programming language?
Explain how many levels deep can include files be nested?
What is keyword in c?
Explain the difference between structs and unions in c?
What is scanf_s in c?
Write a program to input the price of 1 burger and the number of burgers eaten by a group of friends .print the total amount to be paid by the group?
What is variable and explain rules to declare variable in c?
How do I read the arrow keys? What about function keys?
Do pointers store the address of value or the actual value of a variable?
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
Explain high-order bytes.
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
How many levels of pointers can you have?
Where is volatile variable stored?