Why is HTTP protocol called as a stateless protocol?

Why is HTTP protocol called as a stateless protocol?

HTTP is called a stateless protocol because in this each command is executed independently, without any knowledge of the commands that came before it. It is the protocol used for the web. It is Hyper Text Transfer Protocol. It is based on a request paradigm. In this protocol the communication generally takes place over a TCP/IP protocol. Http Request method are:

1. GET
2. POST
3. HEAD
4. TRACE
5. DELETE
6. OPTIONS
7. PUT
Relation between class and object
Class and object - A class defines the properties and behavior for the objects represented by the abstraction. Abstraction is a property of object oriented programming...
Difference between throw and throws clause
Throw and throws clause - A program can throw an exception, using throw statement. When an exception is thrown, normal execution is suspended...
Tomcat in java and its usage
Tomcat in java and its usage - Tomcat is an open source servlet container. It was developed by Apache Software Foundation. It is commonly known as Apache Tomcat. It is a web server for the processing of JSP and Java Servlets. When a programmer makes web applications by using servlets or JSP then a .war file is made by compressing the application folder...
Post your comment