Cisco AITECH (810-110) Study Guide
The Cisco AI Technical Practitioner (810-110 AITECH) exam is aimed at people who build with AI. It covers everything from picking the right foundation model for a task to building agentic workflows that run with minimal human oversight. The exam runs 60 minutes. Cisco doesn't publish a question count or a cut score for it. The voucher costs $150 and is delivered through Pearson VUE, either at a testing center or via OnVUE remote proctoring. There are no formal prerequisites, though Cisco recommends basic knowledge of AI concepts and technical workflows. The certification is valid for three years, renewable with Continuing Education credits.
Scope is what separates the 810-110 from other AI certifications. It expects you to understand how models work under the hood, how to engineer effective prompts, how to integrate AI into development pipelines, and how autonomous agents are designed and controlled. Six domains, none of them survey-level.
Domain 1: Generative AI Models (20%)
Domain 1 is about how generative AI systems work at the architectural level, and how to choose the right model for a given job.
- Transformer architecture — attention mechanisms, encoder-decoder structures, how self-attention enables parallel processing of sequences, and why transformers replaced RNNs for most language tasks
- Foundation models and model families — differences between GPT, LLaMA, Gemini, and other major model families; open-weight vs. proprietary models; when to use a general-purpose model vs. a domain-specific one
- Model selection — choosing models from AI model hubs and repositories for a given use case, weighing reasoning capability and multimodality, and matching the model to the job rather than defaulting to the largest option
- RAG and vector databases — retrieval-augmented generation as a way to ground model outputs in external knowledge, vector embedding and similarity search, chunking strategies, and how RAG reduces hallucination compared to fine-tuning alone
Context windows and token management also appear here. You should know how token limits affect model behavior, what happens when inputs exceed the window, and the cost tradeoffs of larger context models. Model hosting options matter too: on-premise, cloud API, edge deployment, and the privacy and latency considerations behind each choice.
Domain 2: Prompt Engineering (15%)
This domain tests whether you can get reliable, useful outputs from LLMs through structured input design.
- Zero-shot and few-shot prompting — when to provide examples vs. relying on the model's pre-trained knowledge, how example selection affects output quality, and the tradeoffs between token cost and accuracy
- Chain-of-thought and structured techniques — forcing step-by-step reasoning to improve accuracy on complex tasks, tree-of-thought variants, and when structured prompting adds value vs. unnecessary overhead
- System prompts and role framing — how system-level instructions shape model behavior, persona patterns, output formatting constraints, and maintaining consistency across multi-turn conversations
- Prompt injection attacks and defense — direct injection through user input, indirect injection via poisoned data sources, jailbreaking techniques, and defensive measures including input sanitization, output filtering, and prompt firewalls
The exam also covers prompt optimization: iterating on prompts to improve consistency, reducing ambiguity, and testing prompt variations systematically rather than guessing.
Domain 3: Ethics and Security (15%)
This one pairs responsible AI practices with AI-specific security threats. It tests the "should we" questions and the "how do we protect it" questions together.
- Bias mitigation and responsible AI — how bias enters AI systems through training data, labeling, and feature selection; measurement approaches; organizational processes for bias audits; and the difference between fairness metrics (demographic parity, equalized odds)
- Data privacy — PII handling in training data, data minimization, differential privacy, consent frameworks, and the regulatory requirements (GDPR, CCPA) that constrain how AI systems can process personal information
- Adversarial attacks — data poisoning, model extraction, membership inference, and evasion attacks; the attack surfaces specific to AI systems vs. traditional software
- AI governance — organizational policies for AI deployment, risk assessment frameworks, model cards and documentation standards, audit trails, and accountability structures for AI decision-making
Cisco couples ethics and security tightly here. An AI system that leaks training data has a privacy problem and a security problem at once, and the exam expects you to reason about both.
Domain 4: Data Research and Analysis (10%)
Data research is AI as a tool for working with data, from exploratory analysis to content generation grounded in research.
- Data collection and preprocessing — data sourcing strategies, cleaning pipelines, handling missing values, normalization, and the impact of data quality on downstream model performance
- Feature extraction and statistical analysis — using AI tools to identify patterns in datasets, automated feature engineering, correlation analysis, and knowing when statistical methods are more appropriate than ML approaches
- Visualization and reporting — AI-assisted chart generation, selecting the right visualization for the data type, and communicating findings to non-technical stakeholders
- AI-assisted research and content drafting — using LLMs for literature review, summarization, and content generation while maintaining accuracy; verification workflows; and understanding the limits of AI-generated research content
You won't be asked to recite statistics formulas. The questions are about using AI tools in a data analysis workflow, and about telling when those tools are helping from when they're quietly introducing errors.
Domain 5: Development and Workflow Automation (20%)
Domain 5 covers integrating AI into the software development lifecycle and automating workflows with AI components.
- API integration — connecting to model APIs, handling rate limits and errors, managing API keys securely, and choosing between synchronous and streaming responses based on use case
- CI/CD for AI — testing AI-generated code, model versioning, deployment pipelines that include AI components, and monitoring model performance in production
- Code generation and rapid prototyping — using AI for code completion, refactoring, test generation, and documentation; understanding the review process needed for AI-generated code; and when AI-assisted development speeds things up vs. creates technical debt
- Orchestration and workflow design — chaining AI calls with traditional logic, error handling in AI-augmented pipelines, token and context management across multi-step workflows, and monitoring AI workflow performance
If you write code professionally, much of this will feel familiar. The exam wants to see that you can build systems that use AI components reliably: error handling, monitoring, and sensible behavior when the model returns something unexpected.
Domain 6: Agentic AI (20%)
Agentic AI is the newest domain on the exam. It covers AI systems that operate with a degree of autonomy, making decisions and taking actions without step-by-step human direction.
- Autonomous agents and tool use — how agents select and invoke tools, function calling patterns, and the architecture of systems where an LLM acts as a reasoning engine that decides which actions to take
- Multi-agent systems — coordination between multiple agents, task decomposition, message passing, and the design patterns for systems where specialized agents collaborate on complex tasks
- Planning and reasoning — how agents break down goals into subtasks, ReAct-style reasoning loops, reflection and self-correction, and the failure modes that emerge when agents plan incorrectly
- Guardrails and human-in-the-loop — safety boundaries for autonomous systems, approval gates, scope limitations, Model Context Protocol (MCP), and designing systems where human oversight scales without becoming a bottleneck
MCP has its own exam topic here. Know what it does (standardized protocol for connecting AI models to external tools and data sources), how it differs from direct API integration, and why interoperability across agent frameworks matters.
TechPrep Cisco AITECH
2,050+ practice questions across all six 810-110 domains. Confidence calibration, spaced repetition, and exam readiness tracking built on cognitive science research. Learn more about TechPrep Cisco AITECH
Study Strategy
You get 60 minutes. Cisco doesn't publish the question count, so you can't work out a per-question budget before you sit down. Treat it as a fast exam. The questions are scenario-heavy, so you'll spend real time reading, and reading speed will matter as much as recall.
Cisco doesn't require prerequisites, but it recommends basic knowledge of AI concepts and technical workflows. If you've worked with APIs, written code in any language, and used AI tools in a professional context, you have the foundation. If you haven't, spend time getting hands-on with at least one LLM API and one agent framework before starting exam-focused study.
Weeks 1-2: Start with Domains 1 and 2 together. The generative AI models domain gives you the vocabulary and mental models. Prompt engineering puts those models to work. Build something: take a model API, write system prompts, experiment with few-shot vs. zero-shot, and try chain-of-thought on a reasoning task. Reading about prompting techniques is not the same as doing it.
Week 3: Domain 3 (ethics and security) and Domain 4 (data research and analysis). These two pair well because data handling shows up in both. For ethics and security, focus on the attack types and their defenses. For data research, get comfortable using AI tools in an actual data analysis workflow. Load a dataset, use an LLM to explore it, and notice where it helps and where it misleads.
Week 4: Domain 5 (development and workflow automation) and Domain 6 (agentic AI). These are 20% each, so this is the heaviest week on the plan. If you code, Domain 5 will come naturally. For agentic AI, build a simple agent that uses tool calling. Understand how agents decide what to do next and where they go wrong. Read about MCP and try connecting an agent to external tools.
Week 5: Full-length timed practice. Simulate the 60-minute format. Track which domains take the longest and where your accuracy drops. Adjust your final review based on the data, not on which topics feel hardest. Feeling uncertain and scoring poorly are different problems that require different fixes.
What Sets This Exam Apart
Most AI certifications fall into one of two camps: vendor-specific cloud certs (AWS, Google, Azure) that test platform knowledge, or broad strategy certs aimed at business leaders. The 810-110 sits between them. It's technical without being tied to a single cloud provider, and it expects hands-on understanding without requiring you to train models from scratch.
The agentic AI weighting is the unusual part. Most certification exams in 2026 either don't cover agents at all or treat them as a future concept. Cisco put 20% of the exam weight on agentic architectures, tool use, multi-agent coordination, and MCP. That's a bet on where the industry is heading, and it means the cert stays relevant longer than exams built entirely around static model usage.
At $150 it also undercuts most comparable technical certifications, which generally run into several hundred dollars. That makes it a reasonable early credential for anyone moving into AI-focused technical work.