In your own words Compare Transmission Control Protocol TCP
     In your own words: Compare Transmission Control Protocol (TCP) and User Datagram Protocol (UDP). You should cover similarities, differences and advantages of each protocol?  There are a number of HTTP methods. Each HTTP request has to have a specific method. List and describe the three most common methods?    
 
  
  Solution
1.The difference between TCP and UDP :-
3.UDP is Fast.
2.The most 3 common methods of HTTP methods :-
a.GET method :-
* GET method can be used to get the information from the server.
b.POST method :-
* POST method can be used to post or send the information to the server.
c.HEAD method :-
* HEAD method can works same as GET method but it returns HTTP headers only.
| TCP | UDP | 
| 1.TCP stands for Transmission Control Protocol. | 1.UDP stands for User Datagram Protocol. | 
| 2.TCP is a connection-Oriented Protocol. | 2.UDP is a connectionless Protocol. | 
| 3.TCP is Slow. | 3.UDP is Fast. | 
| 4.TCP is Heavy-weight. | 4.UDP is Light-weight. | 
| 5.TCP is Reliable. | 5.UDP is Non-Reliable. | 

