CBSE Class 10 Computer Applications Question 22 of 56

Forms and Frames — Question 1

Back to all questions
1
Question

Question 1

What do you understand by the Method attribute? Differentiate between the Get method and the Post method.

Answer

The Method attribute specifies that the form information should be posted to the URL given in the action attribute. Possible values are GET and POST.

Differences between the Get method and the Post method are:

S.
No.
Get MethodPost Method
1.Form data is sent as part of URL.Form data is sent as part of request body.
2.Less data can be sent compared to Post method.More data can be sent compared to Get method.
3.Less secure.More secure.
4.Can be bookmarked.Cannot be bookmarked.