jseely683 jseely683 27-02-2024 Computers and Technology contestada The following two queries are equivalent. SELECT AVG(salary) FROM instructor; SELECT SUM(salary)/COUNT(salary) FROM instructor; A) True B) False