what is the meaning of java that is (J A V A) full form of
JAVA
Answer Posted / 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 |
Post New Answer View All Answers
What do you mean by Recursion Function?
What is the purpose of ftell?
What are the advantages of external class?
You have given 2 array. You need to find whether they will
create the same BST or not.
For example:
Array1:10 5 20 15 30
Array2:10 20 15 30 5
Result: True
Array1:10 5 20 15 30
Array2:10 15 20 30 5
Result: False
One Approach is Pretty Clear by creating BST O(nlogn) then
checking two tree for identical O(N) overall O(nlogn) ..we
need there exist O(N) Time & O(1) Space also without extra
space .Algorithm ??
DevoCoder
guest
Posted 3 months ago #
#define true 1
#define false 0
int check(int a1[],int a2[],int n1,int n2)
{
int i;
//n1 size of array a1[] and n2 size of a2[]
if(n1!=n2) return false;
//n1 and n2 must be same
for(i=0;i
Explain is it valid to address one element beyond the end of an array?
int i=3; this declaration tells the C compiler to a) reserve space in memory to hold the integer value b) associate the name i with this memory location c) store the value 3 at this location d) all the above
When should the register modifier be used? Does it really help?
What is void main () in c?
What is character set?
please give me a VIRTUSA sample palcement papers.... you will only send TECHNICAL SECTION..... that is help for me Advance Thanks........................
Is there any demerits of using pointer?
What is the default value of local and global variables in c?
What are the keywords in c?
Can a local variable be volatile in c?
How many bytes is a struct in c?