Computer Knowledge ยท General Awareness

Information Security

4,143 Questions

Information security involves protecting computer systems and data from unauthorized access, cyber threats, and damage. It is a core part of the computer knowledge section in various banking and government exams. Practicing these concepts helps in understanding digital signatures, network security, and access control effectively.

Cybersecurity threatsAccess controlCryptography basicsSecurity risk managementDatabase protection

Information Security Questions

Multiple choice softskills communication
  1. Credit card numbers

  2. Social security numbers

  3. Phone numbers

  4. Anything you wouldn't want shared with unknown parties, like social security numbers, credit card numbers, addresses, personal information

Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

To determine the information that should never be emailed, the user should understand the importance of data security and privacy. Email is not a secure method of communication, and any sensitive information sent through email can be intercepted by hackers. Therefore, it is important to avoid sending any confidential information through email.

Option A: Credit card numbers should never be emailed as they are sensitive financial information that can be intercepted by hackers. This can lead to identity theft, unauthorized purchases, and other fraudulent activities.

Option B: Social security numbers are confidential personal information that should never be sent through email. This information can be used for identity theft, fraudulent activities, and other criminal activities.

Option C: Phone numbers are not necessarily confidential information, and they can be shared through email. However, it is important to verify the recipient's identity before sharing any sensitive information with them.

Option D: This option is correct in that any information that is sensitive, confidential, or private should not be sent through email. This includes social security numbers, credit card numbers, addresses, personal information, and any other information that the user would not want shared with unknown parties.

Therefore, the correct answer is:

The Answer is: D

Multiple choice softskills communication
  1. True

  2. False

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

Modern word processors like Microsoft Word offer 'Protect Document' features that allow restricting editing permissions to specific users or requiring passwords. This goes beyond simple password protection by letting authors control who can modify formatting, content, or track changes. The statement accurately describes these document protection capabilities.

Multiple choice technology databases
  1. True

  2. False

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

Modern database systems support multiple authentication methods including Windows Integrated Authentication, certificate-based authentication, and external providers. These allow users to authenticate without passwords.

Multiple choice technology web technology
  1. Basic access authentication

  2. Digest access authentication

  3. Integrated Windows Authentication

  4. Anonymous Access Authentication

Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

Anonymous Access is not an authentication process at all - it allows access without verifying user identity. Basic, Digest, and Integrated Windows Authentication are all proper authentication methods that verify user credentials before granting access.

Multiple choice technology storage
  1. a and b

  2. a and c

  3. c and d

  4. All the above

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

Spoofing is a class of attacks where an attacker falsifies data to appear as a trusted entity, allowing unauthorized access to or destruction of data. Common types include IP spoofing (can target SANs) and email spoofing. Spoofing doesn't directly reduce availability - that would be a DoS attack.

Multiple choice technology security
  1. Cross site Scripting

  2. Injection flaws

  3. Privilege Escalation

  4. None of the above

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

Input Validation can filter malicious data to prevent XSS and injection attacks (SQL, command, LDAP). However, Privilege Escalation occurs when authorization logic is flawed - a user legitimately gains access they shouldn't have. Since the user is authenticated and their input is valid, input validation cannot prevent this.

Multiple choice technology security
  1. uses different ports

  2. HTTPS is insure while HTTP is secure

  3. HTTPS is designed to withstand such attacks and is secure.

  4. Both 1 and 3

  5. Both 2 and 3

Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

HTTP and HTTPS use different ports (80 vs 443), and HTTPS is designed to withstand attacks and is secure. Option D correctly combines these facts. Option B incorrectly states HTTPS is insecure - this is clearly a typo. The question asks about differences between the protocols.

Multiple choice technology operating systems
  1. It puts a mask on user accounts

  2. It means unix mask

  3. default permissions

  4. default names

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

umask (user file-creation mode mask) determines default permissions for newly created files and directories. It specifies which permission bits to turn off when creating new files.