Career upgrade: Learn practical AI skills for better jobs and higher pay.
Level up
All Practice Exams

100+ Free Tencent Cloud Developer Associate Practice Questions

Pass your Tencent Cloud Certified Associate – Developer (TCA-Developer) exam on the first try — instant access, no signup required.

✓ No registration✓ No credit card✓ No hidden fees✓ Start practicing immediately
100+ Questions
100% Free
1 / 100
Question 1
Score: 0/0

You need to give a third-party vendor temporary access to objects in one specific COS bucket. Which mechanism provides time-limited access without sharing permanent credentials?

A
B
C
D
to track
2026 Statistics

Key Facts: Tencent Cloud Developer Associate Exam

70/100

Passing Score

Tencent Cloud

80

Questions

Tencent Cloud (60 single + 20 multi)

90 min

Exam Time

Tencent Cloud

$120

Exam Fee

Tencent Cloud (≈CNY 800)

2 years

Validity

Tencent Cloud

60-90 hrs

Study Time

Recommended

TCA-Developer requires 70 out of 100 points across 80 questions (60 single-select + 20 multi-select) in 90 minutes. The fee is approximately US$120 and the credential is valid for 2 years. Preparation typically takes 60–90 hours, focused on hands-on development with SCF, API Gateway, TKE, COS, TencentDB, CKafka, and CAM.

Sample Tencent Cloud Developer Associate Practice Questions

Try these sample questions to test your Tencent Cloud Developer Associate exam readiness. Each question includes a detailed explanation. Start the interactive quiz above for the full 100+ question experience with AI tutoring.

1You want to run backend logic without managing servers. Which Tencent Cloud service lets you upload code and execute it in response to HTTP requests or events?
A.CVM Standard S6
B.Serverless Cloud Function (SCF)
C.Tencent Kubernetes Engine (TKE)
D.Elastic MapReduce (EMR)
Explanation: SCF (Serverless Cloud Function) is Tencent Cloud's FaaS offering. You deploy code without provisioning servers, and the platform scales automatically. CVM is a virtual machine, TKE runs container workloads, and EMR handles big-data processing.
2An SCF function needs to be invoked every time a new object is uploaded to a COS bucket. Which trigger type should you configure?
A.COS trigger
B.API Gateway trigger
C.Timer trigger
D.CKafka trigger
Explanation: The COS trigger fires an SCF function when a configured event (e.g., ObjectCreated) occurs on a specific bucket. API Gateway triggers handle HTTP requests, Timer triggers schedule periodic invocations, and CKafka triggers respond to Kafka messages.
3Which Tencent Cloud service provides a fully managed RESTful API endpoint so your SCF functions can be called over HTTPS from a mobile app?
A.Cloud Load Balancer (CLB)
B.API Gateway
C.Content Delivery Network (CDN)
D.VPN Gateway
Explanation: API Gateway lets you publish, manage, and secure APIs backed by SCF, CVM, or other backends. It handles HTTPS termination, authentication, throttling, and SDK generation. CLB distributes traffic to compute resources; CDN caches static content; VPN Gateway creates encrypted tunnels.
4You are deploying a containerized microservice on Tencent Cloud and want the platform to manage the Kubernetes control plane. Which service should you choose?
A.CVM with self-installed Kubernetes
B.Tencent Kubernetes Engine (TKE) Managed Cluster
C.Elastic Kubernetes Service (EKS)
D.Tencent Container Registry (TCR)
Explanation: TKE Managed Cluster mode hands the Kubernetes API server and etcd control plane to Tencent Cloud, leaving you to manage only worker nodes and workloads. EKS (Elastic Kubernetes Service on Tencent Cloud) goes further by making nodes serverless. TCR is a container image registry, not a compute service.
5Your application stores user-generated images in COS. To serve them globally with low latency, which additional service should you enable?
A.Direct Connect
B.CDN acceleration for the COS bucket
C.Cloud Load Balancer Layer-7
D.CFS file system
Explanation: Enabling CDN acceleration on a COS origin distributes static content to edge nodes globally, reducing latency for end users. Direct Connect is for private enterprise network links, CLB distributes traffic to compute backends, and CFS is a shared NFS/SMB file system.
6A developer needs to grant an SCF function permission to write to a TencentDB table without hardcoding credentials. Which CAM feature enables this?
A.CAM sub-user with a long-term API key
B.Resource policy on the TencentDB table
C.CAM role bound to the SCF function execution identity
D.Account root key stored in an environment variable
Explanation: Binding a CAM execution role to an SCF function allows the function to assume temporary credentials scoped to only the permissions in that role's policy — no long-term secrets are embedded. Hardcoding root keys or sub-user keys in environment variables is a security anti-pattern.
7Which Tencent Cloud SDK feature automatically refreshes temporary credentials when an SCF execution role is used, without any code in the function?
A.Manual STS token refresh loop
B.SDK built-in credential provider chain
C.API key rotation via KMS
D.VPC endpoint for CAM
Explanation: The Tencent Cloud SDK uses a credential provider chain that automatically fetches and refreshes temporary STS credentials injected as environment variables when the function runs under an execution role. Developers do not need to write manual refresh logic.
8You want to store and retrieve application secrets (database passwords, API keys) securely at runtime without embedding them in code. Which Tencent Cloud service should you use?
A.COS bucket with private ACL
B.SSM Parameter Store
C.Secrets Manager (KMS-backed)
D.CVM user-data script
Explanation: Tencent Cloud Secrets Manager (part of the KMS product family) stores secrets encrypted at rest with KMS CMKs and provides SDK/API access at runtime with audit logging. Embedding secrets in user-data or COS objects is less secure and harder to rotate.
9Which COS presigned URL feature allows a frontend to upload a file directly to COS without routing the binary through your application server?
A.COS CORS policy
B.Presigned PUT URL
C.COS reverse proxy in CLB
D.COS Transfer Acceleration
Explanation: A presigned PUT URL is time-limited and grants the holder permission to upload one object directly to COS. The backend generates and signs the URL; the client uploads the file directly, offloading transfer bandwidth from your servers.
10Your SCF function processes messages from a TDMQ (CMQ) queue. The function keeps failing and the same message is retried indefinitely. How should you prevent poison messages from blocking the queue?
A.Increase the function timeout to 900 seconds
B.Configure a Dead Letter Queue (DLQ) for the TDMQ trigger
C.Set the SCF concurrency limit to 1
D.Switch to a Timer trigger
Explanation: A Dead Letter Queue captures messages that fail processing after the maximum retry count, removing them from the active queue so healthy messages are not blocked. Increasing timeout or limiting concurrency does not address a broken message. Switching to a timer trigger removes the event-driven architecture entirely.

