Posts

Showing posts with the label SERVLET IN JAVA

Featured post

-Write C program to find even and odd number using macro

-Write C program to find even and odd number using macro #include<stdio.h> #define number(n)((n%2==0)?1:0) int main() { int num; printf("enter any number"); scanf("%d",&num); if(number(num)) printf("number is even"); else printf("number is odd"); return 0; } ***************************Output*********************** amr@amrj-virtual-machine:~$ gccevenodd.c amr@samr-virtual-machine:~$ ./a.out enter any number 2 number is evensmj@amr-virtual-machine:~$

SERVLET IN JAVA

Image
                                          *********SERVLET IN JAVA************* -           Servlet  technology is used to create a web application (resides at server side and                               generates a dynamic web page). -           What is a Servlet? -           Servlet is a technology which is used to create a web application. -           Servlet is an API that provides many interfaces and classes including                                         docu...