what are two categories of clint-server application
development ?



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

Post New Answer

More C Interview Questions

#include<stdio.h> #include<conio.h> struct stu { int i; char j; }; union uni { int i; char j; }; void main() { int j,k; clrscr(); struct stu s; j=sizeof(s); printf("%d",j); union uni u; k=sizeof(u); printf("%d",k); getch(); } what is value of j and k.

2 Answers   Facebook,


Write a C program where input is: "My name is xyz". output is: "xyz is name My".

1 Answers   TCS,


What are the similarities between c and c++?

0 Answers  


Write a program to produce the following output: 1 2 3 4 5 6 7 8 9 10

1 Answers   CMS,


Write a program to print distinct words in an input along with their count in input in decreasing order of their count..

1 Answers  






Find occurence of a character in a sting.

3 Answers   TCS,


extern static int i func() { i =10; i++; printf("%d \n",i); } main() { i =20; printf("%d \n",i); func(); printf("%d \n",i); }

2 Answers  


What is #include in c?

0 Answers  


what is a stack

3 Answers  


which one of follwoing will read a character from keyboard and store in c a)c=getc() b)c=getchar() c)c=getchar(stdin) d)getc(&c) e)none

7 Answers   Trident,


what is the difference between. system call and library function?

2 Answers   CDAC, Satyam,


Program to find the sum of digits of a given number until the sum becomes a single digit

8 Answers   InterGraph,


Categories