Final answer:
The correct SQL statement to find publishers for books in the COMPUTER category involves an INNER JOIN between the PUBLISHER and BOOKS tables, filtering the category as 'COMPUTER'.
Step-by-step explanation:
The correct SQL statement to display the name of each publisher that publishes a book classified in the COMPUTER category is:
c) SELECT publisher_name FROM PUBLISHER INNER JOIN BOOKS ON PUBLISHER.publisher_id = BOOKS.publisher_id AND BOOKS.category = 'COMPUTER'
This statement uses an INNER JOIN to combine rows from PUBLISHER and BOOKS tables based on the condition that their publisher_id columns match. The WHERE clause filters the joined table to only include rows where the category column in the BOOKS table matches 'COMPUTER'. Therefore, it returns the names of the publishers associated with books in the COMPUTER category.