5 - forms\nlearning objective: differentiate between the correct usage of forms and control types.\nwhen…

5 - forms\nlearning objective: differentiate between the correct usage of forms and control types.\nwhen signing up for a new account with an e - commerce store you may be required to create a username and password.\nwhat method should be used for the sign - up web form?\na.) https method\nb.) get method\nc.) http method\nd.) post method
Answer
Brief Explanations:
When signing - up for an account, sensitive information like username and password is involved. The POST method is used for sending data to the server in a more secure way compared to GET, and HTTPS is a protocol, not a form - submission method. HTTP is not secure for sending sensitive data.
Answer:
d. POST method