CompTIA Tech+
Foundational IT concepts: hardware, software, networking, data and the shape of an IT career. Work through the topics from the start of the list to the end. Readiness is calculated from your recorded study, labs, practice, quizzes and troubleshooting.
Overall readiness
0%
Status
Not Started
Topics
8
Recommended study time
57h 30m
Exam readiness: CompTIA Tech+
Not started — Nothing recorded for this certification yet. Study one topic and the score starts moving.
80 points to the 80% exam-ready bar
0 of 8 topics finished · 57h 30m of study left
About 20 weeks away — roughly January 2027, at your planned 180 minutes a week.
What is holding the score back
Study path
Start with the groundwork, then core skills, then the advanced material.
Plain-language groundwork. Begin here if the certification is new to you.
The main body of the certification: the skills the exam tests most.
Reading and watching
Official material from the vendors themselves. Links open in a new tab.
WATCH
- Microsoft Learn shows and video seriesMicrosoft Learn · video · free
- Linux Foundation video channelThe Linux Foundation · video · free
- Professor Messer's CompTIA A+ 220-1201 Core 1 video courseProfessor Messer · video · free
- Professor Messer's CompTIA A+ 220-1202 Core 2 video courseProfessor Messer · video · free
- Professor Messer's CompTIA N10-009 Network+ video courseProfessor Messer · video · free
- Professor Messer video channel — general CompTIA training (no dedicated CompTIA Tech+ course)Professor Messer · video · free
READ
- CompTIA A+ Core 1 CertificationCompTIA · learning-path · paid
- Explore computersMicrosoft Learn · course · free
- Explore Windows architectureMicrosoft Learn · course · free
- Networking BasicsCisco Networking Academy · course · free
- Introduction to BashMicrosoft Learn · course · free
- Hyper-V virtualization overviewMicrosoft Learn · docs · free
- Explore tech careersCompTIA · learning-path · free
- Networking EssentialsCisco Networking Academy · course · free
- DNS conceptsCloudflare Docs · docs · free
Worked examples
The calculations and procedures this certification expects you to perform, shown step by step with practice items.
Convert binary to decimal
Convert the 8-bit binary number 11000000 to decimal.
- 1. Write the place valuesAn 8-bit number has fixed place values, left to right: 128, 64, 32, 16, 8, 4, 2, 1.
- 2. Line the bits up under the place values128→1, 64→1, 32→0, 16→0, 8→0, 4→0, 2→0, 1→0.
- 3. Keep only the place values above a 1The 128 column and the 64 column hold a 1. Every other column holds 0 and contributes nothing.
- 4. Add them128 + 64 = 192.
Answer: 11000000 = 192. This is why a /24 subnet mask octet of 11000000 reads as 192 in dotted decimal.
Now you try
Convert 10101010 to decimal.
Convert 11111111 to decimal.
Convert 00011100 to decimal.
Convert decimal to binary
Convert the decimal number 172 to 8-bit binary.
- 1. Start at the largest place valueAsk: does 128 fit into 172? Yes. Write a 1 and subtract: 172 − 128 = 44.
- 2. Next column, 6464 does not fit into 44. Write 0. Remainder stays 44.
- 3. Next column, 3232 fits into 44. Write 1. 44 − 32 = 12.
- 4. Continue down16 into 12? No → 0. 8 into 12? Yes → 1, remainder 4. 4 into 4? Yes → 1, remainder 0. 2 → 0. 1 → 0.
- 5. Read the bits in order1, 0, 1, 0, 1, 1, 0, 0.
Answer: 172 = 10101100. Check it by adding the on-bits back: 128 + 32 + 8 + 4 = 172.
Now you try
Convert 200 to binary.
Convert 19 to binary.
Convert 255 to binary.
Convert binary to hexadecimal
Convert 11011110 to hexadecimal (the form used by MAC and IPv6 addresses).
- 1. Split into 4-bit groups11011110 becomes 1101 and 1110.
- 2. Convert each group with place values 8, 4, 2, 11101 = 8 + 4 + 1 = 13. 1110 = 8 + 4 + 2 = 14.
- 3. Replace values over 9 with letters10=A, 11=B, 12=C, 13=D, 14=E, 15=F. So 13 = D and 14 = E.
- 4. Join the digitsD followed by E.
Answer: 11011110 = DE in hex, which is 222 in decimal. Each pair of hex digits is exactly one byte, which is why a MAC address is six hex pairs.
Now you try
Convert 10101111 to hex.
Convert hex 3C to binary.
Convert hex FF to decimal.
Work out a network address and host range
A host is configured as 192.168.10.77 with the mask 255.255.255.192 (/26). What is its network address, broadcast address and usable host range?
- 1. Find the interesting octetThe first three octets of the mask are 255, so only the fourth octet matters. 192 in binary is 11000000, so 2 host-network bits are borrowed.
- 2. Find the block size256 − 192 = 64. Subnets step in blocks of 64: 0, 64, 128, 192.
- 3. Place the host77 falls between 64 and 127, so the host sits in the 192.168.10.64 subnet.
- 4. Name the boundariesNetwork address = 192.168.10.64. Broadcast = one below the next block = 192.168.10.127.
- 5. Usable hostsEverything between the two boundaries: .65 through .126.
Answer: Network 192.168.10.64, broadcast 192.168.10.127, usable range 192.168.10.65–192.168.10.126 (62 usable addresses).
Now you try
Same question for 10.0.0.200 /26.
What mask is /28 in dotted decimal, and what is its block size?
How many usable hosts in a /29?
Count usable hosts from a CIDR prefix
How many usable host addresses does a /22 network provide?
- 1. Count host bitsAn IPv4 address is 32 bits. 32 − 22 = 10 host bits.
- 2. Raise 2 to that power2^10 = 1024 total addresses in the block.
- 3. Remove the two reserved addressesThe lowest address is the network address and the highest is the broadcast address: 1024 − 2.
Answer: 1022 usable host addresses. The general formula is 2^(32 − prefix) − 2.
Now you try
Usable hosts in a /30?
You need 500 hosts on one subnet. What is the smallest prefix?
Total addresses in a /16?
Trace a DNS lookup step by step
A workstation opens www.example.com for the first time. What happens before the first packet reaches the web server?
- 1. Local checksThe resolver checks its own cache, then the hosts file. A stale entry here explains a machine that reaches the wrong server while everyone else is fine.
- 2. Recursive resolverThe query goes to the configured DNS server, usually learned by DHCP. If that server has a cached answer within its TTL, it replies immediately.
- 3. Root and TLDWith no cache, the resolver asks a root server, which refers it to the .com name servers, which refer it to the authoritative servers for example.com.
- 4. Authoritative answerThe authoritative server returns the A record (IPv4) or AAAA record (IPv6) for www.example.com.
- 5. Cache and connectThe answer is cached for its TTL, then the workstation opens a TCP connection to that IP on port 443.
Answer: Name resolution is a chain: cache → hosts file → recursive resolver → root → TLD → authoritative. Test the chain with nslookup or dig; if the IP is correct but the page fails, the fault is below DNS.
Now you try
A site works by IP but not by name. Where is the fault?
Which record type maps a name to an IPv6 address?
Why does a record change take hours to appear everywhere?
Read and set Linux file permissions
A script shows as -rwxr-xr-- . What are its numeric permissions, and what command would make it rwxr-x---?
- 1. Split the stringIgnore the leading file-type character, then take three groups: owner rwx, group r-x, others r--.
- 2. Score each groupread = 4, write = 2, execute = 1. Owner 4+2+1 = 7. Group 4+0+1 = 5. Others 4+0+0 = 4.
- 3. Read the numberThe permissions are 754.
- 4. Build the targetrwx = 7, r-x = 5, --- = 0, so the goal is 750.
Answer: -rwxr-xr-- is 754; chmod 750 script.sh produces rwxr-x---. A 'Permission denied' on your own script is usually a missing execute bit (chmod +x).
Now you try
What is rw-r--r-- numerically?
What does chmod 600 key.pem allow?
Which command changes the owning user?
Explain a 'missing' drive capacity
A customer buys a 1 TB drive and Windows reports 931 GB. Has the shop cheated them?
- 1. Manufacturer unitsDrive makers use decimal units: 1 TB = 1,000,000,000,000 bytes.
- 2. Operating system unitsWindows reports binary units but labels them GB: 1 GiB = 1,073,741,824 bytes.
- 3. Do the division1,000,000,000,000 ÷ 1,073,741,824 ≈ 931.
- 4. Account for formattingThe filesystem and recovery partitions then consume a further few gigabytes.
Answer: No. The bytes are all there; the two sides count in different units. Say this to the customer in plain terms rather than quoting powers of two.
Now you try
How much usable space would a 2 TB drive report?
How many bytes in 1 MiB?
Why does a phone advertise 128 GB but show around 112 GB?
Size virtual machines on a host
A host has 16 GB RAM and 8 CPU cores. How many 4 GB lab VMs can safely run at once?
- 1. Reserve for the hostThe host operating system and hypervisor need their own memory — reserve about 4 GB.
- 2. Divide what remains16 − 4 = 12 GB available. 12 ÷ 4 = 3 VMs.
- 3. Check CPUCores can be oversubscribed; memory generally cannot. Two virtual CPUs each across 3 VMs is 6 of 8 cores — comfortable.
- 4. Check diskDynamically expanding disks grow over time; confirm free space on the host volume before you build.
Answer: Three 4 GB VMs. Memory is the hard limit: overcommit it and the host swaps to disk and everything crawls.
Now you try
Same host, VMs need 6 GB each. How many?
Why does a container need less memory than a VM?
Which resource can you safely oversubscribe?
Build a command line pipeline
Find every failed SSH login in /var/log/auth.log and count them per source address.
- 1. Filter the linesgrep 'Failed password' /var/log/auth.log narrows thousands of lines to the ones that matter.
- 2. Extract the fieldPipe into awk '{print $(NF-3)}' to pull the source IP from each line.
- 3. Group themsort groups identical addresses together; uniq -c then counts each group.
- 4. Rank themsort -nr puts the noisiest address at the top.
Answer: grep 'Failed password' /var/log/auth.log | awk '{print $(NF-3)}' | sort | uniq -c | sort -nr — each command does one job and the pipe passes text along.
Now you try
How would you keep the output for a ticket?
Which command shows a log as it is being written?
What does | actually do?
Prioritise a support queue
Four tickets arrive at once. Which do you take first?
- 1. List impact and urgencyA: one user's mouse. B: the finance team of 12 cannot print payroll, due today. C: a director's laptop is slow. D: the shared file server is offline for everyone.
- 2. Score impactImpact is how many people are stopped: D = whole site, B = 12, A and C = 1 each.
- 3. Score urgencyUrgency is how time-bound it is: B has a same-day deadline; C has none beyond annoyance.
- 4. Combine, do not let seniority decidePriority = impact × urgency. Rank: D, B, then A (blocking one person's work) then C (degraded, still working).
Answer: D, B, A, C — and set expectations with everyone in the queue. A job title is not a priority level; a documented matrix is what you defend the order with.
Now you try
One user cannot log in at all versus ten users with slow email. Which first?
What do you do with the ticket you cannot start yet?
What goes in the ticket when you close it?
Practice exam
Randomly generated from 96 questions. Written answers are graded on the idea, not on exact wording.
CompTIA Tech+ practice exam
20 randomly generated questions drawn from 96 in the CompTIA Tech+ bank.
20 questions. Question order and eligible choice order change with every attempt, and answers are saved as you work.
Practice
A fresh selection of practical work each time you generate.
- Compare Hypervisor and Hostcompare
- Troubleshoot: Loose power or data cablestroubleshoot
- Exam drill: OS functions and editionsexam simulation
- Teach back: how dns fundamentals worksteach back
CompTIA Tech+ (FC0-U71)
Foundational IT concepts: hardware, software, networking, data and the shape of an IT career.
Status: Not Started — no evidence recorded yet
Knowledge readiness
0%Practical readiness
0%Troubleshooting readiness
0%Retention
0%Quiz performance
0%Lab completion
0%Practice completion
0%Overall readiness
0%Domain readiness
Weak domains are listed first.
IT Concepts
0%1 objective · no evidence yet · weak
Infrastructure
0%2 objectives · no evidence yet · weak
Applications and Software
0%2 objectives · no evidence yet · weak
Software Development
0%1 objective · no evidence yet · weak
Data and Database
0%1 objective · no evidence yet · weak
Security
0%1 objective · no evidence yet · weak
Career
0%1 objective · no evidence yet · weak
Exam objectives
Objectives are editable data. Edit, add or remove them and readiness recalculates.
- 1.1 — Explain computing basics, notational systems and unitsIT Concepts · 1 mapped topic(s)
- 2.1 — Identify common hardware components and connectionsInfrastructure · 1 mapped topic(s)
- 2.2 — Explain basic networking concepts and internet service typesInfrastructure · 2 mapped topic(s)
- 3.1 — Compare operating system types and their rolesApplications and Software · 2 mapped topic(s)
- 3.2 — Use the command line for simple file and system tasksApplications and Software · 1 mapped topic(s)
- 4.1 — Explain programming logic, data types and scripting basicsSoftware Development · 1 mapped topic(s)
- 5.1 — Explain data value, storage concepts and backup basicsData and Database · 1 mapped topic(s)
- 6.1 — Apply confidentiality, integrity and availability to everyday practiceSecurity · 2 mapped topic(s)
- 6.2 — Describe IT support roles, ticketing and professional conductCareer · 1 mapped topic(s)
Exam result
IT PATH never marks an exam as passed. You confirm the result yourself.
No exam results recorded.