EnglishDeutschFrançaisEspañolPortuguês

CompTIA · COMPTIA-TECH · Beginner

CompTIA Tech+ — Practice Questions and Mock Exam

Practice with realistic COMPTIA-TECH questions aligned to the exam objectives. Alex explains every answer, and your readiness score shows what to study next.

70Questions
60minTime Limit
650/ 900Pass Score

Checked against CompTIA · August 2026Current exam version

About the exam

CompTIA Tech+ (FC0-U71) is the essential certification for anyone exploring a career in technology. It validates foundational knowledge and hands-on skills needed to navigate today's digital world, covering core computing concepts, IT infrastructure, applications, software development basics, database fundamentals, and security. No prior experience is required. Tech+ replaced the former CompTIA ITF+ (IT Fundamentals+) certification and launched July 16, 2024 as exam version V6.

What's on the exam

Infrastructure carries the most weight at 24%, covering computing devices, internal components, peripherals, and basic networking and cloud service models. Security follows at 19%, then Applications and Software at 18%. IT Concepts and Terminology, Software Development Concepts, and Data and Database Fundamentals tie for the smallest share at 13% each, together covering foundational vocabulary, basic programming building blocks, and database concepts.

The distribution reflects Tech+'s breadth-over-depth design: six domains split fairly evenly, none dominating the way a single domain can on a specialist exam. Infrastructure and Security together account for 43% of the questions, so weighting study time toward hardware, networking basics, and core security concepts covers more ground than spreading effort equally across all six areas.

Exam blueprint: COMPTIA-TECH

IT Concepts and Terminology13%

Explain basic computing concepts such as input, processing, output, and storage, compare notational systems and units of measure, and apply a structured troubleshooting methodology to resolve IT problems.

≈ 4 h
Infrastructure24%

Compare common computing devices, internal components, and storage types, and install and configure peripheral devices and I/O interfaces. Also covers virtualization and cloud service models, internet connection types, basic networking concepts, and small wireless network capabilities.

≈ 7 h
Applications and Software18%

Identify the components and purpose of an operating system, explain the purpose of common productivity, collaboration, and browsing software, configure web browser features, and identify common uses of AI such as chatbots and generative content.

≈ 5 h
Software Development Concepts13%

Compare categories of programming languages, learn the basic data types every language works with, understand core building blocks like variables, functions, and objects, and apply organizational and logic techniques such as branching and looping.

≈ 4 h
Data and Database Fundamentals13%

Explain why organizations treat data as an asset, what a database gives you that a flat file doesn't, how relational and non-relational structures differ, and the basics of keeping backups recoverable.

≈ 4 h
Security19%

Ground yourself in confidentiality, integrity, and availability along with privacy and AAA concepts, apply device and password best practices, know where encryption typically gets used, and configure a small wireless network securely.

≈ 6 h

Exam format and question types

The exam consists of a maximum of 70 multiple-choice questions to be completed in 60 minutes — about 50 seconds per question, with no performance-based questions to slow the pace. The passing score is 650 on a scale of 100 to 900.

Question types: COMPTIA-TECH

Multiple Choice100%

Pick the single best answer from four or five options — the exam's bread and butter.

CompTIA confirms these question types — a percentage split is not published; the shares reflect our exam-aligned question pool.

Try five COMPTIA-TECH questions

Five questions straight from our CompTIA Tech+ pool. Answer one — Alex explains the why.

Security1 / 5

A home user wants to prevent unauthorized devices from connecting to their wireless network. Which configuration change would be MOST effective?

AlexFull explanation from Alex

Access control on a wireless network comes from cryptography, not from obscurity. Turning on WPA3 with a strong password means a device has to prove it knows the passphrase before it is allowed to associate, and everything it sends afterwards is encrypted. The personal mode uses Simultaneous Authentication of Equals, a key-establishment handshake built to resist password-guessing attempts, so capturing the exchange does not hand an attacker a wordlist attack the way older schemes did.

The three distractors are all obscurity measures, and each fails for the same reason: the network still announces itself to anyone listening. Hiding the network name only removes it from the friendly list, because the name still travels in frames that clients emit and scanning tools read it in seconds. Lowering the transmit power shrinks coverage a little, which inconveniences legitimate users indoors while a directional antenna outside still reaches. Changing the router's management address protects the admin page, not the radio, and a device can join the network without ever visiting that page.

Exam tip: when a wireless question asks for the most effective control, choose the authentication and encryption answer. The obscurity options exist to catch candidates who read harder to find as harder to enter.

Sourcecomptia.org

Infrastructure2 / 5

