what is the meaning of java that is (J A V A) full form of
JAVA
Answer Posted / 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 |
Post New Answer View All Answers
A text file that contains declarations used by a group of functions,programs,or users a) executable file b) header file c) obj file d) .cfile
What does the error message "DGROUP exceeds 64K" mean?
What is identifier in c?
What are the back slash character constants or escape sequence charactersavailable in c?
What is c token?
how to construct a simulator keeping the logical boolean gates in c
How to write a multi-statement macro?
FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.
What are the advantages of using new operator as compared to the function malloc ()?
What is assignment operator?
What is indirection? How many levels of pointers can you have?
What is the total generic pointer type?
What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }
What is an auto variable in c?
What is abstract data structure in c?