I came across a ocwcd question as follows:
<form action="sendOrder.jsp">
<input type="text" name="creditCard">
<input type="text" name="expirationDate">
<input type="submit"/>
</form>
considering the above piece of code question is : when creating a web form with this HTML which HTTP method is used when sending this request from the browser?
Options were given as below:
A. GET
B. PUT
C. POST
D. SEND
E. FORM
In my view ans will be C.POST.but answer is given as A.GET
Can anyone provide any explanation to this???or is it a typo error in solution sheet?