A company decides to keep some of their servers in their own data center while also using AWS for additional capacity during peak periods. Which cloud deployment model describes this approach?

AlexFull explanation from Alex

Read the scenario for its two ingredients: servers the company owns and operates in its own data center, plus capacity rented from a public provider for peaks. A deployment made of two or more distinct cloud infrastructures that stay separate entities while being bound together so data and applications can move between them is exactly what hybrid means, and bursting to absorb peak load is the textbook example.

Each distractor drops one ingredient. Public cloud alone would put the whole workload on someone else's infrastructure, with nothing left in the company data center. Private cloud alone is infrastructure provisioned for a single organization, which describes the on-premises half but not the rented capacity. Community cloud is shared by several organizations with common concerns, such as a consortium or a regulated sector, and the scenario never mentions another organization at all.

Exam tip: cloud deployment models are about who the infrastructure serves, not about which provider is named. Count the distinct infrastructures in the scenario and check whether they stay separate but connected, because two connected infrastructures is the hybrid signature.

Sourcecomptia.org

Software Development Concepts3 / 5

Which programming language category requires a compiler to convert source code into machine code BEFORE the program can be executed?

AlexFull explanation from Alex

The question hinges on when translation happens. In a compiled language the whole program is translated ahead of time: you compile each source module into an object file, then link those object files into a single executable, and only that executable runs. Nothing is translated while the program is running, which is why compiled programs start quickly and why a syntax error surfaces at build time rather than when a user finally reaches that line.

Interpreted languages invert this. The source is read and executed statement by statement at run time, so there is no separate build step producing a machine-code binary. Markup languages describe the structure and presentation of a document rather than instructions to execute, so nothing about them is compiled. Query languages express what data you want from a database, and the database engine plans and runs the query, which again is not ahead-of-time translation of a program.

Exam tip: the phrases before execution and at run time are doing all the work in this family of questions. Compiling means translate first and run later; interpreting means translate and run in the same pass.

Sourcecomptia.org

Applications and Software4 / 5

Which type of software allows organizations to view, modify, and distribute the source code freely?

AlexFull explanation from Alex

The defining property is what the license permits, not what the software costs. Open source software ships with its source code available under a license that lets anyone read it, change it, and pass modified copies on to others. Access to the source is the precondition for the freedom to study and modify a program, which is why the license and the source always travel together.

The distractors describe other axes entirely. Proprietary software keeps the source closed and owned by the vendor, so you receive a binary and permission to run it. Freeware costs nothing but says nothing about the source code, and most freeware is closed source, which is the trap in this item because the word free is doing double duty for price and for permission. Subscription software describes how you pay, per period rather than per copy, and a subscription business model sits happily on top of open source code.

Exam tip: separate three independent questions before answering. What does it cost, how do you pay for it, and what are you allowed to do with the code? Only the third defines open source, and marketing copy deliberately blurs the first two into it.

Sourcecomptia.org

IT Concepts and Terminology5 / 5

An internet service provider advertises speeds of 200 Mbps. A user downloads a 100 MB file and expects it to complete in 0.5 seconds. Why does the download take approximately 4 seconds instead?

AlexFull explanation from Alex

The arithmetic is right; the units are not. Connection speeds are quoted in megabits per second, while file sizes are quoted in megabytes, and there are eight bits in one byte. So a 200 Mbps link delivers about 25 megabytes per second, and a 100 MB file needs roughly four seconds, which is exactly what the user observed. The half-second expectation came from silently treating megabits and megabytes as the same unit.

The other explanations invent a cause where the units already account for the result. Throttling would produce a rate below the advertised one, but this link is delivering its advertised rate once you convert correctly. Latency is round-trip delay measured in milliseconds; it affects how quickly a transfer starts, not a fixed multi-second tax on every download. Compression, if anything, makes a transfer finish sooner, and decompressing on a modern machine is far faster than a 200 Mbps link can feed it.

Exam tip: watch the capitalization in the unit itself. A lowercase b means bits and an uppercase one means bytes, so Mbps and MB/s differ by a factor of eight. Convert the units before reasoning about anything else.

Sourcecomptia.org

330 questions, built like the exam

Every domain of the COMPTIA-TECH exam has enough questions in the pool to practice it in depth. A mock exam asks 70 questions in one sitting, on the same 60-minute clock as the real thing.

Audit record: COMPTIA-TECH

Spec check against CompTIAAugust 14, 2026

last verified against the official CompTIA source

Pass mark650 / 900

as published by CompTIA

Blueprint coverage31 official objectives

across 6 domains, from the official exam guide

Pool size330 questions

= 4 full practice exams of 70 questions each — never the same question twice

