Report Bug
Qus : When form data contains sensitive information, then which method should be used?
Qusजब फ्रॉममें संवेदनशील जानकारी हो, तो किस विधि का उपयोग किया जाना चाहिए?

A. Get
B. Post
C. Put
D. Out


Solution
B. Post



Explanation

POST is secure method to send data from client to server whether GET method embed the data in URL which is visible to all and not secure.




Report Bug