Consider the followig query. Select name from class where subject like'_computer'; Which is the correct option
a) It will retrieve names of all students enrolled in computer-related classes.
b) It will retrieve names of students enrolled in a specific computer-related class.
c) It will retrieve names of students enrolled in any class with a subject that ends with "computer".
d) It will result in an error because the wildcard character '_' cannot be used in a LIKE pattern with a single character.