The correct answer is Select, where, group by, having.
Additional Information
Six Operations to Order: SELECT, FROM, WHERE, GROUP BY, HAVING, and ORDER BY. Because the database executes query components in a specific order,
SELECT select_list [ INTO new_table ] [ FROM table_source ]
[ WHERE search_condition ]
[ GROUP BY group_by_expression ]
[ HAVING search_condition ]
[ ORDER BY order_expression [ ASC | DESC ] ]
Hence Option 4 is correct

