Escrito por estudiantes que aprobaron Inmediatamente disponible después del pago Leer en línea o como PDF ¿Documento equivocado? Cámbialo gratis 4,6 TrustPilot
logo-home
Document preview thumbnail
Vista previa 4 fuera de 99 páginas
Examen

WGU IT and Tech Fundamentals CTIAT OA Practice Questions Answers with Rationales 2 Full Mock Exams | 200 Questions and Answers with Detailed Rationales | 2026 Update | 100% Correct

Document preview thumbnail
Vista previa 4 fuera de 99 páginas

Ace Your WGU IT and Tech Fundamentals CTIAT OA on Your First Try! This comprehensive study bundle has everything you need to crush the WGU IT and Tech Fundamentals CTIAT Objective Assessment. I created this guide to help you master the material and walk into your exam feeling completely prepared. What's Inside: - 200 questions with detailed rationales - Network Architectures and Protocols - Security Best Practices and Risk Mitigation - Cloud Service Models and Deployment - Relational Databases and SQL - Programming Logic and Problem Solving - Operating Systems and System Administration - 2 Full Mock Exams - Works on phone, tablet, or computer What You'll Actually Learn: - Network troubleshooting and design - Cybersecurity fundamentals and defense-in-depth - Cloud computing models (IaaS, PaaS, SaaS) - Database design and SQL queries - Programming logic and algorithms - System administration and automation - IT governance and risk management - Disaster recovery and business continuity - Wireless networking and security - Virtualization and containerization Why This Guide Works: - Every single question includes a clear, detailed rationale explaining the correct answer - Understand the "why" behind each concept, not just the correct letter - Learn IT reasoning so you can apply it to any question on your actual exam - Covers the most current exam content and testing strategies Who This Is For: - You, if you're taking WGU IT and Tech Fundamentals CTIAT OA - You, if you're a Junior Year IT student - You, if you have an Objective Assessment coming up - You, if you want to study smarter, not harder Stop stressing. Start passing. Download this now and walk into your exam actually prepared.

Vista previa del contenido

WGU IT and Tech Fundamentals (CTIAT) OA 2026-2027 |
Practice Questions & Answers with Rationales + 2 Full Mock
Exams. - 200 Questions and Answers Already Graded A+
Premium Exam Tested And Verified


Subject Area Information Technology and Technical Fundamentals

Description This comprehensive examination assesses mastery of core IT concepts including
networking, security, cloud computing, databases, programming logic, and system
administration. The exam integrates theoretical knowledge with practical
application, requiring analytical reasoning and problem-solving in realistic
scenarios.

Expected Grade A+

Total Questions 200

Duration 3 hours

Learning Outcomes 1. Analyze and troubleshoot network architectures and protocols.
2. Implement security best practices and risk mitigation strategies.
3. Evaluate cloud service models and deployment strategies.
4. Design and query relational databases using SQL.
5. Apply programming logic to solve complex computational problems.
6. Manage operating systems and system administration tasks.

Accreditation Aligned with US university accreditation standards (e.g., ABET, ACBSP) and
industry certifications (CompTIA, Cisco, AWS).




Page 1

,1. A network administrator is designing a fault-tolerant network for a financial
trading platform. The solution must ensure zero packet loss during a link failure and
maintain sub-50ms convergence. Which protocol and configuration best meet these
requirements?

A. OSPF with ECMP over redundant links
B. RSTP with rapid transition on all ports
C. MLAG with active-active links and BGP graceful restart
D. VRRP with preempt and track interface
Answer: C. MLAG with active-active links and BGP graceful restart

MLAG (Multi-chassis Link Aggregation) provides active-active links with sub-second
failover and no packet loss, while BGP graceful restart ensures uninterrupted
forwarding during control plane restart. OSPF ECMP can load balance but
convergence may not be sub-50ms. RSTP still has blocking state and slower
convergence. VRRP is gateway redundancy, not link redundancy.

2. A security analyst is reviewing a log where an attacker sent a series of fragmented
ICMP packets that, when reassembled, exceed the maximum IP packet size. Which
attack is being attempted, and what is the most effective mitigation at the network
perimeter?

A. Ping of Death; drop all ICMP packets
B. Teardrop attack; enable reassembly limits and drop overlapping fragments
C. Smurf attack; disable IP-directed broadcasts
D. Fraggle attack; block UDP echo traffic
Answer: B. Teardrop attack; enable reassembly limits and drop overlapping
fragments

The Teardrop attack exploits overlapping IP fragments to cause a crash during
reassembly. Mitigation involves configuring firewalls to drop malformed fragments and
enforcing reassembly timeouts. Ping of Death is a single oversized ping, not
fragmentation. Smurf/Fraggle use broadcast amplification, not fragmentation.




Page 2

