Multiple choice technology security

The correct way to disable autocomplete in the browser for certain forms is to ….

  1. Set autocomplete to “0”

  2. Set autocomplete to “Off”

  3. Set autocomplete to some other value

  4. Set autocomplete to “no-store”

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

The correct HTML attribute to disable browser autocomplete for forms is autocomplete="Off". This prevents browsers from automatically filling sensitive form fields like passwords or credit card numbers. Values like "0", "no-store", or other strings don't properly disable the feature across all browsers.