CLF-C02 Cloud Technology and Services Practice Question
Which AWS service provides a managed graph database for use cases like social networks, recommendation engines, and fraud detection?
⚠ Common exam trap
Many candidates confuse Amazon DynamoDB (a NoSQL database) with graph databases because both are non-relational, but DynamoDB lacks native graph traversal capabilities and is unsuitable for relationship-heavy queries like those in social networks or fraud detection.
Answer choices
Why each option matters
Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.
Correct answer & explanation
✓
Amazon Neptune
Amazon Neptune is a fully managed graph database service optimized for storing and querying highly connected datasets. It supports both property graph (using Apache TinkerPop Gremlin) and RDF (using SPARQL) models, making it ideal for use cases like social networks, recommendation engines, and fraud detection that require traversing complex relationships.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
- ✗
Amazon DynamoDB
Why it's wrong here
DynamoDB is a NoSQL key-value and document database where data is accessed primarily by partition key or secondary indexes. While you can store entities and explicitly store edge/adjacency information, traversing relationships across multiple hops requires application-side fan-out queries and client-side joins, which do not scale well. It has no graph query engine or graph-aware query optimizer, so it is not suitable for deep relationship traversal.
- ✓
Amazon Neptune
Why this is correct
Amazon Neptune is a purpose-built graph database engine that stores relationships as first-class citizens and executes traversals natively. It supports multiple graph models and query languages: property graph via Gremlin and openCypher, and RDF via SPARQL. The storage and query planner are optimized for pattern matching and multi-hop traversal, giving it orders-of-magnitude better performance than a non-graph database for connected-data queries.
- ✗
Amazon RDS
Why it's wrong here
Amazon RDS provides relational databases that excel at transactions and structured querying, but graph-style traversal is simulated via recursive common table expressions or repeated self-joins. These approaches require the database to discover and join results at query time, and query plans get dramatically slower as graph depth or breadth increases. RDS also lacks a graph-specific query language and graph-aware indexing, making it an unoptimized fit for graph workloads.
- ✗
Amazon Redshift
Why it's wrong here
Amazon Redshift is a petabyte-scale columnar data warehouse optimized for analytical scans and aggregations on huge volumes of structured data. Although you could store node and edge tables and perform joins to approximate graph relationships, Redshift's distributed execution model is built for set-based reporting, not for iterative, hop-by-hop graph traversal. Real-time or deeply recursive relationship queries are therefore against its design purpose.
Go deeper
Related to this question
About these practice questions
One of 988 original CLF-C02 practice questions on Courseiva, each with a full explanation and wrong-answer analysis — not exam dumps or protected exam content. Learn why practice questions differ from exam dumps →
JA
Written by Johnson Ajibi, MSc IT Security
Senior Network & Security Engineer · founder of Courseiva
This CLF-C02 practice question is part of Courseiva's free Amazon Web Services certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the CLF-C02 exam.