LeetQuiz Logo
Privacy Policy•contact@leetquiz.com
© 2025 LeetQuiz All rights reserved.
AWS Certified Developer - Associate

AWS Certified Developer - Associate

Get started today

Ultimate access to all questions.


A gaming company is looking to store comprehensive information about all the games they have released. Each game has unique attributes such as a name, version number, and category (e.g., sports, puzzles, strategy, etc.). Additionally, the games may have various other properties related to supported platforms and technical specifications, which can vary widely among different games.

You have been hired as an AWS Certified Developer Associate to develop a solution that fulfills the following use cases:

  1. Retrieve all details about a game based on a specific name and version number.
  2. Retrieve all details about all versions of a game given its name.
  3. Retrieve all details about all games belonging to a specific category.

What solution would you recommend as the most efficient to meet these requirements?

Exam-Like



Explanation:

When you create a DynamoDB table, in addition to the table name, you must specify the primary key of the table. The primary key uniquely identifies each item in the table, so that no two items can have the same key. You can create one or more secondary indexes on a table. A secondary index lets you query the data in the table using an alternate key, in addition to queries against the primary key. DynamoDB doesn't require that you use indexes, but they give your applications more flexibility when querying your data.

Powered ByGPT-5