Question 236:
You’re currently working with a table in DynamoDB. Your program has inserted several rows in the table. You now need to read the data from the table and only retrieve certain attributes in the query. Which of the following would you use for this purpose?
Answer options:
A.The scan operation only since only this supports the filtering of certain attributes. B.The query operation only since only this supports the filtering of certain attributes. C.Use the Projection Expression. D.Use the Index name.