,3. A company is migrating a legacy monolithic application to AWS. The application
has unpredictable traffic patterns and requires low latency. Which architecture best
balances cost and performance while ensuring high availability?
A. Deploy on a single large EC2 instance with reserved capacity
B. Use AWS Lambda with API Gateway and DynamoDB
C. Run containers on ECS with auto-scaling and an Application Load Balancer
D. Lift-and-shift to a dedicated host with on-premises link
Answer: C. Run containers on ECS with auto-scaling and an Application Load
Balancer

ECS with auto-scaling and an ALB provides dynamic scaling for unpredictable traffic,
optimal resource utilization, and high availability. Lambda is serverless but may not
suit monolithic apps. Reserved EC2 lacks elasticity. Dedicated host is costly and not
scalable.

4. A database administrator needs to retrieve the second-highest salary from an
'employees' table. Which SQL query correctly accomplishes this without using a
subquery in the FROM clause?
A. SELECT salary FROM employees ORDER BY salary DESC LIMIT 1 OFFSET 1;
B. SELECT MAX(salary) FROM employees WHERE salary NOT IN (SELECT
MAX(salary) FROM employees);
C. SELECT salary FROM employees ORDER BY salary DESC LIMIT 1, 1;
D. SELECT DISTINCT salary FROM employees ORDER BY salary DESC LIMIT 1
OFFSET 1;
Answer: D. SELECT DISTINCT salary FROM employees ORDER BY salary
DESC LIMIT 1 OFFSET 1;

Option D uses DISTINCT to handle duplicates and OFFSET to skip the highest,
yielding the second-highest unique salary. Option A would return the second row
including duplicates, which may be incorrect. Option B uses a subquery and fails if
there are ties. Option C is MySQL syntax but without DISTINCT, it may include
duplicates.




Page 3

, 5. A developer is writing a function that checks if a number is prime. They use a loop
that iterates from 2 to n-1. What is the time complexity, and how can it be optimized
while maintaining correctness?
A. O(n); iterate only up to n/2
B. O(n); iterate up to sqrt(n) and skip even numbers after 2
C. O(n^2); use the Sieve of Eratosthenes
D. O(log n); use Fermat's primality test
Answer: B. O(n); iterate up to sqrt(n) and skip even numbers after 2

The naive loop is O(n), but checking up to sqrt(n) is sufficient because any factor larger
than sqrt(n) would have a corresponding factor smaller. Skipping even numbers further
reduces iterations. Sieve is for generating primes, not checking a single number.
Fermat's test is probabilistic and not deterministic for all cases.

6. A system administrator is troubleshooting a server that has a static IP address but
cannot access the internet. The server can ping the gateway but not a public IP.
Which command sequence best isolates the issue?
A. ipconfig /flushdns && nslookup google.com
B. traceroute to 8.8.8.8 and check routing table
C. ping 127.0.0.1 && ping gateway && ping external IP
D. netstat -rn and check default gateway
Answer: B. traceroute to 8.8.8.8 and check routing table

Since the server can ping the gateway but not a public IP, the issue is likely routing or
firewall. Traceroute to 8.8.8.8 will show where packets stop, and checking the routing
table reveals missing or incorrect routes. Option C is a basic connectivity test but
doesn't isolate routing. Option A addresses DNS, but the server can't ping IPs, so DNS
isn't the issue. Option D only shows routes, not the path.




Page 4

Información del documento

Subido en
25 de agosto de 2026
Número de páginas
99
Escrito en
2026/2027
Tipo
Examen
Contiene
Preguntas y respuestas
$25.99

¿Documento equivocado? Cámbialo gratis Dentro de los 14 días posteriores a la compra y antes de descargarlo, puedes elegir otro documento. Puedes gastar el importe de nuevo.
Escrito por estudiantes que aprobaron
Inmediatamente disponible después del pago
Leer en línea o como PDF

Seller avatar
Los indicadores de reputación están sujetos a la cantidad de artículos vendidos por una tarifa y las reseñas que ha recibido por esos documentos. Hay tres niveles: Bronce, Plata y Oro. Cuanto mayor reputación, más podrás confiar en la calidad del trabajo del vendedor.
GlobalExamBank
4.7
(3)
Vendido
13
Seguidores
1
Artículos
515
Última venta
1 mes hace



Por qué los estudiantes eligen Stuvia

Creado por compañeros estudiantes, verificado por reseñas

Calidad en la que puedes confiar: escrito por estudiantes que aprobaron y evaluado por otros que han usado estos resúmenes.

¿No estás satisfecho? Elige otro documento

¡No te preocupes! Puedes elegir directamente otro documento que se ajuste mejor a lo que buscas.

Paga como quieras, empieza a estudiar al instante

Sin suscripción, sin compromisos. Paga como estés acostumbrado con tarjeta de crédito y descarga tu documento PDF inmediatamente.

Student with book image

“Comprado, descargado y aprobado. Así de fácil puede ser.”

Alisha Student

Preguntas frecuentes