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 general knowledge
  1. When you have to call someone back but don't want to talk to them, so you wait until you know they can't talk and leave a voice mail.

  2. A missed call

  3. Receiving a call from a known person using an unknown number

  4. A call via Voice Over Internet Protocol

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

A 'stealth-call' is strategically calling someone when you know they can't answer, leaving a voicemail to avoid actual conversation. The other options (regular missed call, unknown number call, VoIP call) don't capture this deliberate avoidance aspect.

Multiple choice general knowledge foreign languages
  1. Anti Virus

  2. Security

  3. Upload

  4. Download

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

Télécharger is the French verb for to download, referring to transferring data from a remote system to a local device. Download is the correct English equivalent. Upload is the opposite action (sending data outward). Security and Anti Virus are related concepts but not the meaning of télécharger.

Multiple choice general knowledge foreign languages
  1. Login

  2. Username

  3. Password

  4. Security

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

'Mot de passe' is French for 'password' - literally translating to 'word of passage' or 'passing word.' This is basic computer terminology and French vocabulary. 'Login' and 'Username' are different authentication components, while 'Security' is too broad to be the translation.

Multiple choice general knowledge
  1. Confirmation

  2. Cash Tolerance

  3. Confidentiality

  4. Conflict Control

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

Confidentiality is the principle of protecting information from unauthorized disclosure or access. It's a fundamental concept in information security and privacy, ensuring that sensitive data is only accessible to authorized individuals or systems. Confirmation and Cash Tolerance are unrelated terms, while Conflict Control refers to managing disputes, not data protection.

Multiple choice general knowledge math & puzzles
  1. Entering a web address

  2. E-mail attachments

  3. Pressing refresh too many times

  4. None of these

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

Email attachments are the most common vector for computer viruses. When a user opens an infected file attached to an email, the malicious code executes. Simply visiting a URL is generally safer, though not entirely risk-free.

Multiple choice general knowledge math & puzzles
  1. Use the Send To field

  2. Use the CC field

  3. Use the BCC field

  4. None of these

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

BCC stands for Blind Carbon Copy. When you put an address in the BCC field, that recipient receives the email, but their address is not visible to the primary recipient (To) or the CC recipients.

Multiple choice general knowledge science & technology
  1. A malicious techique of tricking web users into revealing confidential information

  2. A device that sends and receivers data in a bit second

  3. A form of computer engineering

  4. A digital process that in used to display an image on the monitor

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

Clickjacking is a malicious technique where attackers trick users into clicking on something different from what they perceive by overlaying invisible or disguised elements on a webpage. While option A mentions revealing confidential information, clickjacking is more broadly about deceiving users into performing unintended actions like deleting content, changing settings, or making unwanted purchases. The description in A captures the deceptive essence but is slightly narrow in focus.

Multiple choice general knowledge
  1. Configuration management

  2. Security management

  3. Performance management

  4. Authentication Management

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

Security management in LAN software includes access control, user activity logging, and auditing - exactly what the question describes. Configuration management handles setup changes, performance management monitors network speed/reliability, and authentication is a subset of security (identity verification only).

Multiple choice general knowledge
  1. Hackers

  2. Spam

  3. viruses

  4. identity theft

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

Hackers, viruses, and identity theft are all direct security threats that can compromise systems and personal data. Spam, while annoying and potentially malicious (like phishing emails), is primarily a nuisance rather than a fundamental security risk in the same category. The question asks for what's NOT a 'real security and privacy risk' - spam is more of an inconvenience than the direct threats posed by the other options.

Multiple choice general knowledge science & technology
  1. Basic

  2. Form-Based

  3. Client

  4. Digest

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

Basic authentication and Form-Based authentication don't encrypt data - they send credentials in plaintext (Basic uses Base64 encoding which is easily reversible). Client Certificate and Digest authentication provide encryption - Digest uses a one-way hash and Client Certificate uses SSL/TLS encryption.

Multiple choice general knowledge science & technology
  1. Avoid Escape Special Characters

  2. Use of non Parameterized API

  3. Input Validation against Whitelist

  4. Avoid sending the wrong data at first place as request parameter.

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

Input validation against a whitelist is a correct injection prevention mechanism. A whitelist defines exactly what inputs are allowed, rejecting anything that doesn't match. This prevents injection attacks by ensuring only valid, expected data enters the system. Avoid escaping special characters would make you vulnerable, non-parameterized APIs are vulnerable, and while avoiding wrong data helps, validation against whitelist is the technical prevention mechanism.

Multiple choice general knowledge science & technology
  1. Injection

  2. Cross Site Request Forgery

  3. Cross Site Scripting

  4. Failure to Restrict URL Access

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

The description 'text-based attack data that exploit the interpreter in the browser' is the textbook definition of Cross Site Scripting (XSS). In XSS attacks, malicious scripts are injected into web pages viewed by other users, exploiting the browser's script interpreter. This distinguishes it from Injection (server-side interpreter), CSRF (exploiting authenticated sessions), and URL access restrictions (authorization bypass).