Click each card to expand the explanation and study tip.
1. AI Types, Techniques & Terminology
โพ
This is the core vocabulary of the exam โ expect scenario questions that describe a behavior and ask you to name the technique.
Core Types
- Generative AI โ creates new content (text, images, code, audio) by learning patterns from training data.
- Machine learning / statistical learning โ algorithms that learn patterns from data; statistical learning emphasizes probability-based models.
- Deep learning โ ML using multi-layer neural networks to model complex, non-linear patterns.
- Transformers โ the neural network architecture using "attention" to weigh relationships between tokens; the foundation of modern LLMs.
- NLP, LLMs & SLMs โ Natural Language Processing lets systems understand/generate language; Large Language Models are massive transformer-based models; Small Language Models are lighter-weight, efficiency-tuned versions.
- GANs โ Generative Adversarial Networks: a generator and discriminator compete to produce realistic synthetic data (and deepfakes).
Learning Paradigms
- Supervised learning โ trains on labeled data.
- Unsupervised learning โ finds patterns in unlabeled data.
- Reinforcement learning โ improves via reward/penalty feedback.
Model Tuning Vocabulary
- Validation โ testing performance on held-out data.
- Fine-tuning โ further training a pre-trained model on specific data.
- Epoch โ one full pass through the training dataset.
- Pruning โ removing unnecessary parameters to shrink a model.
- Quantization โ reducing numeric precision to speed up / shrink a model.
๐ก
Study tip: Match definitions to terms, not math. If a question describes "two networks competing to create realistic fake data," that's a GAN โ full stop.
2. Prompt Engineering Fundamentals
โพ
- Roles โ system prompts set behavior/boundaries; user prompts are the actual request; assistant is the model's reply.
- Zero-shot โ no examples given, model responds from instructions alone.
- One-shot / multi-shot (few-shot) โ one or several examples are provided to guide format and quality.
- Prompt templates โ standardized, reusable prompt structures that ensure consistent output and reduce prompt-injection risk.
๐ก
Study tip: Prompt templates resurface in Domain 2 as a security control. Learn them here as a usability concept, then connect them to "gateway controls" later.
3. Data Security & RAG Concepts for AI
โพ
- Cleansing โ removing errors/noise from data.
- Verification โ confirming data accuracy.
- Lineage โ tracking a dataset's origin and transformations.
- Integrity โ ensuring data hasn't been tampered with.
- Provenance โ documented history/source of the data.
- Augmentation & balancing โ expanding/adjusting training data to reduce bias and cover edge cases.
- Structured / semi-structured / unstructured data โ tables/databases, JSON/XML, vs. free text/images/audio.
- Watermarking โ embedding identifiable markers in AI-generated content or training data to track origin.
- RAG (Retrieval-Augmented Generation) โ combines an LLM with an external knowledge source using embeddings (numeric meaning vectors) stored in a vector database for retrieval at query time.
๐ก
Study tip: RAG + embeddings + vector storage is a recurring thread โ it's introduced here, becomes an attack surface in Domain 2, and a tool in Domain 3.
4. The Secure AI Lifecycle
โพ
Know this sequence โ sequencing questions are common:
- 1. Align to use case & corporate objectives โ define the problem and acceptable risk first.
- 2. Secure collection & preparation โ apply the data security concepts above.
- 3. Model selection & evaluation โ choose and test models against requirements.
- 4. Deployment & validation โ release with controls in place; validate production behavior.
- 5. Monitoring & maintenance โ ongoing observability (expanded heavily in Domain 2).
- 6. Feedback & iteration โ human-in-the-loop review, oversight, and continuous validation.
๐ก
Study tip: "Align โ Collect/Prepare โ Select/Evaluate โ Deploy/Validate โ Monitor โ Iterate." Memorize this order โ questions often ask "what comes next?"
5. AI Applications & AI-Driven Threats in Security
โพ
Where AI Helps (previewed here, expanded in Domain 3)
- Threat detection, anomaly detection, and automating repetitive security analysis.
AI-Driven Threats to Know
- Automated / AI-generated phishing โ highly personalized, grammatically flawless phishing at scale.
- Polymorphic malware โ AI-generated malware variants that constantly change signatures to evade detection.
- Adversarial machine learning โ deliberately crafted inputs designed to fool ML models.
- Malicious use of generative AI โ deepfakes, synthetic identities, automated social-engineering content.
๐ก
Study tip: Domain 1 introduces these threats conceptually. Domain 2 tests how to defend against them; Domain 3 tests how attackers actively use AI tools to carry them out.