Quick Answer
Objective 4.10 — “Explain basic concepts related to artificial intelligence (AI)” — is an objective on the current CompTIA A+ Core 2 exam (220-1202). It is new to the 220-1200 series and did not exist on 220-1102. It lives in domain 4.0 Operational Procedures, which accounts for 21% of Core 2. It covers exactly four areas: application integration; policy (appropriate use, plagiarism); limitations (bias, hallucinations, accuracy); and private vs. public (data security, data source, data privacy). Core 2 is a maximum of 90 questions in 90 minutes; passing score 700 on a 100–900 scale.

What objective 4.10 actually covers

Most A+ material predates this objective, which makes it easy to over- or under-study. Here is the complete sub-topic list as CompTIA publishes it — nothing else sits under 4.10.

4.10 — Explain basic concepts related to artificial intelligence (AI)
  • Application integration
  • Policy
    • Appropriate use
    • Plagiarism
  • Limitations
    • Bias
    • Hallucinations
    • Accuracy
  • Private vs. public
    • Data security
    • Data source
    • Data privacy

Note the verb: explain. Nothing here asks you to train a model or describe a neural network. And note where it sits — in Operational Procedures, next to documentation, change management and professionalism. That placement is the signal: AI is treated as something you use responsibly at work, with rules and risks, the same way backups and change control are.

Why CompTIA added this

Exam objectives follow the field. Between the 220-1102 and 220-1202 revisions, AI stopped being a separate category of product and started appearing inside tools support teams already run — ticketing, remote monitoring, documentation search, email security, endpoint tooling. A tech starting a help desk job now is likely to meet AI-generated output on day one, whether or not anyone mentioned it. The risks therefore landed on the support desk before the governance did: someone has to decide whether it is acceptable to paste a customer's error log into a chatbot, and often that person is a tier-one tech deciding in the moment. Hence an objective about judgement rather than technology.

Application integration

Application integration means AI capability delivered inside software you already use, rather than as a separate site you deliberately visit. In support work that looks like:

Integration changes the trust question. A suggestion appearing in a field looks like part of the application, indistinguishable from a database lookup, and techs accept it with less scrutiny than identical text from a chatbot — purely because of where it appeared. So know three things about any tool in your stack: whether it has AI features, whether they can be disabled, and whether using them sends data outside the organisation. The third turns an integration question into a data loss prevention question.

Policy

Objective 4.10 names two policy sub-topics: appropriate use and plagiarism.

Appropriate use

An acceptable use policy for AI answers a few concrete questions: which tools are approved, what data may never be entered, whether output must be reviewed by a human before it reaches a customer or production system, and who owns the output.

In many organisations no such policy exists yet, and the absence of a policy is not the absence of use — staff use these tools anyway, without guidance, and the organisation carries a risk it cannot describe. Three provisions cover most of the exposure:

This is ordinary policy work, sitting alongside the governance structures in security frameworks and the exposure assessment in risk management.

Plagiarism

Plagiarism looks like an odd inclusion until you remember that support runs on written documentation. A tech resolves a ticket, asks a model to write it up, and pastes the result into the knowledge base unreviewed. That article is now indistinguishable from one written by the engineer who performed the fix — and if it contains an error, the error is institutional: the next three techs follow it, and the fourth escalates a problem the documentation caused. Marking generated drafts as generated is what keeps a knowledge base trustworthy.

There is an external dimension too. Vendor documentation and published technical writing are copyrighted work, and reproducing them through a model does not change the licence. A customer-facing knowledge base built from unattributed content is a legal problem as well as a quality one.

Limitations

Three named limitations: bias, hallucinations and accuracy. They are distinct failure modes, so it is worth being able to tell them apart.

Bias

Bias is a systematic skew inherited from training data or design choices. It is not random error — it is being wrong consistently, in the same direction, which is what makes it hard to notice.