Domain coverageall 6 domains at official weight

IT Concepts and Terminology 43 · Infrastructure 79 · Applications and Software 59 · Software Development Concepts 43 · Data and Database Fundamentals 43 · Security 63

Canonically validated330 of 330

each verified against official CompTIA documentation — answer, options and explanation, source cited

Methodology openly documented.How questions are made →

Preparing for COMPTIA-TECH

How long you'll need depends on how much hands-on experience you bring. The rest is set by the vendor: how the exam is delivered, how soon you can retake it, and how long the credential stays valid.

CompTIA Tech+ is delivered at Pearson VUE testing centers or online with Pearson OnVUE, in English and Japanese. CompTIA issues it under two exam codes: FC0-U71 does not expire, while the FC0-U71-CE version is valid for five years and requires continuing education to renew.

Your plan: COMPTIA-TECH

Preparation

Study time20–45 h

typically around 20 h if you already work with this stack, around 45 h coming to it fresh

LevelBeginner
Worth having firstNo prerequisites. This is CompTIA's entry-level certification for complete beginners.

Exam day & after

DeliveryPearson VUE testing center or OnVUE online proctoring
Retake policyNo waiting period between 1st and 2nd attempts; 14-day minimum wait from 3rd attempt onward; full exam price each attempt
Stays validNone — Tech+ does not require renewal or continuing education

The hours are our own planning estimate — CompTIA publishes no preparation time for this exam. A starting point for your calendar, not a target.

Common pitfalls

Unit-conversion questions appear often and get underestimated — binary and hexadecimal math, and converting between bits, bytes, kilobytes, gigabytes, and terabytes, show up as calculation problems rather than definitions. Encryption and authentication get confused inside the Security domain even though they solve different problems: one protects data, the other verifies identity. With roughly 50 seconds per question, time management alone eliminates candidates who haven't practiced at pace, and Infrastructure and Security together account for 43% of the exam, more than any other domain pairing, so study time should track that weighting rather than splitting evenly across all six domains.

Watch list: COMPTIA-TECH

  1. 01Breadth Over Depth

    Covers 6 domains at a surface level — balance study time across all areas

  2. 02Basic Terminology

    Know IT vocabulary: CPU, RAM, SSD, IP address, DNS, HTTP, SQL, API, etc.

  3. 03Security Basics

    Understanding passwords, malware types, phishing, and basic security practices

  4. 04Software Concepts

    Basic programming concepts (variables, loops, functions) and database fundamentals (tables, queries)

Pass-IT trains you on exactly these weak spots — adaptive & spaced →

Frequently asked questions

How long is the CompTIA Tech+ exam?

The CompTIA Tech+ exam has 70 questions and a 60-minute time limit.

What is the passing score for CompTIA Tech+?

You need 650 / 900 to pass the CompTIA Tech+ exam.

What are common mistakes on the CompTIA Tech+ exam?

Common pitfalls include: Breadth Over Depth, Basic Terminology, Security Basics, Software Concepts. Focus study time on these areas to avoid losing points.

Does CompTIA Tech+ expire?

No. Tech+ carries no renewal requirement and no continuing-education cycle, which makes it the exception among CompTIA certifications. Once you pass it, it stays on your record.

What does the Tech+ exam cover?

Infrastructure is the largest domain at 24%, followed by security at 19% and applications and software at 18%. IT concepts and terminology, software development concepts and data and database fundamentals take 13% each. It is a breadth exam by design, so no single area runs deep.

Is Tech+ suitable for a complete beginner?

Yes, that is exactly who it is written for. CompTIA sets no prerequisite, and the catalog budget is around 30 hours, the shortest in the CompTIA range. It is the entry point for people changing careers into IT rather than a credential a working technician needs.

What should you take after Tech+?

A+ is the standard next step, and it is two exams: Core 1 for hardware and networking, Core 2 for operating systems and security. Network+ follows if you are heading towards infrastructure and Security+ if you are heading towards defence. None of them require Tech+ first.

What happens if you fail Tech+?

You can rebook the second attempt immediately with no waiting period. From the third attempt onwards there is a 14-day minimum wait.

Pass-IT is an independent study tool, not affiliated with or endorsed by CompTIA; CompTIA and exam names are trademarks of their respective owners.

One certification. One payment.

Full COMPTIA-TECH access

Get the full question pool for this certification. Alex explains every answer, and your readiness score shows what to work on next.

Buy COMPTIA-TECH access for $29.99One payment. Lifetime access to this certification.
Take the free readiness check20 questions. No card. See what to study before you buy.

Reach 80% readiness and pass — or your money back.

How the score works →