Browse Certification Practice Tests by Exam Family

Confluent CCAAK Sample Questions & Practice Test

Try 12 Confluent CCAAK sample questions, review Kafka administration, cluster operations, security, monitoring, reliability, capacity, and Confluent management scope, and request an IT Mastery practice update.

Confluent Certified Administrator for Apache Kafka (CCAAK) focuses on practical Kafka operations, including broker configuration, cluster health, replication, security, and safe production changes.

Full app-backed IT Mastery practice for CCAAK is still being prioritized. Use this page to review the exam snapshot, topic coverage, and related live IT practice options.

Who CCAAK is for

  • Kafka administrators responsible for brokers, topics, replication, security, and cluster maintenance
  • engineers who need sharper operational judgment around safe config changes, rolling updates, and failure handling
  • candidates moving from Kafka development basics into platform ownership and production support

CCAAK exam snapshot

  • Vendor: Confluent
  • Official exam name: Confluent Certified Administrator for Apache Kafka
  • Exam code: CCAAK
  • Focus: Kafka operations, durability, availability, security, and cluster troubleshooting
  • Question style: scenario-based infrastructure and operational judgment

CCAAK questions usually reward the option that protects cluster stability, applies changes safely, and verifies results instead of reaching for a fast but risky operational shortcut.

Topic coverage for CCAAK practice

  • Kafka architecture: brokers, controllers, partitions, replication, ISR, and failure behavior
  • Configuration and operations: broker settings, topic choices, rolling changes, and safe cluster maintenance
  • Security: TLS, SASL, ACLs, least privilege, and authentication vs authorization boundaries
  • Troubleshooting: lag, under-replicated partitions, offline partitions, controller churn, and resource pressure
  • Platform awareness: Schema Registry, Connect, Control Center, and their operational impact

Sample Exam Questions

Try these 12 original sample questions for Confluent Certified Administrator for Apache Kafka. They are designed for self-assessment and are not official exam questions.

Question 1

What this tests: replication durability

A critical topic uses replication factor 3. The team wants producers to receive success only after more than one replica has the record. Which configuration direction best supports that goal?

  • A. Set retention to zero so old records are removed faster
  • B. Use acks=all with a suitable minimum in-sync replica setting
  • C. Reduce the topic to one partition
  • D. Disable broker logs during production hours

Best answer: B

Explanation: For durability-sensitive topics, producers should wait for all required in-sync replicas before acknowledging writes. A suitable minimum in-sync replica setting prevents a leader from accepting writes when too few replicas can confirm them.


Question 2

What this tests: under-replicated partitions

Monitoring shows under-replicated partitions after a broker becomes overloaded. What is the best first operational response?

  • A. Identify the affected broker, check disk, network, CPU, and replica fetch lag before changing topic settings
  • B. Delete the topic and recreate it with the same name
  • C. Lower replication factor on all critical topics
  • D. Restart every client application immediately

Best answer: A

Explanation: Under-replication is a cluster health symptom. Administrators should find the constrained broker or resource, confirm replica lag and ISR behavior, and fix the underlying pressure before making risky topic-wide changes.


Question 3

What this tests: rolling broker maintenance

A broker configuration change requires restarts across a production cluster. Which approach best protects availability?

  • A. Restart all brokers at the same time to finish quickly
  • B. Stop producers until every broker has restarted
  • C. Delete consumer offsets before the maintenance window
  • D. Restart brokers one at a time while verifying cluster health between restarts

Best answer: D

Explanation: Rolling maintenance limits blast radius. Verifying leadership, ISR health, controller stability, and client errors between restarts helps avoid turning a safe change into a full cluster outage.


Question 4

What this tests: topic retention

A topic contains operational audit events that must remain available for 30 days, even if consumers are slow. Which setting is most relevant?

  • A. Producer compression type only
  • B. Consumer group name only
  • C. Time-based retention for the topic
  • D. Broker rack label only

Best answer: C

Explanation: Topic retention controls how long Kafka keeps records. Consumer lag does not preserve records past the retention policy, so administrators must set retention to match audit and recovery requirements.


Question 5

What this tests: rack awareness

A cluster spans multiple availability zones. The team wants replica placement to reduce the risk that one zone failure removes all copies of a partition. What should be configured?

  • A. Broker rack awareness and replica assignment that spreads replicas across zones
  • B. A single broker for all leaders
  • C. One partition for every topic regardless of traffic
  • D. Manual screenshots of topic metadata

Best answer: A

Explanation: Rack awareness helps Kafka place replicas across failure domains such as zones or racks. It does not replace monitoring, but it reduces correlated failure risk for replicated partitions.


Question 6

What this tests: authentication versus authorization

A client can connect with TLS but receives authorization errors when reading a topic. What is the most likely missing control?

  • A. A larger consumer batch size
  • B. A shorter retention period
  • C. A new partition key
  • D. An ACL or role permission that allows the read operation

Best answer: D

Explanation: TLS can protect or authenticate the connection, but authorization decides what the principal may do. Read failures after successful connection usually point to missing ACLs or role permissions.


Question 7

What this tests: partition scaling trade-offs

A topic has one partition and one consumer group must process events faster. What is the main Kafka limitation to consider?

  • A. One partition can be consumed by unlimited active consumers in the same group
  • B. Parallelism in a consumer group is limited by the number of partitions
  • C. Increasing retention always increases processing throughput
  • D. Consumer group lag disappears when compression is enabled

Best answer: B

