Create a Pseudocode using IF instruction containing a compound condition that will satisfy the following: when employeeCode is equal to MGR and SALARY is greater than 100,000 , display " The manager is eligible for a five percent bonus for the year". Otherwise, when employeeCode is equal to MGR and SALARY is greater than 250,000, display "The manager is eligible for a 10 percent bonus for the year. " In all the other cases, display "This person is not eligible for a bonus for the year." NOTE: You need to use the IF ELSE ENDIF clause in a pseudocode format with appropriate relational and logical operators.