In support work it surfaces quietly. A model asked to recommend hardware favours whatever was most written about in training, which tracks marketing volume rather than reliability. A triage model trained on historical tickets inherits that history: if one department's tickets were deprioritised before, it learns to deprioritise them. Tickets in imperfect English can score as less urgent because the model associates fluency with importance. None of these announce themselves as errors — they look like the tool working normally.

Hallucinations

A hallucination is fluent, specific, confident output that is fabricated. This is the limitation most likely to bite a working tech, because the failure is invisible in the output itself.

Take the concrete case. A tech troubleshooting a Windows error asks an AI tool for a fix and gets a registry path, a value name, a DWORD, and an instruction to set it to 1 and reboot. The path is plausible and the naming convention is right. The key does not exist in any build of Windows. The damage is what happens next: the tech creates it, because creating a missing key looks like the remedy for a missing key. Either an hour is gone, or something breaks and there is now an undocumented change on a production machine — and it goes into the ticket as the fix, and the knowledge base permanently.

The countermeasure is unglamorous: anything specific and checkable — a path, a command, a port, a version, an identifier — gets verified against vendor documentation before it is run. That is the test the theory step of the CompTIA troubleshooting methodology, and knowing how the Windows registry is structured is what lets you recognise a fabricated path on sight.

Accuracy

Accuracy is the broader category, and worth separating from hallucination: a hallucinated answer describes something that does not exist, while an inaccurate one can describe something entirely real that is still wrong for you. The common shapes are guidance correct for Windows 10 handed to you for Windows 11, a cmdlet deprecated two versions ago. The tool knows nothing about your environment unless you supply it, and its training has a cut-off date it will not mention. Accuracy is contextual: not only “is this true?” but “is this true here, now, on this system?”

🎯 Telling the three limitations apart

Bias — wrong in a consistent direction, inherited from training data or design. A pattern.

Hallucination — confidently describes something that does not exist at all. A fabrication.

Accuracy — may be real and still wrong for your version, environment or moment. A mismatch.

Private vs. public

This is the part of 4.10 with the most immediate consequences, because the decision gets made in seconds and cannot be taken back. Three sub-topics: data security, data source, data privacy.

Data security

When you type into a public AI tool, that text leaves your organisation. Depending on product and tier it may be transmitted to a third party, retained in logs, reviewed by staff for abuse monitoring, used to improve the service, and it becomes subject to that provider's breach exposure.

Here is the case that matters. A tech stuck on a client's routing problem pastes the running configuration into a public chatbot. That config plausibly contains internal subnets, device hostnames, the WAN IP, VPN peer addresses, SNMP community strings and administrative usernames — a map of the client's network, disclosed to a third party by someone who does not own it. Even if nothing is breached, the organisation can no longer state that the data stayed inside its boundary, which may be exactly what its contract requires. There is usually no retraction mechanism.

A private deployment changes that shape: running a model inside your own environment, or a contractually isolated tenant, keeps input within your governance boundary and existing controls — the same boundary logic cloud security describes, and why encryption in transit and at rest belongs in the conversation.

Data source

Data source cuts two ways: where the model's training data came from, which determines its bias, knowledge cut-off and any licensing attached to what it reproduces; and where the tool retrieves information when it answers you — your own documentation, the open internet, or nothing beyond its training.

The second changes how far to trust an answer. A tool grounded in your own verified knowledge base answers from a source you control; one drawing on the open web answers from forum posts of unknown quality; one answering purely from training data answers from memory, with no source to cite — the condition under which hallucinations are likeliest.

Data privacy

Data privacy is the regulated subset of the data security problem. Some categories carry legal obligations regardless of internal policy: personally identifiable information, health information, cardholder data, student records, and anything covered by a confidentiality clause.

Support tickets are full of it. A single ticket might carry a user's full name, phone numbers, home address, employee ID and a description of the accessibility accommodation their software needs. Pasting that into a public tool to summarise it is a disclosure of personal — possibly health-related — data, and the tech is unlikely to have registered it as such, because they were thinking about the summary rather than the payload.

