Here are 3 questions with their corresponding SQL queries using the hospital database:
1. Display the IDs of doctors that do not receive annual bonuses.
SELECT doc_id FROM doctor WHERE annual_bonus IS NULL;
2. Display doctor names whose names start with 'J' or end with 'n'.
SELECT doc_name FROM doctor WHERE doc_name LIKE 'J%' OR doc_name LIKE '%n';
3. Display doctor IDs whose annual bonus is less than 2000 or greater than 4000.
SELECT doc_id FROM doctor WHERE annual_bonus < 2000 OR annual_bonus > 4000;