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 platforms and products
  1. allows only one person to sign on at a time thereby enhancing security in business environment

  2. is not a feature of MOSS 2007

  3. is a feature of MOSS 2003

  4. stores and maps user credentials for use in signing into back-end applications and third-party systems

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

Single Sign-on (SSO) stores and maps user credentials across multiple systems, allowing users to authenticate once and access various applications without repeated logins. This is not about limiting concurrent users (A) - it's about convenience and centralized credential management.

Multiple choice technology
  1. Users

  2. Security groups

  3. Distribution groups

  4. Computers

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

Security principals are AD objects that can authenticate and receive permissions: Users, Security Groups, and Computers. Distribution Groups are NOT security principals - they're used only for email distribution in Exchange and cannot be assigned permissions or authenticate.

Multiple choice technology
  1. ePO

  2. Microsoft

  3. McAfee

  4. None of the above

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

McAfee is the antivirus vendor that releases signature updates for their own product. ePO is McAfee's management console, not the signature source. Microsoft creates signatures for Windows Defender, not McAfee.

Multiple choice technology
  1. Firewall policies

  2. AV Signature, Product Updtes, Firewall policies

  3. GPO, Data encryption, Server Policy

  4. None of the above

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

ePO (ePolicy Orchestrator) is McAfee's centralized management console. It manages antivirus signatures, product updates, and firewall policies across endpoints. GPO and data encryption are Windows features, not ePO-managed.

Multiple choice technology
  1. Definition to EPO Console

  2. Service installed on all PCs for encryption

  3. Service installed on PCs

  4. Client software installed on All PC's

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

The McAfee Agent is client software that must be installed on all managed PCs and endpoints. It acts as the communication bridge between endpoint systems and the ePO server. Options A, B, and C are incorrect - the agent is not a definition, not specifically for encryption, and not merely a service.

Multiple choice technology web technology
  1. Reader, Manager, Web Designer, Administrator

  2. Reader, Contributor, Web Designer, Administrator

  3. Reader, Contributor, Web Administrator, Administrator

  4. None of the above

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

SharePoint's default permission levels are Reader (read-only), Contributor (add/edit items), Web Designer (design permissions), and Administrator (full control). Option C incorrectly says 'Web Administrator' instead of 'Web Designer'. Option A lists 'Manager' which isn't a standard permission level.

Multiple choice technology databases
  1. A. Enable Anonymous access. Enable Integrated Windows authentication.

  2. B. Enable Anonymous access. Enable Basic authentication

  3. C. Disable Anonymous access. Enable Integrated Windows authentication.

  4. D. Disable Anonymous access. Enable Basic authentication

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

To supply Windows credentials to the Web application, Anonymous access must be disabled so that IIS prompts the user for credentials. Enabling Integrated Windows authentication allows the browser to securely negotiate and send these credentials automatically without prompting the user in a domain environment.

Multiple choice technology databases
  1. DPAPI

  2. RSA

  3. Both

  4. None of the Above

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

In web farm scenarios with multiple servers, RSA encryption is suitable because RSA keys can be exported and shared across servers. DPAPI (Data Protection API) is machine-specific and cannot share keys across servers in a farm, making it inappropriate for distributed environments.

Multiple choice technology databases
  1. –e

  2. –pe

  3. -enc

  4. All of the Above

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

The -pe (Protect Encrypt) option of aspnet_regiis is specifically designed to encrypt configuration sections like connectionStrings or appSettings in Web.config. The -e option is for export, -enc is not a valid aspnet_regiis command, and 'All of the Above' is incorrect since only -pe works for encryption.

Multiple choice technology databases
  1. A. <authorization><allow users=”?”/></authorization>

  2. B. <authorization><deny users=”?”/></authorization>

  3. C. <authorization>< deny users=”*”/></authorization>

  4. D. <authorization><allow users=”*”/></authorization>

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

In ASP.NET configuration, ? represents anonymous users, and * represents all users. The element explicitly prevents anonymous users from accessing the application, while allowing authenticated users. Distractors like explicitly allow anonymous access, and `` denies everyone.

Multiple choice technology databases
  1. cookies

  2. hidden form fields

  3. SSL sessions

  4. All of the above

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

All three mechanisms - cookies, hidden form fields, and SSL sessions - are valid methods for session tracking in web applications. Cookies are the most common, hidden fields provide a fallback, and SSL sessions leverage the secure session identifier. Different applications may use one or multiple of these approaches.

Multiple choice technology databases
  1. Forms Authentication

  2. Passport Authentication

  3. Windows Authentication

  4. none of the above

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

Windows Authentication integrates with Active Directory and is ideal for intranets where all users are domain members. It provides seamless authentication without prompting for credentials. Forms Authentication is for internet applications, Passport is deprecated, and Windows is the correct intranet choice.

Multiple choice technology databases
  1. DPAPI

  2. RSA

  3. Any of the above

  4. None

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

In Web Farm scenarios with multiple servers, RSA encryption is suitable because it uses machine-independent key containers that can be shared across servers. DPAPI relies on machine-specific keys and cannot work in a web farm environment. The question asks specifically about web farm scenarios, making RSA the correct choice.

Multiple choice technology web technology
  1. Used for transaction services

  2. Used for user authorization and authentication

  3. Used for user authentication

  4. Used for Data Entry System

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

A Single User ID application provides centralized user authentication (verifying identity) and authorization (controlling access permissions) across multiple systems.

Multiple choice technology security
  1. luring victims into attacks by using precisely targeted researched personal information schemes

  2. the practice of tricking a user into giving, or giving access to, sensitive information, thereby bypassing most or all protection; Use of propaganda by an authoritarian government to sway perceptions and attitudes of its own citizenry

  3. the act of someone who fishes as a diversion

  4. the act of sending email that falsely claims to be from a legitimate organization. This is usually combined with a threat or request for information.

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

Phishing is a social engineering attack where attackers send fraudulent emails pretending to be legitimate organizations. These emails often create urgency or threaten consequences to trick users into revealing sensitive information like passwords or financial details. Option D correctly describes this.