The answer is tokenization, because it replaces sensitive card numbers with non-sensitive placeholders that retain the original data format, allowing analysts to work with the records without exposing the full card numbers. Unlike encryption, which produces reversible ciphertext that still carries risk if the key is compromised, tokenization removes the sensitive data entirely from the environment and stores it in a secured vault, so even if the analytics database is breached, the tokens have no exploitable value. On the Security+ SY0-701 exam, this scenario tests your understanding of data masking versus cryptographic controls—a common trap is choosing encryption because it seems more secure, but the question specifically requires that analysts can work with the records without exposing the actual numbers, which tokenization achieves by design. Remember the key distinction: encryption is a reversible mathematical process, while tokenization is a substitution with a lookup table. For exam day, keep this memory tip handy: “Tokenize to sanitize, encrypt to protect in transit.”
SY0-701 Security Architecture Practice Question
This SY0-701 practice question tests your understanding of security architecture. Read the scenario carefully and evaluate each option against the stated constraints before committing to an answer. After answering, compare your reasoning against the explanation and wrong-answer breakdown below. Once you have made your selection, read the full explanation to reinforce the concept and understand why each distractor is designed to mislead on exam day.
Exhibit
Data export sample:
CustomerName, CardNumber, OrderTotal, Region
A. Lee, 4532 1100 8822 7744, 158.22, West
B. Patel, 6011 9009 1044 2219, 41.88, East
C. Jones, 6011 9010 3321 1197, 92.10, South
Business requirement:
- Analytics team needs repeated values for reporting and joins
- Full card numbers must not appear in reports or test data
Based on the exhibit, which data protection control best allows analysts to work with the records without exposing full card numbers?
Clue words in this question
Noticing these words before you look at the options changes how you read each choice.
Clue: "best"
Why it matters: Signals that multiple options may be partially correct. Choose the option that most directly solves the exact problem described, not the one that sounds most complete.
Data export sample:
CustomerName, CardNumber, OrderTotal, Region
A. Lee, 4532 1100 8822 7744, 158.22, West
B. Patel, 6011 9009 1044 2219, 41.88, East
C. Jones, 6011 9010 3321 1197, 92.10, South
Business requirement:
- Analytics team needs repeated values for reporting and joins
- Full card numbers must not appear in reports or test data
A
Encrypt the entire analytics database and give the team the decryption key.
Why wrong: Encryption protects stored data, but anyone with the decryption key could still see full card numbers in reports. The requirement is to prevent exposure while preserving usefulness.
B
Tokenize the card numbers and keep the token mapping in a secured vault.
Tokenization replaces sensitive card numbers with non-sensitive substitutes that can still support joins and repeated reporting without revealing the original values. Keeping the mapping in a secured vault protects the real numbers while allowing the analytics team to work with consistent placeholders. This fits the business need much better than simple encryption or masking alone.
C
Hash the card numbers with SHA-256 so the analytics team can reverse them later if needed.
Why wrong: Hashes are one-way and are not appropriate when the team needs stable, usable values for repeated records and reporting workflows. They also do not allow recovery of the original number.
D
Delete all but the last four digits from the production database immediately.
Why wrong: Truncation can reduce exposure, but it may remove useful data needed for reconciliation, analytics, or customer support. It is more destructive than the requirement calls for.
Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.
Correct answer & explanation
✓
Tokenize the card numbers and keep the token mapping in a secured vault.
Tokenization replaces sensitive card numbers with non-sensitive placeholders (tokens) that retain the format and length of the original data but have no exploitable value. The analytics team can work with the tokens for reporting and analysis, while the actual card numbers remain securely stored in a separate token vault, preventing exposure even if the analytics database is compromised.
Key principle: Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
✗
Encrypt the entire analytics database and give the team the decryption key.
Why it's wrong here
Encryption protects stored data, but anyone with the decryption key could still see full card numbers in reports. The requirement is to prevent exposure while preserving usefulness.
✓
Tokenize the card numbers and keep the token mapping in a secured vault.
Why this is correct
Tokenization replaces sensitive card numbers with non-sensitive substitutes that can still support joins and repeated reporting without revealing the original values. Keeping the mapping in a secured vault protects the real numbers while allowing the analytics team to work with consistent placeholders. This fits the business need much better than simple encryption or masking alone.
Clue confirmation
The clue word "best" in the question point toward this answer.
Related concept
Read the scenario before looking for a memorised answer.
✗
Hash the card numbers with SHA-256 so the analytics team can reverse them later if needed.
Why it's wrong here
Hashes are one-way and are not appropriate when the team needs stable, usable values for repeated records and reporting workflows. They also do not allow recovery of the original number.
✗
Delete all but the last four digits from the production database immediately.
Why it's wrong here
Truncation can reduce exposure, but it may remove useful data needed for reconciliation, analytics, or customer support. It is more destructive than the requirement calls for.
Common exam traps
Common exam trap: answer the scenario, not the keyword
CompTIA often tests the misconception that encryption is always the best data protection control, but the trap here is that encryption still exposes the data to anyone with the key, whereas tokenization removes the sensitive data from the working environment entirely, making it the correct choice for analytics without exposure.
Detailed technical explanation
How to think about this question
Tokenization typically uses a random or cryptographic mapping stored in a hardened vault (e.g., a Hardware Security Module or HSM), ensuring that tokens are generated without a mathematical relationship to the original PAN. This allows the analytics team to perform joins, aggregations, and pattern analysis on the tokenized data without ever accessing the vault, while the vault enforces strict access controls and audit logging for any detokenization requests. In real-world PCI DSS environments, tokenization is preferred over encryption for analytics because it reduces the scope of compliance by removing cardholder data from the analytic environment entirely.
KKey Concepts to Remember
Read the scenario before looking for a memorised answer.
Find the constraint that changes the correct option.
Eliminate answers that are true in general but not in this case.
TExam Day Tips
→Watch for words such as best, first, most likely and least administrative effort.
→Review why wrong options are wrong, not only why the correct option is correct.
Key takeaway
Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.
Real-world example
How this comes up in practice
A developer is choosing between AES-256 (symmetric) and RSA-2048 (asymmetric) for encrypting a large file that will be sent to a partner. Symmetric encryption is fast but requires key exchange; asymmetric is slower but solves the key distribution problem. A hybrid approach — encrypt the file with AES, encrypt the AES key with RSA — is standard. Questions like this test whether you understand when each approach applies.
Related glossary terms
Concepts from this question explained
These glossary pages explain the core terms tested in this SY0-701 question in full detail.
Security Architecture — This question tests Security Architecture — Read the scenario before looking for a memorised answer..
What is the correct answer to this question?
The correct answer is: Tokenize the card numbers and keep the token mapping in a secured vault. — Tokenization replaces sensitive card numbers with non-sensitive placeholders (tokens) that retain the format and length of the original data but have no exploitable value. The analytics team can work with the tokens for reporting and analysis, while the actual card numbers remain securely stored in a separate token vault, preventing exposure even if the analytics database is compromised.
What should I do if I get this SY0-701 question wrong?
Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.
Are there clue words in this question I should notice?
Yes — watch for: "best". Signals that multiple options may be partially correct. Choose the option that most directly solves the exact problem described, not the one that sounds most complete.
What is the key concept behind this question?
Read the scenario before looking for a memorised answer.
About these practice questions
Courseiva creates original exam-style practice questions with explanations and wrong-answer analysis. It does not publish real exam questions, exam dumps, or protected exam content. Learn why practice questions differ from exam dumps →
These questions test the same concept from different angles. Work through them to make sure you can recognise it however the exam phrases it.
Variation 1. An organization stores full payment card numbers, analysts need the last four digits for investigation, and the backup team is worried about ransomware and stolen backup media. Which three controls best address these requirements? Select three.
hard
✓ A.Tokenize primary account numbers before they reach analytics, reporting, or test systems.
B.Store backups on the same production storage array to simplify restore operations.
✓ C.Encrypt backup sets with keys managed outside the backup repository itself.
D.Use simple masking only in spreadsheets while leaving the source database unchanged.
✓ E.Keep one immutable or air-gapped backup copy to resist ransomware and theft.
Why A: Tokenization replaces the full primary account number (PAN) with a unique token that retains the last four digits for analytics, so analysts can perform investigations without exposing sensitive cardholder data. This directly satisfies PCI DSS requirements for minimizing the use of full PANs in non-production environments, while preserving the utility needed for fraud analysis or reporting.
Last reviewed: Jun 30, 2026
Question Discussion
Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.
This SY0-701 practice question is part of Courseiva's free CompTIA certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the SY0-701 exam.
Question Discussion
Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.
Sign in to join the discussion.