Explanation: Within a consumer group, each partition is assigned to at most one active consumer at a time. More consumers than partitions will not increase parallel processing for that topic.


Question 8

What this tests: ACL least privilege

A service only writes to one topic. Which permission design is most appropriate?

  • A. Give the service cluster-admin rights because it is automated
  • B. Let the service use a shared human administrator account
  • C. Grant only the required write permission on the specific topic and required supporting resources
  • D. Disable authorization to simplify deployment

Best answer: C

Explanation: Least privilege limits damage from key leakage or service bugs. A producer service should receive only the permissions needed for its topic and any required transactional or schema resources.


Question 9

What this tests: broker disk pressure

A broker disk is nearly full, and partitions on that broker are falling behind. What is the strongest administrator response?

  • A. Reduce disk pressure by reviewing retention, segment growth, reassignment, and broker capacity before the disk fills
  • B. Ignore the alert until producers fail
  • C. Lower all topic replication factors to one
  • D. Delete consumer group metadata first

Best answer: A

Explanation: Kafka depends on stable broker storage. Administrators should act before disks fill by checking retention, segment growth, partition placement, and capacity rather than weakening durability.


Question 10

What this tests: preferred leaders

After a broker outage and recovery, many partition leaders remain concentrated on other brokers. What maintenance action may help rebalance leadership?

  • A. Delete all replicas on the recovered broker
  • B. Increase retention for every topic
  • C. Disable replication until load normalizes
  • D. Run or enable preferred leader election after confirming the broker is healthy

Best answer: D

Explanation: Preferred leader election can move leadership back to the preferred replicas, improving balance after failover. It should be used after validating broker health so leadership does not shift to an unstable node.


Question 11

What this tests: Schema Registry operations

An application fails after a schema change because older consumers cannot read new messages. What should the administrator check first?

  • A. Whether topic retention is exactly one hour
  • B. Schema compatibility rules and whether the new schema is backward-compatible for the consumers
  • C. The number of browser tabs open in Control Center
  • D. Whether all broker IDs are even numbers

Best answer: B

Explanation: Schema Registry compatibility settings help prevent breaking producer and consumer contracts. When a schema change breaks consumers, compatibility mode and the actual schema evolution are the right first checks.


Question 12

What this tests: Connect worker reliability

A Kafka Connect deployment repeatedly loses connector progress after worker restarts. Which design choice is most relevant?

  • A. Store offsets only in a local temporary directory
  • B. Run all connectors with no error handling
  • C. Use durable internal topics and a stable worker configuration for connector offsets, configs, and status
  • D. Disable task restart attempts permanently

Best answer: C

Explanation: Kafka Connect relies on internal topics for distributed configuration, offsets, and status. Durable internal topics and stable worker settings are essential for recovery after restarts.

CCAAK operations map

    flowchart LR
	    A["Cluster symptom or change"] --> B["Check brokers and controllers"]
	    B --> C["Inspect partitions, leaders, and ISR"]
	    C --> D["Review security and topic config"]
	    D --> E["Apply safe rolling change"]
	    E --> F["Verify metrics and client impact"]

Use this map when a CCAAK question describes an operational issue. Strong answers inspect broker health, partition leadership, ISR, security, and client impact before making risky cluster-wide changes.

Quick Cheat Sheet

Task areaStrong answer patternCommon trap
ReplicationMatch replication factor, ISR, producer acks, and failure toleranceAssuming replication factor alone guarantees acknowledged durability
Broker operationsCheck disk, CPU, network, logs, controller state, and rolling-change orderRestarting every broker before finding the overloaded component
Topic managementReview partitions, retention, compaction, configs, and ownershipIncreasing partitions without considering ordering and consumer impact
SecuritySeparate TLS, SASL, ACLs, authentication, and authorizationGranting broad permissions to solve one access error
TroubleshootingFollow under-replicated partitions, offline partitions, lag, and broker metricsDeleting topics to clear symptoms
Platform servicesConsider Schema Registry, Connect, and monitoring dependenciesDebugging only Kafka brokers when a connector or schema issue is involved

Mini Glossary

  • ISR: In-sync replicas eligible to acknowledge writes and take over leadership.
  • Controller: Kafka role that manages metadata and cluster coordination.
  • Under-replicated partition: Partition with fewer in-sync replicas than intended.
  • ACL: Access control list used to authorize Kafka operations.
  • Rolling restart: Restarting brokers one at a time to preserve availability.

Open Confluent CCAAK in IT Mastery

Use this page to review sample questions, request an update for this route, and compare related IT Mastery pages.

How to prepare while the full app-backed route is being prioritized

  1. Start with the highest-yield blueprint areas first so the core decision pattern becomes easier to recognize.
  2. Turn every miss from guide study or other practice into a one-line rule about the main constraint, the best answer, and why the distractor fails.
  3. Practice reasoning through safe operations in order: observe the symptom, identify the likely cluster constraint, choose the lowest-risk fix, then verify the result.
  4. Use the update form near the top of this page if CCAAK is your actual target so we know this route matters to you.

Practice status

  • Current status: Sample preview
  • Full IT Mastery practice for this assessment: still being prioritized
  • Best use right now: use this page to confirm the Kafka administrator route, then practise with the live data-platform pages below while the full app-backed route is being prioritized
  • Update path: use the update form near the top of this page if CCAAK is your actual target exam

Use these live IT Mastery pages now

Need deeper concept review first?

If you want concept-first reading before heavier simulator work, use the companion guide at TechExamLexicon.com .

Revised on Thursday, May 14, 2026