Answer:
Check the explanation
Step-by-step explanation:
Ans 1) storing the data in one single row comes with its own barriers and that is if you delete one of the record in the spreadsheet, all the equivalent records which you didn't wanted to delete would be deleted. For take for instance, if you wish to delete the record of author "James Taylor" then all the books he has written would also be deleted from the spreadsheet.
Ans 2) In 1NF, all row is expected to have only 1 tuple, but here in this spreadsheet the title field for Author "James Taylor" has 2 books, so it would be separated into single rows.
Ans 3) The table in the attached image below doesn't delete with Delete anomaly, i.e., for author "May Norton" if you delete this record, then the only book written by her would be deleted.
So, you have to convert this table into 2NF.
Make separate tables for Author and Book
Author(Author Name, Author Country)
Books(Author Name, Book title, Publisher, Publisher Location, Year, price)
This cannot be normalized any further.