what are two categories of clint-server application
development ?
Answer / 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 |
what is the use of using linked list and array?
int i =10 main() { int i =20,n; for(n=0;n<=i;) { int i=10 i++; } printf("%d", i);
What is dynamic dispatch in c++?
Where local variables are stored in c?
Explain void pointer?
Why is this loop always executing once?
Why is struct padding needed?
Write a code to remove duplicates in a string.
Write a function that will take in a phone number and output all possible alphabetical combinations
There is a 100-story building and you are given two eggs. The eggs (and the building) have an interesting property that if you throw the egg from a floor number less than X, it will not break. And it will always brake if the floor number is equal or greater than X. Assuming that you can reuse the eggs which didn't broke; you got to find X in a minimal number of throws. Give an algorithm to find X in minimal number of throws.
What are c header files?
can v write main() { main(); } Is it true?