What would you expect to get from PDOStatement::fetch() in its default mode?
An array containing both associative and enumerated keys
Correct:
An array containing both associative and enumerated keys
The other answers are all things you could obtain using different fetch modes in PHP, but the default is PDO_FETCH_BOTH . You can pass the fetch mode, but it isn't required.