This free CompTIA ITF+ study guide walks through every content domain the exam tests, organized to the current CompTIA exam objectives.[2] One important note up front: CompTIA retired the ITF+ (FC0-U61) exam on July 31, 2025, and its direct successor is CompTIA Tech+ (FC0-U71).[3]
Heads up: ITF+ is now Tech+ (FC0-U71)
CompTIA officially retired ITF+ (FC0-U61) on July 31, 2025. The current entry-level exam is CompTIA Tech+ (FC0-U71). The good news for studying: Tech+ covers the same six core domains as ITF+, so everything in this guide maps directly to the exam you'll actually book. If you already hold ITF+, your certification is valid for life.
It’s interactive, not a wall of text: every module has built-in checkpoint quizzes, flashcards, and practice questions, so you learn by doing — not just reading.
Tech+ tests six official domains, and we teach them as six study modules. The exam is broad rather than deep, so the winning strategy is to cover all six — investing the most time where the weighting is heaviest (Infrastructure and Security).
Read a module, test yourself at each checkpoint, then drill gaps with our free practice test and flashcards. This guide is a high-yield overview mapped to the official content — not a full computing textbook.
CompTIA ITF+ is one of the 14 CompTIA certifications — explore our CompTIA study guides to compare and prep across the whole family.
ITF+ / Tech+ Exam Snapshot
| Detail | CompTIA Tech+ (FC0-U71) |
|---|---|
| Exam code | FC0-U71 (Tech+) — replaced retired FC0-U61 (ITF+) |
| Questions | Maximum of 70 (ITF+ was 75); multiple choice |
| Time | 60 minutes |
| Passing score | 650 on a 100–900 scale (scaled score, not a percentage) |
| Certifying body | CompTIA |
| Cost | About $138 (single voucher; varies by region/promo) |
| Prerequisites | None — built for absolute beginners |
| Format | Closed-book, proctored (test center or OnVUE online) |
| Result | Pass/fail immediately, with a per-domain score report |
Tech+ covers six domains. Two of them — Infrastructure and Security — together make up 43% of the exam, so that is where to invest first.[2] Study by weight:
Module 1 · IT Concepts & Terminology
One official domain, 13% of the exam. This is the vocabulary and number-sense foundation everything else builds on — how computers represent data, the units we measure it in, and the basic input-process-output model.
1.1 Notational Systems (Binary, Decimal, Hex)
Computers store everything in — base-2, using only 0 and 1. Humans read (base-10), and IT often uses (base-16) as a compact shorthand because each hex digit equals exactly four binary bits. The same value can be written in all three.[2]
To convert binary to decimal, add the place values (1, 2, 4, 8, …) wherever a 1 appears — so 1010 = 8 + 2 = 10. In hex, the letters continue past 9: A = 10, B = 11, up to F = 15. Characters themselves are encoded as numbers via (English letters and symbols) or the much larger (virtually all writing systems).
| Bit position | Place value | Example (decimal 13) |
|---|---|---|
| Bit 8 (leftmost) | 128 | 0 |
| Bit 7 | 64 | 0 |
| Bit 6 | 32 | 0 |
| Bit 5 | 16 | 0 |
| Bit 4 | 8 | 1 |
| Bit 3 | 4 | 1 |
| Bit 2 | 2 | 0 |
| Bit 1 (rightmost) | 1 | 1 |
1.2 Units, Data & the Computing Model
Know the units of measure. Data size is built from the (a single 0 or 1) and the (8 bits), then climbs by roughly 1,000×: KB, MB, GB, TB, PB. Watch the byte-vs-bit trap: storage and file sizes use bytes (MB), while network speed uses bits per second (Mbps).
Petabyte (PB)
~1,000 TB — massive data-center / cloud scale.
Terabyte (TB)
~1,000 GB — large drives and backups.
Gigabyte (GB)
~1,000 MB — RAM, phone storage, large files.
Megabyte (MB)
~1,000 KB — photos, songs, documents.
Kilobyte (KB)
~1,000 bytes — small text files.
Byte (B)
8 bits — typically one character.
Bit
A single 0 or 1 — the smallest unit of data.
Every information system follows the same cycle: input → processing → output → storage. Input devices bring data in, the processes it, output devices present results, and storage saves it for later. Other units you’ll see: hertz (Hz/GHz) for processor speed, and pixels for display resolution.
- 1. Input
Data enters: keyboard, mouse, mic, scanner, sensors.
- 2. Processing
The CPU manipulates the data using instructions.
- 3. Output
Results come out: monitor, speakers, printer.
- 4. Storage
Data is saved for later: SSD, HDD, cloud, flash.
| Unit | Measures | Example |
|---|---|---|
| Byte (B), KB, MB, GB, TB | Data / file size and storage | A photo is a few MB |
| Bits per second (Mbps) | Network speed / throughput | A 100 Mbps connection |
| Hertz (Hz), GHz | Frequency / CPU clock speed | A 3.5 GHz processor |
| Pixels (resolution) | Image / display detail | 1920 × 1080 (Full HD) |
1.3 Value of Data & Boolean Logic
Data is raw facts; information is processed, meaningful data that drives decisions. Organizations capture, correlate, and protect data because it has real business, legal, and personal value. Computers make decisions using logic — values that are either true or false — combined with the operators AND, OR, and NOT.
One last foundational skill the exam expects is a structured troubleshooting method. When something breaks, don’t guess — work the steps in order: identify the problem, form a theory of the probable cause, test it, fix it, verify the fix, and document what you did. Following the sequence beats random trial and error and is exactly how Tech+ frames support scenarios.[2]
- 1
Identify the problem
Gather information, question the user, and reproduce the issue. Note what changed.
- 2
Research / establish a theory of probable cause
Question the obvious; consider the most likely causes first.
- 3
Test the theory to determine cause
If confirmed, plan a fix. If not, form a new theory or escalate.
- 4
Establish a plan and implement the solution
Decide the steps, weigh side effects, then apply the fix (or escalate).
- 5
Verify full system functionality
Confirm the issue is resolved and add preventive measures if useful.
- 6
Document findings, actions, and outcomes
Record the cause and the fix so it's faster to solve next time.
Checkpoint · IT Concepts & Terminology
Question 1 of 10
Which of the following best describes 'Big Data'?
Module 2 · Infrastructure
One official domain, 24% of the exam — the single heaviest. This is the hardware and connectivity layer: what’s inside a computer, how peripherals attach, and how devices reach a network, the cloud, and each other. Invest here first.
2.1 Internal Components & Storage
The core components live on the : the (the processor that runs instructions, rated in GHz with multiple cores), (fast, temporary working memory), and storage. The key distinction the exam loves: (RAM) loses its contents when powered off, while (SSD, HDD, flash) keeps data without power.[2]
| RAM | Storage (SSD/HDD) | |
|---|---|---|
| Purpose | Active programs and data in use | Permanent files, apps, the OS |
| Volatility | Volatile — cleared at power-off | Non-volatile — kept without power |
| Speed | Very fast | Slower than RAM (SSD faster than HDD) |
| More of it helps | Running more programs at once | Keeping more files |
For long-term storage, compare an (flash, fast, durable, no moving parts) with an (spinning platters, cheaper per gigabyte, higher capacity, slower). Both are non-volatile. Choose by balancing capacity against speed and cost.
2.2 Ports, Peripherals & Connections
are external devices — keyboards, mice, monitors, printers — that connect through ports. is the universal connector for most peripherals (and supplies power); USB-C is the reversible modern form. Displays use HDMI or DisplayPort, and wired networking uses an Ethernet (RJ45) connector.
| Connector | Used for |
|---|---|
| USB / USB-C | Peripherals, charging, data transfer |
| HDMI | Video + audio to TVs and monitors |
| DisplayPort | Video + audio, common on PCs/monitors |
| Ethernet (RJ45) | Wired network connection |
| 3.5 mm audio | Headphones, speakers, microphones |
| Thunderbolt | High-speed data, video, and power |
2.3 Networking, Cloud & Virtualization
Devices on a network need an (a logical address) and have a (a hardware address). A connects devices on the same , while a connects different networks (your to the internet, the largest ). Two services make networks usable: auto-assigns IP settings,[7] and translates names like example.com into IP addresses.[8]
Tech+ adds modern infrastructure that ITF+ touched only lightly. delivers resources over the internet on demand, in three models — , , and .[4] runs multiple virtual machines on one physical host via a , and the Internet of Things (IoT) connects everyday devices to the network.
IaaS — Infrastructure as a Service
You rent raw compute, storage, and networking (virtual machines). You manage the OS and apps; the provider manages hardware.
Examples: Virtual servers, cloud storage
PaaS — Platform as a Service
You get a ready platform to build and deploy apps. The provider manages the OS, runtime, and infrastructure.
Examples: App hosting, managed databases
SaaS — Software as a Service
You use finished software over the internet. The provider manages everything — you just log in and use it.
Examples: Gmail, Microsoft 365, Salesforce
| Device / service | What it does |
|---|---|
| Switch | Connects devices on the same LAN (uses MAC addresses) |
| Router | Connects different networks (uses IP addresses) |
| Modem | Links your network to your internet service provider |
| Access point | Broadcasts Wi-Fi so wireless devices can join |
| DHCP | Automatically assigns IP address, mask, gateway, DNS |
| DNS | Translates domain names into IP addresses |
Checkpoint · Infrastructure
Question 1 of 10
What is the primary function of a Content Delivery Network (CDN) in web technology?
Module 3 · Applications & Software
One official domain, 18% of the exam. This domain covers the software that runs a computer and the programs you use on it — operating systems, application types, licensing, browsers, and how files are organized.
3.1 Operating Systems & Interfaces
The is the core software that manages hardware and resources and runs your applications — Windows, macOS, Linux, Android, and iOS. Operating systems come in workstation, server, and mobile varieties. You interact with them through a (visual, mouse-driven) or a (typed commands — faster and scriptable for IT pros).[2]
| Type | What it is | Examples |
|---|---|---|
| System software | Runs and supports the computer itself | Operating system, drivers, utilities |
| Application software | Does user tasks | Browser, word processor, spreadsheet |
| Productivity software | Everyday work tools | Word, Excel, email, slides |
| Utility software | Maintains the system | Antivirus, backup, disk cleanup |
3.2 Software Types, Licensing & Browsers
Software comes under different licenses. publishes its code for anyone to use and modify (often free); is closed and licensed by a vendor. Licensing models include single-use, group/volume, concurrent, and subscription (recurring fee, as with SaaS) versus a one-time perpetual license. The is the agreement you accept that governs use.
| License | Meaning |
|---|---|
| Single-use | One installation/user per purchase |
| Group / volume | Multiple installations under one agreement |
| Concurrent | A limited number of simultaneous users |
| Subscription | Recurring fee for ongoing access and updates (SaaS) |
| Perpetual | One-time purchase of a specific version |
| Open-source | Code is public; often free to use and modify |
The web browser is a core application. Know its features: the cache stores local copies of pages (clearing it fixes some display issues), cookies remember settings and logins, private/incognito mode skips saving history, and extensions add features but should come only from trusted sources.
3.3 Files, Formats & Management
A (.docx, .jpg, .mp4) tells you a file’s type and which app opens it. Good file managementmeans organizing files into clearly named folders and using copy, move, rename, and delete deliberately; a file’s path describes its location.
| Category | Formats |
|---|---|
| Documents | .txt, .rtf, .docx, .pdf, .odt |
| Images | .jpg, .png, .gif, .bmp, .tiff |
| Audio | .mp3, .wav, .flac, .aac |
| Video | .mp4, .mov, .avi, .mkv |
| Compressed / archive | .zip, .rar, .7z, .tar, .gz |
Checkpoint · Applications & Software
Question 1 of 10
What is the primary purpose of a hypervisor in virtualization technology?
Module 4 · Software Development Concepts
One official domain, 13% of the exam. You won’t have to write programs, but you do need the vocabulary and logic of programming — language types, data types, and the control structures that make code do something.
4.1 Languages & Data Types
Languages fall into categories. A (C, C++) is translated to machine code before running — fast. An (Python, JavaScript) runs line by line — more flexible. A (HTML, XML) defines structure, not logic, and a query language (SQL) works with data.[2]
| Type | Purpose | Examples |
|---|---|---|
| Compiled | Translated to machine code first (fast) | C, C++ |
| Interpreted | Runs line by line at run time (flexible) | Python, JavaScript |
| Markup | Defines structure/format, not logic | HTML, XML |
| Query | Retrieves and manipulates data | SQL |
| Scripting | Automates tasks | Python, Bash, PowerShell |
Every value has a : integer (whole number), float (decimal), char (one character), string (text), or (true/false). Choosing the right type avoids errors and uses memory efficiently.
| Data type | Holds | Example |
|---|---|---|
| Integer | Whole numbers | 42, -7 |
| Float | Decimal numbers | 3.14, -0.5 |
| Char | A single character | 'A' |
| String | Text (sequence of characters) | "Hello" |
| Boolean | True or false | true |
4.2 Logic: Variables, Branching & Loops
A is a named container for a value that can change (score = 10); a never changes. Programs are built from three control structures: sequence (steps in order), (if/else decisions), and (repeating code). Conditions use comparison operators (>, <, ==) and Boolean logic (AND, OR, NOT).
| Structure | What it does | Example use |
|---|---|---|
| Sequence | Runs steps in order | Step 1, then step 2, then step 3 |
| Branching (if/else) | Chooses a path based on a condition | If score ≥ 650, print "Pass" |
| Looping (for/while) | Repeats a block of code | Process every row in a list |
4.3 Organizing Code
Larger programs are organized with functions (named, reusable blocks of logic), arrays/lists (ordered collections of values), and objects (units that bundle data and actions). A is the step-by-step plan behind it all; pseudocode and flowcharts help plan that logic before coding. Comments explain code for humans.
Checkpoint · Software Development Concepts
Question 1 of 10
In the context of software development, what does the term 'Agile' refer to?
Module 5 · Data & Database Fundamentals
One official domain, 13% of the exam. Databases are how organizations store and retrieve data at scale. You need the core structure (tables, records, fields, keys), the basics of SQL, and why databases beat simple files.
5.1 Databases, Tables & Keys
A is an organized collection of data, managed by a (MySQL, PostgreSQL, Microsoft SQL Server). A stores data in (rows) and (columns) across linked tables. A uniquely identifies each record, and a links one table to another’s primary key.[2]
Databases beat a single flat file (like one big spreadsheet) because they scale, prevent duplicate data, enforce rules and relationships, and let many users work at once. Non-relational (NoSQL) databases trade strict tables for flexibility with unstructured data.
| Term | Meaning |
|---|---|
| Table | Stores data about one entity (rows + columns) |
| Record (row) | One complete entry (e.g., one customer) |
| Field (column) | One attribute (e.g., LastName) |
| Primary key | Uniquely identifies each record (no duplicates) |
| Foreign key | References another table's primary key (a relationship) |
| Schema | The blueprint of tables, fields, and relationships |
5.2 SQL, Backups & Data Concepts
is the standard language for relational databases.[9] Its data-manipulation commands are SELECT (read), INSERT (add), UPDATE (change), and DELETE (remove); its data-definition commands are CREATE, ALTER, and DROP. A query is a request for data, and a WHERE clause filters which rows come back.
| Command | Category | What it does |
|---|---|---|
| SELECT | Data manipulation | Retrieves (queries) data |
| INSERT | Data manipulation | Adds new rows |
| UPDATE | Data manipulation | Changes existing rows |
| DELETE | Data manipulation | Removes rows |
| CREATE / ALTER / DROP | Data definition | Makes, changes, or deletes structures |
Finally, protect data: a backup is a recent copy for recovery; an archive is long-term storage of inactive data. The 3-2-1 rule — three copies, two media, one offsite — guards against loss, hardware failure, and ransomware. Data can also move between systems via formats like CSV, JSON, and XML.
Checkpoint · Data & Database Fundamentals
Question 1 of 10
In the context of database management, what is 'SQL'?
Module 6 · Security
One official domain, 19% of the exam — the second heaviest. Security on Tech+ is about foundational concepts and good habits: the goals of security, how we verify identity, and how to recognize and defend against common threats.
6.1 CIA Triad & Authentication
Everything anchors to the : (only authorized access), (data stays accurate), and (accessible when needed).[6] proves who you are; then decides what you can do.
Confidentiality
Only authorized people can access the data.
How: Encryption, access controls, authentication
Integrity
Data stays accurate and unaltered.
How: Hashing, checksums, version control
Availability
Systems and data are accessible when needed.
How: Backups, redundancy, uptime planning
Identity is verified with authentication factors: something you know (password), something you have (a phone code), and something you are (a fingerprint). combines two or more for far stronger protection — even a stolen password isn’t enough.[5] protects confidentiality, scrambling data at rest and in transit (HTTPS/TLS, VPN), while protects integrity.
Something you KNOW
A secret you remember.
Examples: Password, PIN, security question
Something you HAVE
A physical item you possess.
Examples: Phone code, security key, smart card
Something you ARE
A unique physical trait.
Examples: Fingerprint, face, iris scan
6.2 Threats, Malware & Best Practices
is malicious software: viruses (attach to files), worms (self-spread), trojans (disguised), (encrypts files for payment), and spyware (secretly gathers info). and other attacks target people, not systems — tricking them into revealing information or clicking malicious links.[6]
✓ Good security habits
- Long, unique passwords in a password manager
- Turn on multi-factor authentication (MFA)
- Keep software patched and antivirus updated
- Keep 3-2-1 backups against ransomware
- Verify unexpected requests through another channel
✗ Risky behavior
- Reusing the same password everywhere
- Clicking links/attachments in unexpected emails
- Ignoring updates and running old software
- Sensitive logins on open public Wi-Fi (no VPN)
- Using an admin account for everyday tasks
Checkpoint · Security
Question 1 of 10
Which technology is primarily used to create a secure communication channel over an unsecured network?
How to Use This ITF+ / Tech+ Study Guide
This guide is built to be worked, not just read. The most efficient path to a pass:
- Study by weight. Infrastructure (24%) and Security (19%) are 43% of the exam — start there, then Applications and Software (18%).
- Cover all six domains. Tech+ rewards breadth — don’t skip a domain because it feels unfamiliar; entry-level questions touch everything.
- Check off as you go. Use the Study Guide Contents to mark each section done; it raises your exam-readiness score.
- Take every checkpoint. The end-of-module quizzes show you exactly which domains need another pass.
- Drill weak spots. Send your weak area into the flashcards and a practice test until the score climbs.
ITF+ / Tech+ Concept Questions
Common foundational IT concepts candidates search while studying for ITF+ / Tech+ — each answered briefly and backed by an official source. Test yourself, then drill them as flashcards.
ITF+ / Tech+ Glossary
The high-yield ITF+ / Tech+ terms in one place — hover any dotted term in the guide, or flip the whole deck here as a self-grading flashcard set.
- Algorithm
- A step-by-step set of instructions to solve a problem.
- ASCII
- A character-encoding standard that maps letters and symbols to numbers (e.g., A = 65).
- Authentication
- Verifying who a user is — proving identity.
- Authorization
- Determining what an authenticated user is allowed to do or access.
- Availability
- Ensuring systems and data are accessible when needed.
- Binary
- The base-2 number system (only 0 and 1) that computers use to store and process all data.
- Bit
- A single binary digit — a 0 or a 1 — the smallest unit of digital data.
- Boolean
- A value that is either true or false; the basis of computer logic.
- Branching
- A control structure (if/else) that runs different code based on a condition.
- Byte
- A group of 8 bits; can represent 256 values and typically stores one character.
- CIA triad
- The three goals of information security: Confidentiality, Integrity, and Availability.
- CLI
- Command-Line Interface — interaction by typing text commands.
- Cloud computing
- Delivering computing resources over the internet on demand, usually billed pay-as-you-go.
- Compiled language
- A language translated entirely into machine code before running (e.g., C); fast.
- Confidentiality
- Ensuring only authorized people can access data.
- Constant
- A named value that does not change during program execution.
- CPU
- Central Processing Unit — the processor that executes instructions; the 'brain' of the computer.
- Data type
- The category of a value — integer, float, string, char, or boolean.
- Database
- An organized, structured collection of data that can be easily accessed and managed.
- DBMS
- Database Management System — software to create, query, and maintain databases (MySQL, SQL Server).
- Decimal
- The everyday base-10 number system using digits 0–9.
- DHCP
- Dynamic Host Configuration Protocol — automatically assigns IP addresses and network settings to devices.
- DNS
- Domain Name System — translates human-readable names like example.com into IP addresses.
- Encryption
- Scrambling data with a key so only authorized parties can read it.
- EULA
- End-User License Agreement — the contract governing how you may legally use software.
- Field
- A single column (attribute) in a database table.
- File extension
- The suffix after a filename's dot (.docx, .jpg, .exe) indicating the file type.
- Firewall
- Hardware or software that filters network traffic by rules to block unauthorized access.
- Foreign key
- A field that references another table's primary key, creating a relationship between tables.
- GUI
- Graphical User Interface — interaction via windows, icons, and a mouse.
- Hashing
- A one-way function turning data into a fixed-length value, used for passwords and integrity checks.
- HDD
- Hard Disk Drive — magnetic spinning-platter storage; cheaper and higher-capacity but slower than an SSD.
- Hexadecimal
- The base-16 number system (0–9 then A–F); a compact way to write binary, where each hex digit equals 4 bits.
- Hypervisor
- Software that creates and manages virtual machines, sharing one host's hardware among them.
- IaaS
- Infrastructure as a Service — renting raw compute, storage, and networking from a cloud provider.
- Integrity
- Ensuring data is accurate and unaltered.
- Interpreted language
- A language executed line by line at run time by an interpreter (e.g., Python); flexible.
- IP address
- A unique logical address identifying a device on a network so data can be routed to it.
- LAN
- Local Area Network — a network covering a small area such as a home or office.
- Least privilege
- Granting users and programs only the minimum access they need to do their job.
- Looping
- A control structure (for/while) that repeats a block of code.
- MAC address
- A unique hardware address burned into a network adapter, used for local (Layer 2) delivery.
- Malware
- Malicious software designed to harm or exploit systems (viruses, worms, ransomware, spyware).
- Markup language
- A tag-based language defining structure or format, such as HTML or XML.
- MFA
- Multi-Factor Authentication — requiring two or more proofs of identity from different categories.
- Motherboard
- The main circuit board that connects and powers the CPU, RAM, storage, and expansion cards.
- Non-volatile storage
- Storage (like SSD, HDD, or flash) that retains data without power.
- Open-source software
- Software whose source code is published for anyone to view, use, and modify, often free.
- Operating system
- The core software that manages hardware and resources and runs applications (Windows, macOS, Linux).
- PaaS
- Platform as a Service — a managed platform for building and deploying applications.
- Peripheral
- An external device connected to a computer, such as a keyboard, mouse, monitor, or printer.
- Phishing
- A social-engineering attack using fake messages to trick people into revealing information.
- Primary key
- A field that uniquely identifies each record in a table; no duplicates or nulls.
- Programming language
- A formal language used to write instructions a computer can execute (Python, Java, C).
- Proprietary software
- Closed-source software licensed by a vendor under specific terms, usually for a fee.
- RAM
- Random Access Memory — fast, volatile working memory that holds running programs; cleared when power is lost.
- Ransomware
- Malware that encrypts files and demands payment to restore them.
- Record
- A single row in a database table — one complete set of related fields.
- Relational database
- A database that stores data in linked tables of rows and columns, queried with SQL.
- Router
- A device that connects different networks and forwards traffic between them (e.g., home network to internet).
- SaaS
- Software as a Service — ready-to-use software delivered over the internet (e.g., Gmail).
- Social engineering
- Manipulating people, rather than systems, into giving up information or access.
- SQL
- Structured Query Language — the standard language for working with relational databases.
- SSD
- Solid-State Drive — fast, durable flash-based storage with no moving parts.
- Switch
- A device that connects multiple devices on the same local network and forwards traffic by MAC address.
- Unicode
- A universal character-encoding standard representing text from virtually all writing systems.
- USB
- Universal Serial Bus — the common port for connecting peripherals and supplying power.
- Variable
- A named container storing a value that can change while a program runs.
- Virtualization
- Running multiple virtual machines on one physical host, managed by a hypervisor.
- Volatile memory
- Memory (like RAM) that loses its contents when power is removed.
- WAN
- Wide Area Network — a network spanning large distances; the internet is the largest WAN.
ITF+ / Tech+ Study Guide FAQ
No. CompTIA retired the IT Fundamentals+ (ITF+) FC0-U61 exam on July 31, 2025. Its direct successor is CompTIA Tech+ (FC0-U71). If you already hold ITF+, your certification remains valid for life, but new candidates should study for and register for Tech+ instead. This guide teaches the current Tech+ FC0-U71 content.
CompTIA Tech+ (FC0-U71) is the modernized successor to ITF+. It is an entry-level, vendor-neutral certification covering foundational IT knowledge across the same six core domains, with updated topics like cloud, virtualization, AI, and IoT plus more hands-on content. Studying ITF+ material still maps directly to Tech+.
The Tech+ FC0-U71 exam has a maximum of 70 multiple-choice questions and a 60-minute time limit. Most questions have a single correct answer; some ask you to select more than one. (The retired ITF+ FC0-U61 used a maximum of 75 questions in the same 60 minutes.)
You need a scaled score of 650 on a scale of 100 to 900 — the same threshold ITF+ used. Because scoring is weighted and scaled, this does not map to a fixed percentage of questions correct, though it corresponds to roughly 72% mastery. You get your pass/fail result immediately.
Per the official objectives: Infrastructure (24%), Security (19%), Applications and Software (18%), IT Concepts and Terminology (13%), Software Development Concepts (13%), and Data and Database Fundamentals (13%). Infrastructure carries the most weight, followed by Security.
Study by weight: invest most in Infrastructure (24%) and Security (19%), then Applications and Software (18%). Read each module, take the checkpoint quiz, then drill weak spots with our free practice test and flashcards. Because Tech+ is broad and entry-level, the key is covering all six domains rather than going deep on one.
No. There are no prerequisites or required experience for CompTIA Tech+ — it is designed for absolute beginners, students, and career-changers exploring IT. Basic computer literacy helps you absorb the material faster, but anyone can register and sit the exam.
Tech+ is considered easy relative to other CompTIA certifications; the main challenge is the breadth of topics, from hardware and networking to databases, programming logic, and security. A voucher costs roughly $138 USD (it varies by region and promotion). Broad, consistent practice is the most reliable path to a first-attempt pass.
Yes — this study guide, the module checkpoints, the glossary, the concept questions, the practice test, and the flashcards are 100% free with no account required.
References
- 1.CompTIA. “CompTIA Tech+ (formerly IT Fundamentals / ITF+) — Certification Overview.” comptia.org. ↑
- 2.CompTIA. “CompTIA Tech+ (FC0-U71) Exam Objectives.” comptia.org. ↑
- 3.CompTIA. “CompTIA Exam Retirement Dates (ITF+ FC0-U61 retired July 31, 2025).” comptia.org. ↑
- 4.National Institute of Standards and Technology. “SP 800-145 — The NIST Definition of Cloud Computing.” csrc.nist.gov. ↑
- 5.National Institute of Standards and Technology. “SP 800-63B — Digital Identity Guidelines (Authentication).” pages.nist.gov. ↑
- 6.National Institute of Standards and Technology. “NIST Glossary (Confidentiality, Integrity, Availability, Encryption).” csrc.nist.gov. ↑
- 7.Internet Engineering Task Force. “RFC 2131 — Dynamic Host Configuration Protocol.” rfc-editor.org. ↑
- 8.Internet Engineering Task Force. “RFC 1035 — Domain Names: Implementation and Specification.” rfc-editor.org. ↑
- 9.ISO/IEC. “ISO/IEC 9075 — Database Languages — SQL.” iso.org. ↑
- 101.Internet Engineering Task Force (IETF). “RFC 791 — Internet Protocol.” rfc-editor.org, accessed 19 June 2026. ↑
- 102.National Institute of Standards and Technology (NIST). “NIST Small Business Cybersecurity — Phishing.” nist.gov, accessed 19 June 2026. ↑
- 103.National Institute of Standards and Technology (NIST). “NIST Small Business Cybersecurity — Ransomware.” nist.gov, accessed 19 June 2026. ↑

Career Employer
Career Employer is the ultimate resource to help you get started working the job of your dreams. We cover topics from general career information, career searching, exam preparation with free study materials, career interviewing, and becoming successful in your career of choice.
All PostsCareer Employer’s Editorial Process
Here at Career Employer, we focus a lot on providing factually accurate information that is always up to date. We strive to provide correct information using strict editorial processes, article editing, and fact-checking for all of the information found on our website. We only utilize trustworthy and relevant resources. To find out more, make sure to read our full editorial process page here.