About the Tencent Cloud Developer Associate Exam

The Tencent Cloud Certified Associate – Developer (TCA-Developer) validates the skills needed to build, deploy, and maintain cloud-native applications on Tencent Cloud. The exam covers serverless development (SCF, API Gateway), containers (TKE, EKS, TCR), CI/CD pipelines, storage and databases (COS, TencentDB Redis and MySQL, TDSQL-C), messaging (CKafka, TDMQ), identity and security (CAM, STS, Secrets Manager, WAF), and observability (Cloud Monitor, CLS, APM).

Questions

80 scored questions

Time Limit

90 minutes

Passing Score

70/100

Exam Fee

$120 (Tencent Cloud)

Tencent Cloud Developer Associate Exam Content Outline

22%

Serverless & SCF

SCF functions in Python, Node.js, Go, and Java; triggers (COS, Timer, CKafka, CMQ, API Gateway HTTP); execution roles; concurrency (provisioned, reserved, max quota); layers; container image deployment; VPC integration; environment variables; cold start mitigation

18%

API Gateway & Integration

API Gateway services, APIs, and environments; backends (SCF, CLB, mock); authentication (CAM, API key); CORS; request parameter mapping; traffic splitting for canary releases; custom domains (CNAME); usage plans and QPS throttling; response cache plugin

18%

Containers & CI/CD

TKE managed clusters and EKS serverless Pods; TCR private namespaces and token auth; Kubernetes Deployments, ClusterIP/LoadBalancer/Ingress Services; ConfigMaps, Secrets, Jobs, HPA, Cluster Autoscaler, liveness/readiness probes; CODING CI/CD pipelines; Terraform tencentcloud provider for IaC

16%

Storage & Databases

COS storage classes (Standard, Standard-IA, Archive, INTELLIGENT_TIERING), lifecycle, versioning and delete markers, CRR, presigned PUT URLs, SSE-KMS, COS SELECT; TencentDB for Redis (Standard/Cluster editions, INCR, TTL patterns); TencentDB for MySQL HA and read-only groups; TDSQL-C, TDSQL Distributed, MongoDB, Elasticsearch Service, DBbrain

12%

Messaging

CKafka topics, consumer groups, log.retention.hours, consumer lag monitoring, batch processing; TDMQ for Pulsar (multi-tenancy, geo-replication); TDMQ for RabbitMQ (AMQP); CMQ (DLQ for SCF triggers); event-driven architecture decoupling patterns

8%

Identity, Security & Secrets

CAM roles for SCF/TKE service accounts; STS temporary credentials; sub-users; policy conditions (qcs:SourceIP); Secrets Manager (KMS-backed); SSE-KMS for COS; WAF for API Gateway/CLB protection; CloudAudit API call trails

