How to force MySQL full scan a table

Multiple choice question

How can you force MySQL to full scan a table (meaning force MySQL to ignore all indexes and choose to full scan the table in order to execute the given query)?

correct

FORCE INDEX () with empty parenthesis

wrong

IGNORE INDEX () with empty parenthesis

wrong

FORCE ALL

wrong

IGNORE ALL