A column `score` has values 10, 20, NULL, 30. What do `COUNT(score)` and `AVG(score)` return?SELECT COUNT(score), AVG(score) FROM t; -- score values: 10, 20, NULL, 30