Code Correction: The following code is supposed to filter a…

Code Correction: The following code is supposed to filter a DataFrame to show only rows where salary is greater than 50000 and department is ‘Sales’, but it has errors. Identify and fix ALL the errors. filtered = df[df[‘salary’] > 50000 and df[‘department’] == ‘Sales’] print(filtered) Write the corrected code below: