Q7Multiple correct3 Marks18 Dec 2025
employees is a list of tuples. Each tuple is of the form (name, salary). Select all snippets of code that create a list high_earners that contains the names of employees whose salary is above 70,000. A sample list employees and the expected output is given below. You can assume that employees is already available to you.
```
Sample Input:
employees = [('Alice', 75000), ('Bob', 64000), ('Charlie', 82000), ('Diana', 71000), ('Eve', 69000)]
Sample Output:
['Alice', 'Charlie', 'Diana']
```