You want to create a settings page that saves a user preference 'display_mode'. Which sequence correctly saves and retrieves this setting?
AUse add_option('display_mode', value), then register_setting(), then get_option('display_mode')
BUse register_setting(), then update_option('display_mode', value), then get_option('display_mode')
CUse get_option('display_mode'), then update_option('display_mode', value), then register_setting()
DUse update_option('display_mode', value), then add_option('display_mode', value), then get_option('display_mode')