So treat the prompt box as the external system it is: redact before you paste. Replace names with roles, strip identifiers, reduce the input to the technical facts. Usually the problem is answerable without any identifying detail at all — meaning the data was never needed for the question.

Public AI tools vs. private deployment

FactorPublic AI toolPrivate / self-hosted deployment
Where your data goesTo a third-party provider, outside your network boundaryStays inside your own environment or an isolated tenant
Retention and trainingMay be logged, retained and used to improve the service, depending on tierGoverned by your own retention policy; not used to train a shared model
Privacy riskHigh for anything identifying or confidential; disclosure is irreversibleLow; data never leaves the boundary you already control
Client or regulated dataNot suitable without explicit approvalSuitable where existing controls and contracts already permit
CostFree tier or per-seat subscription; no infrastructureInfrastructure, licensing and staff time — a real project
Setup and maintenanceNone; available immediatelyProvisioning, updates and access control are yours
Typical use caseLearning a concept, drafting non-sensitive text, sanitised problemsReal tickets, configurations, logs and internal documentation

The rule that follows: a sanitised, generic question is fine in a public tool; anything carrying real organisational or client data is not, unless the deployment is approved to receive it.

Frequently asked questions

Is AI on the CompTIA A+ exam?
Yes. Objective 4.10, “Explain basic concepts related to artificial intelligence (AI),” is on Core 2 (220-1202), in domain 4.0 Operational Procedures. It is new to the 220-1200 series and was not on 220-1102.
What is an AI hallucination?
Output that is fluent, specific and confident but fabricated — an invented registry path, a cmdlet that does not exist, a vendor KB number that resolves to nothing. It is wrong in a way that reads exactly like a correct answer.
Can I use ChatGPT at work as an IT tech?
That depends on your employer's acceptable use policy — some approve specific tools, some ban public ones, many have written nothing down. Confirm what is approved, and never paste client data, credentials or configuration into a public tool without approval.
What does private vs. public mean in objective 4.10?
A public tool is third-party hosted and shared, so input leaves your control and may be retained or reviewed. A private deployment runs inside your own boundary, so data stays under your governance. The trade-off is cost and maintenance.
What is the difference between AI bias and AI inaccuracy?
Bias is a systematic skew from training data or design, so the tool is wrong consistently in one direction. Inaccuracy is output wrong for your situation, often because it is out of date. Bias is a pattern; inaccuracy is an instance.
Does objective 4.10 require knowing how to build or train an AI model?
No. The verb is “explain,” and it sits in Operational Procedures alongside documentation and change management. It covers using these tools responsibly and knowing where data goes — not model architecture.
What percentage of Core 2 is objective 4.10?
CompTIA does not publish weightings for individual objectives, so there is no figure for 4.10. What is published is the domain: 4.0 Operational Procedures is 21% of Core 2, and 4.10 is one objective within it.
Why does plagiarism appear in a CompTIA A+ objective?
Because support runs on written documentation. Generated text pasted into a knowledge base unreviewed becomes institutional fact, and if wrong the team inherits the error. Reproducing vendor documentation without attribution adds a licensing problem.
📱 A free flashcard tool for the A+ path

Objective 4.10 is mostly definitions and distinctions — bias versus hallucination versus accuracy, public versus private — which is the kind of material spaced repetition handles well. CertFlash: CompTIA Study Cards is a free iOS app for focused flashcard study with built-in spaced repetition. The A+ deck is free — no in-app purchase required to study Core 1 or Core 2 cards. A one-time $5.99 unlock adds Network+, Security+, CySA+, Linux+, Cloud+, and PenTest+ if you continue past A+. It's not a course, a quiz app, or a set of practice exams — it's a flashcard app that sits on top of whatever primary resource you're using. Get CertFlash on the App Store →

Studying Core 2?

4.10 is one objective in Operational Procedures. See how the rest of Core 2 is weighted and what to study in what order.

A+ Study Guide →

Related Articles