6%

Observability & Networking

Cloud Monitor custom metrics (PutMonitorData) and alarm comparison operators; CLS key-value indexing and alarm policies; APM distributed tracing (OpenTelemetry); CloudAudit; Private DNS hosted zones; VPC private subnets; COS VPC endpoints and NAT Gateway for VPC-attached SCF

How to Pass the Tencent Cloud Developer Associate Exam

What You Need to Know

  • Passing score: 70/100
  • Exam length: 80 questions
  • Time limit: 90 minutes
  • Exam fee: $120

Keys to Passing

  • Complete 500+ practice questions
  • Score 80%+ consistently before scheduling
  • Focus on highest-weighted sections
  • Use our AI tutor for tough concepts

Tencent Cloud Developer Associate Study Tips from Top Performers

1Focus heavily on SCF: understand all trigger types (COS, Timer, CKafka, API Gateway), execution roles vs. hardcoded keys, concurrency models, layers, and VPC integration
2Master API Gateway: service vs. API vs. environment hierarchy, CAM vs. API key authentication, CORS configuration, request parameter mapping, and usage plan throttling
3Practice Kubernetes fundamentals on TKE: ClusterIP for internal services, Ingress for external HTTP routing, ConfigMap vs. Secret for config and credentials, HPA for autoscaling
4Know COS features: storage class differences and minimum durations, lifecycle expiration, CRR for multi-region, presigned PUT for direct upload, and SSE-KMS for compliance
5Understand CKafka consumer group semantics: same group ID splits messages; different group IDs get independent copies — crucial for multi-service event bus design
6Learn CAM role patterns: bind roles to SCF execution identities and TKE service accounts to avoid static API keys; understand STS temporary credential flow
7Practice reading and writing Tencent Cloud SDK credential initialization code in at least one language (Python, Node.js, or Go)
8Complete 100+ practice questions across all topic areas and review every wrong answer until you can explain why each option is correct or wrong

Frequently Asked Questions

What is the TCA Developer passing score?

The Tencent Cloud Certified Associate – Developer exam has 80 questions worth 100 total points (60 single-select at 1 pt each + 20 multi-select at 2 pts each) and requires 70 points to pass. Tencent Cloud does not publish a public pass-rate percentage; candidates with hands-on Tencent Cloud development experience typically pass on the first attempt.

How many questions are on the TCA Developer exam?

The TCA Developer exam has 80 questions delivered in 90 minutes: 60 single-select multiple-choice questions (1 point each) and 20 multi-select questions (2 points each), totaling 100 points. A score of 70 or above is required to pass.

What does the Tencent Cloud Developer Associate exam cost?

The exam fee is approximately US$120 (about CNY 800), payable through the Tencent Cloud certification portal. Retakes carry the same fee after a 7-day cooldown. The credential is valid for 2 years.

Which Tencent Cloud services are most important for the TCA Developer exam?

The highest-value services to study: SCF (Serverless Cloud Function) triggers and execution roles, API Gateway (backends, auth, CORS, traffic splitting), TKE and EKS (Kubernetes workloads, Ingress, HPA), COS (storage classes, lifecycle, presigned URLs, SSE-KMS), TencentDB for Redis and MySQL, CKafka consumer groups, CAM roles and STS, Secrets Manager, Cloud Monitor custom metrics, and CLS log indexing.

What is the difference between TCA Developer and TCA SysOps?

TCA Developer focuses on building and deploying applications: SCF serverless functions, API Gateway, SDKs, CI/CD pipelines, container workloads on TKE/EKS, messaging with CKafka/TDMQ, and developer-centric security (CAM roles, STS, Secrets Manager). TCA SysOps focuses on operating and maintaining infrastructure: CVM lifecycle, CBS disks and snapshots, VPC topology, CLB health checks, Cloud Monitor alarms, and automation tooling. Developer candidates code and deploy; SysOps candidates configure and operate.

How long should I study for the TCA Developer exam?

Most candidates with prior cloud development experience study for 4–8 weeks (60–90 hours). Allocate roughly 30% to hands-on labs in the Tencent Cloud console (SCF, API Gateway, TKE, COS, TencentDB), 40% to official documentation and architecture white papers, and 30% to timed practice questions. Aim for 80% or higher on practice exams before scheduling.

Is the Tencent Cloud Developer Associate exam available in English?

Tencent Cloud certification exams are primarily delivered in Chinese (Simplified) through the official portal at cloud.tencent.com/edu. English-language editions for international markets are available through the international portal at tencentcloud.com/edu; check the portal before scheduling. Online proctoring is available for remote candidates.