CCSP · Question #96
Which of the following methods is often used to obscure data from production systems for use in test or development environments?
The correct answer is C. Masking. Data masking is commonly used to obscure sensitive production data, creating realistic but non-sensitive datasets for use in test or development environments.
Question
Which of the following methods is often used to obscure data from production systems for use in test or development environments?
Options
- ATokenization
- BEncryption
- CMasking
- DClassification
How the community answered
(24 responses)- A4% (1)
- C92% (22)
- D4% (1)
Why each option
Data masking is commonly used to obscure sensitive production data, creating realistic but non-sensitive datasets for use in test or development environments.
Tokenization replaces sensitive data with a non-sensitive equivalent (a token) but typically for live transactional systems, not primarily to create test data.
Encryption protects data in transit or at rest, but decrypting it for testing would reveal the original sensitive data, defeating the purpose of obscuring it for non-production use.
Data masking, also known as data obfuscation, involves replacing sensitive data with structurally similar but inauthentic data. This allows developers and testers to work with realistic datasets without exposing actual sensitive information, which is crucial for compliance and privacy in non-production environments.
Classification categorizes data by sensitivity but does not obscure or transform the data itself.
Concept tested: Data masking for non-production environments
Source: https://learn.microsoft.com/en-us/azure/security/fundamentals/database-masking-get-started
Topics
Community Discussion
No community discussion yet for this question.