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
-
allows only one person to sign on at a time thereby enhancing security in business environment
-
is not a feature of MOSS 2007
-
is a feature of MOSS 2003
-
stores and maps user credentials for use in signing into back-end applications and third-party systems
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.
-
Users
-
Security groups
-
Distribution groups
-
Computers
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.
-
ePO
-
Microsoft
-
McAfee
-
None of the above
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.
-
Firewall policies
-
AV Signature, Product Updtes, Firewall policies
-
GPO, Data encryption, Server Policy
-
None of the above
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.
-
Definition to EPO Console
-
Service installed on all PCs for encryption
-
Service installed on PCs
-
Client software installed on All PC's
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.
-
Reader, Manager, Web Designer, Administrator
-
Reader, Contributor, Web Designer, Administrator
-
Reader, Contributor, Web Administrator, Administrator
-
None of the above
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.
-
A. Enable Anonymous access. Enable Integrated Windows authentication.
-
B. Enable Anonymous access. Enable Basic authentication
-
C. Disable Anonymous access. Enable Integrated Windows authentication.
-
D. Disable Anonymous access. Enable Basic authentication
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.
-
DPAPI
-
RSA
-
Both
-
None of the Above
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.
-
–e
-
–pe
-
-enc
-
All of the Above
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.
-
A. <authorization><allow users=”?”/></authorization>
-
B. <authorization><deny users=”?”/></authorization>
-
C. <authorization>< deny users=”*”/></authorization>
-
D. <authorization><allow users=”*”/></authorization>
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.
-
cookies
-
hidden form fields
-
SSL sessions
-
All of the above
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.
-
Forms Authentication
-
Passport Authentication
-
Windows Authentication
-
none of the above
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.
-
DPAPI
-
RSA
-
Any of the above
-
None
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.
-
Used for transaction services
-
Used for user authorization and authentication
-
Used for user authentication
-
Used for Data Entry System
B
Correct answer
Explanation
A Single User ID application provides centralized user authentication (verifying identity) and authorization (controlling access permissions) across multiple systems.
-
luring victims into attacks by using precisely targeted researched personal information schemes
-
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
-
the act of someone who fishes as a diversion
-
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.
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.