what is the meaning of java that is (J A V A) full form of
JAVA
Answer Posted / prasenjit das
there is no meaning of JAVA. But technologically Java is a language or a written programme used to launch some interactive internet applications.
| Is This Answer Correct ? | 1 Yes | 3 No |
Post New Answer View All Answers
What are the features of c language?
Explain what is the heap?
What is return type in c?
Sir,please help me out with the code of this question. Write an interactive C program that will encode or decode multiple lines of text. Store the encoded text within a data file, so that it can be retrieved and decoded at any time. The program should include the following features: (a) Enter text from the keyboard, encode the text and store the encoded text in a data file. (b) Retrieve the encoded text and display it in its encoded form. (c) Retrieve the encoded text, decode it and then display the decoded text. (d) End the computation. Test the program using several lines of text of your choice.
Explain how does free() know explain how much memory to release?
What is pointer to pointer in c language?
Explain what is the difference between functions abs() and fabs()?
How will you delete a node in DLL?
What is wrong with this code?
Write a program to check palindrome number in c programming?
Can you think of a logic behind the game minesweeper.
Explain what is a program flowchart and explain how does it help in writing a program?
#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }
What is #error and use of it?
Can you add pointers together? Why would you?