what is the meaning of java that is (J A V A) full form of
JAVA
Answer Posted / ashok
Junction Actually Virtual Application
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
What is the difference between the local variable and global variable in c?
Create a registration form application by taking the details like username, address, phone number, email with password and confirm password (should be same as password).Ensure that the password is of 8 characters with only numbers and alphabets. Take such details for 3 users and display the details. While taking input password must appear as “****”.
Explain how do I determine whether a character is numeric, alphabetic, and so on?
Can a variable be both static and volatile in c?
How to check whether string is a palindrome, WITHOUT USING STRING FUNCTIONS?
HOW TO SOLVE A NUMERICAL OF LRU IN OS ??????
What are the characteristics of arrays in c?
which of the following is not a character constant a) 'thank you' b) 'enter values of p, n ,r' c) '23.56E-o3' d) all of the above
What is the difference between malloc() and calloc() function in c language?
Where are some collections of useful code fragments and examples?
Why we use break in c?
int i=10; printf("%d %d %d", i, i=20, i);
Why do we write return 0 in c?
What are the advantage of c language?
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer