Appearance
Cyber Security — Important Questions
Use the answer points to check your response after attempting each question.
Module 1
Short answers
- State the CIA triad and explain non-repudiation with an example.
- Differentiate symmetric and asymmetric key cryptography. Give one example each.
- Describe the three-stages of the fetch-decode-execute cycle.
- List the seven OSI layers in order (with a mnemonic).
- Classify each attack as passive or active: (a) sniffing, (b) replay, (c) phishing.
Long answer
Explain how a Caesar cipher and a modern cipher like AES differ in security, and why "encryption alone" does not make a system secure.
Answer points: Caesar = 25 keys (brute-forceable), mono-alphabetic (frequency analysis); AES = 128-bit block, 10 rounds, mathematically sound; encryption provides confidentiality only — it says nothing about availability, authentication, key management, or patching.
Problem
Encrypt "HELLO" with a Caesar cipher using key k = 5.
Answer: H→M, E→J, L→Q, L→Q, L→Q, O→T → "MJQQT". Use E(x) = (x + 5) mod 26.
Module 2
Short answers
- What is the difference between a security policy and a security procedure?
- Define RTO and RPO. Which matters more when sizing backups?
- Explain the default-deny firewall principle.
- Distinguish IPSec tunnel mode from transport mode.
- What is the shared-responsibility model in cloud security?
Long answer
A company handles customer credit-card data. Which security standard applies, which IPR protects the company's software, and which cyber-law obligation is triggered if customer data is breached?
Answer points: PCI DSS applies to cardholder data; copyright/trade secret protects the software; breach-notification law (e.g., GDPR 72 hours / local equivalents) requires reporting the breach.
Problem
Order these from fastest/smallest to slowest/largest: L1 cache, register, SSD, RAM, HDD, L2 cache.
Answer: register → L1 cache → L2 cache → RAM → SSD → HDD.
Module 3
Short answers
- Differentiate authentication and authorization with an example.
- What is the difference between an IDS and an IPS?
- Define false positive and false negative. Which is worse for a hospital monitor?
- Distinguish misuse-based and anomaly-based detection.
- What do the AAA letters in "AAA triad" actually stand for?
Long answer
A bank deploys an intrusion detection system. Explain whether it should be host-based, network-based, or both, and how you would balance false positives against false negatives in a high-transaction environment.
Answer points: NIDS at the perimeter for broad traffic view; HIDS on critical servers (DB/app) for system-call-level insight; both for defense in depth. Balance by tuning signatures, using baseline-aware anomaly detectors, correlating alerts in a SIEM, and setting acceptable precision/recall thresholds (prioritise low false negatives for attacks, accept some false positives to a triage queue).
Module 4
Short answers
- State the two rules of the Bell-LaPadula model.
- What is the difference between ring 0 and ring 3?
- In the TLS handshake, what proves the server's identity?
- Name four OWASP Top 10 categories.
- Why must forensic investigators use a write-blocker?
Long answer
Describe the secure-boot chain from firmware to applications, and explain how each stage verifies the next.
Answer points: Firmware (UEFI Secure Boot) verifies the bootloader signature; the bootloader verifies the kernel (e.g., dm-verity); the kernel enforces rings/ELs and verifies loaded modules; the OS restricts apps to user mode and enforces code signing. Each stage's verification prevents a bootkit/rootkit from installing without compromising the prior stage.
Problem
If a cache has a 1 ns hit time and a 20 ns miss penalty with a 5% miss rate, what is the AMAT?
Answer: AMAT = 1 + 0.05 × 20 = 2 ns.
Full-syllabus questions
- Trace an HTTPS request from a browser to a web server, naming the security layers (TLS, server certificate, HTTP) and the confidentiality/integrity/authentication each provides.
- Compare the CIA triad with the Bell-LaPadula and Biba models — which goal does each model protect?
- A SecureBank database holds customer records. List the full defense stack: network segmentation (DMZ), database encryption, access control (RBAC), WAF, TLS to DB, and explain how each maps to CIA.
- Explain how virtualization, virtual memory, and system calls cooperate to give each program the illusion of dedicated, protected hardware.
Answer-writing checklist
- Begin with a precise definition.
- Draw any requested diagram or table.
- Explain the mechanism step by step with a small example.
- State advantages, limitations, and suitable use.
- End comparisons with a clear decision criterion.