adplus-dvertising

Welcome to the Data Security MCQs Page

Dive deep into the fascinating world of Data Security with our comprehensive set of Multiple-Choice Questions (MCQs). This page is dedicated to exploring the fundamental concepts and intricacies of Data Security, a crucial aspect of SQL Server. In this section, you will encounter a diverse range of MCQs that cover various aspects of Data Security, from the basic principles to advanced topics. Each question is thoughtfully crafted to challenge your knowledge and deepen your understanding of this critical subcategory within SQL Server.

frame-decoration

Check out the MCQs below to embark on an enriching journey through Data Security. Test your knowledge, expand your horizons, and solidify your grasp on this vital area of SQL Server.

Note: Each MCQ comes with multiple answer choices. Select the most appropriate option and test your understanding of Data Security. You can click on an option to test your knowledge before viewing the solution for a MCQ. Happy learning!

Data Security MCQs | Page 3 of 4

Q21.
Which of the field must be 1 using an authenticator in the following code?
EncryptByKey ( key_GUID , { 'cleartext' | @cleartext }
    [, { add_authenticator | @add_authenticator }
     , { authenticator | @authenticator } ] )
Discuss
Answer: (a).@add_authenticator
Discuss
Answer: (a).EncryptByKey uses a symmetric key
Discuss
Answer: (b).CREATE MASTER KEY ENCRYPTION
BY PASSWORD='MyStrongPassword';
Discuss
Answer: (b).CREATE CERTIFICATE MySQLCert
WITH SUBJECT='MyDatabase DEK';
Discuss
Answer: (a).Encryption should be considered for all data or connections
Q26.
Like data compression, TDE database encryption is performed at the ______ level.
Discuss
Answer: (a).Page
Discuss
Answer: (a).USE Master
GO
BACKUP CERTIFICATE MySQLCert
TO FILE = 'C:\temp\MySQLCert'
WITH PRIVATE KEY (file='C:\temp\MySQLCertKey',
ENCRYPTION BY PASSWORD='MyStrongPassword2')
Q28.
Which of the following catalog view is used to monitor TDE?
Discuss
Answer: (a).sys.certificates
Q29.
___________ encryption was introduced in SQL Server 2005 and is available in all editions of SQL Server.
Discuss
Answer: (a).Column-level Encryption
Q30.
Which of the following functions decrypts data by using a symmetric key?
Discuss
Answer: (b).DECRYPTBYKEYAUTOASYMKEY
Page 3 of 4

Suggested Topics

Are you eager to expand your knowledge beyond SQL Server? We've curated a selection of related categories that you might find intriguing.

Click on the categories below to discover a wealth of MCQs and enrich your understanding of Computer Science. Happy exploring!