what is the meaning of java that is (J A V A) full form of
JAVA
Answer Posted / nish
JUST ANOTHER VIRTUAL ARCHITECTURE
| Is This Answer Correct ? | 3 Yes | 3 No |
Post New Answer View All Answers
What is mean by Data Driven framework in QTP? Can any one answer me in details on this regard.
What are the advantage of c language?
Want to know how to write a C program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the total number of disk writes by MySQL.
What are global variables and explain how do you declare them?
Explain what is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?
Tell me when would you use a pointer to a function?
What does void main return?
Write a function which takes as parameters one regular expression(only ? and * are the special characters) and a string and returns whether the string matched the regular expression.
How many header files are in c?
Add Two Numbers Without Using the Addition Operator
What are enums in c?
What are valid operations on pointers?
a linearly ordered set of data elements that have the same structure and whose order is preserved in storage by using sequential allocation a) circular b) ordinary c) array d) linear list
Differentiate fundamental data types and derived data types in C.
main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }