what are two categories of clint-server application
development ?
Answer Posted / mayank
There are two categories of clint-server application
development.
1)Applet: client side application
2)Servlet: server side application
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
what are bit fields? What is the use of bit fields in a structure declaration?
How many parameters should a function have?
Do pointers take up memory?
Why is not a pointer null after calling free? How unsafe is it to use (assign, compare) a pointer value after it is been freed?
Is file a keyword in c?
What is hash table in c?
How is = symbol different from == symbol in c programming?
the factorial of non-negative integer n is written n! and is defined as follows: n!=n*(n-1)*(n-2)........1(for values of n greater than or equal to 1 and n!=1(for n=0) Perform the following 1.write a c program that reads a non-negative integer and computes and prints its factorial. 2. write a C program that estimates the value of the mathematical constant e by using the formula: e=1+1/!+1/2!+1/3!+.... 3. write a c program the computes the value ex by using the formula ex=1+x/1!+xsquare/2!+xcube/3!+....
Given an array of 1s and 0s arrange the 1s together and 0s together in a single scan of the array. Optimize the boundary conditions?
What is the difference between new and malloc functions?
What is conio h in c?
Explain how do I determine whether a character is numeric, alphabetic, and so on?
What is the advantage of c?
What are inbuilt functions in c?
What is multidimensional arrays