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 HTML autocomplete attribute accepts 'on' and 'off' as valid values. Setting autocomplete='off' disables the browser's autocomplete feature for that form field, preventing sensitive information from being stored. Values like '0' or 'no-store' are not standard HTML attributes for this purpose.