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 technology web technology
  1. Extend SSL for XML

  2. Encrypt specific elements or a complete XML document

  3. Encrypts XML using a public key that can only be decrypted with a secret private key

  4. B and C

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

XML Encryption provides fine-grained security for XML documents. It can encrypt entire documents or specific elements within them, and supports both symmetric and asymmetric encryption. When using public key cryptography, data encrypted with a public key can only be decrypted with the corresponding private key, ensuring confidentiality.

Multiple choice technology security
  1. Control,Information,Availabilty

  2. Confidential,Integrity,Availabilty

  3. control,integrity,Availability

  4. confidentiality,Information,availabilty

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

The CIA triad consists of Confidentiality, Integrity, and Availability - the three core principles of information security. Confidentiality ensures authorized access only, Integrity maintains data accuracy, and Availability ensures reliable access. Option A and C incorrectly use 'Control' and 'Information' instead of Confidentiality. Option D uses 'Information' instead of Integrity.

Multiple choice technology security
  1. Security Misconfiguration

  2. Insecure direct object reference

  3. CSRF

  4. Unvalidated redirects and forwards

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

In the OWASP Top 10 (2013 update), Security Misconfiguration and Unvalidated Redirects were newly added entries. Security Misconfiguration (A2013:6) addresses improper security settings. Unvalidated Redirects (A2013:10) covers unsafe URL forwards. Insecure Direct Object References and CSRF were in previous versions but not new additions.

Multiple choice technology platforms and products
  1. Android Native Libraries

  2. Plugged-in security module

  3. Underlying Linux Kernel

  4. Android run-time Libraries

  5. None of the above

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

Android's security architecture is primarily inherited from the underlying Linux Kernel, which provides process isolation, user permissions, and the foundational security model. The Linux kernel is the core security foundation.

Multiple choice technology web 2.0
  1. It sets the permissions on any value types that are declared.

  2. It configures the machine's system security policy.

  3. It is implemented by code and does not use attributes.

  4. It uses attributes to place security information into the metadata of your code.

  5. It sets the permissions on any reference types that are declared.

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

Declarative security uses attributes (like [PrincipalPermission]) embedded in code metadata to declare security requirements at compile time. This contrasts with imperative security, which uses runtime code to perform security checks. Declarative security is more maintainable and can be inspected via tools.

Multiple choice technology web 2.0
  1. Declarative Security

  2. Role-Based Security Permissions

  3. Code Access Permissions

  4. Identity Permissions

  5. Imperative Security

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

Declarative security uses attributes to declare security requirements directly in code metadata, without writing imperative security checks. Options B through C are actual .NET security mechanisms but require imperative code logic - they don't rely solely on attributes. Declarative security is the ONLY approach where adding attributes alone provides security functionality.

Multiple choice technology
  1. Users to access the network from remote locations

  2. Users to work with files located anywhere on their network

  3. Hackers to easily infiltrate important files

  4. Store files in a central server

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

Remote access capabilities allow users to connect to their network from locations outside the office, such as from home or while traveling. This is typically accomplished through VPNs or dial-up connections. While remote access does enable working with network files (option B), that's a consequence of the primary capability. The other options either state the obvious incorrectly (C is a security risk, not a feature) or confuse remote access with local server storage (D).

Multiple choice technology databases
  1. DML trigger

  2. Invalid Trigger

  3. Application Trigger

  4. System Event trigger

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

A LOGON trigger in Oracle database can only be defined at the SCHEMA or DATABASE level. Specifying 'ON EMP' (a table name) for a BEFORE LOGON event is syntactically invalid, which makes it an invalid trigger.

Multiple choice technology databases
  1. User ID/Password File

  2. Communications Layer

  3. Client Applications

  4. Operating Systems

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

CLIENT authentication means the server trusts the client to authenticate users. In this mode, the client operating system verifies passwords, not DB2. The server accepts whatever user identity the client claims after the OS has authenticated them. Options A, B, and C imply mechanisms that would bypass or duplicate the OS authentication.

Multiple choice technology databases
  1. System Catalog

  2. Client Applications

  3. Client Operating Systems

  4. Application Server

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

In client-server authentication, password verification happens at two points: the Client Operating System (when using CLIENT authentication type, the client OS validates credentials) and the Application Server (when using SERVER authentication, the DB2 server verifies passwords). System Catalog stores user definitions but doesn't verify passwords. Client Applications initiate authentication but don't perform the verification themselves.

Multiple choice technology databases
  1. An error will occur

  2. Data passed between the client and the server is encrypted.

  3. User IDs and passwords are passed to the server unencrypted

  4. User IDs and passwords are encrypted before they are passed to the server.

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

When a client requests SERVER_ENCRYPT authentication, the server must support password encryption. If the server is configured with SERVER authentication, it only accepts unencrypted credentials. Attempting this connection results in a security negotiation mismatch error.

Multiple choice technology operating systems
  1. Cryptography

  2. Wrapping

  3. Sandbox

  4. Coding and Decoding

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

The Android sandbox is a security mechanism that isolates applications from each other and from the system. Each app runs in its own sandbox with restricted permissions, preventing malicious or buggy apps from disrupting other applications or the OS. Cryptography is for encryption, wrapping is a programming concept, and coding/decoding are not security isolation mechanisms.

Multiple choice technology
  1. AES

  2. Triple DES

  3. Both

  4. Option 2 only

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

The correct answer is C (Both) because BlackBerry Enterprise Server uses both AES and Triple DES encryption to provide security. AES (Advanced Encryption Standard) is the newer, stronger standard, while Triple DES is an older algorithm still supported for backward compatibility. Options A and B are individually incomplete. Option D is wrong because it incorrectly excludes AES.

Multiple choice technology web technology
  1. XML threat Protection in DP

  2. Web application firewall in DP

  3. Virus Protection

  4. Denial of Service (DoS)

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

SQL injection protection is provided by XML Firewall protection parameters in DataPower. While unintuitive, the XML Firewall's threat protection capabilities include SQL injection detection alongside other injection attacks. Option B (Web Application Firewall) provides broader HTTP-level protection but XML threat protection specifically handles SQL injection in the XML context.

Multiple choice technology web technology
  1. handled at the machine level

  2. handled at the Page level

  3. handled at the domain level

  4. handled at the sharepoint level

Reveal answer Fill a bubble to check yourself
A,C,D Correct answer
Explanation

SharePoint security is managed at multiple levels: domain level (Active Directory integration for authentication), machine level (server-level permissions), and SharePoint level (site, list, and item-level permissions). Page level security is not a distinct security tier in SharePoint - pages inherit permissions from the site/library. This is an MC-2 question requiring multiple selections.