Correct option is (d) UPDATE Persons SET LastName=’Nilsen’ WHERE LastName=’Hansen’
To elaborate: In its simplest form, the syntax for the UPDATE statement when updating one table is:UPDATE table SET column1 = expression1,column2 = expression2,… WHERE conditions.