CATEGORY: GENERAL KNOWLEDGE Flashcards

(50 cards)

1
Q

What does CPU stand for?

A

Answer: Central Processing Unit

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Who is known as the father of the computer?

A

Answer: Charles Babbage

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is the full form of URL?

A

Answer: Uniform Resource Locator

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What does HTTP stand for in web addresses?

A

Answer: HyperText Transfer Protocol

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Which company developed the Windows operating system?

A

Answer: Microsoft

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What is the most widely used programming language for web development?

A

Answer: JavaScript

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What does AI stand for?

A

Answer: Artificial Intelligence

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What is the binary number system based on?

A

Answer: 0s and 1s

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Which search engine was created by Larry Page and Sergey Brin?

A

Answer: Google

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What is the primary function of RAM in a computer?

A

Answer: Temporary storage for quick data access

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What is the name of the first electronic general-purpose computer?

A

Answer: ENIAC (Electronic Numerical Integrator and Computer)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

In which year was the World Wide Web (WWW) invented?

A

Answer: 1989

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Who is the founder of Linux?

A

Answer: Linus Torvalds

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Which company manufactured the first commercial microprocessor, the Intel 4004?

A

Answer: Intel

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What is the Turing Test used for?

A

Answer: To determine if a machine can exhibit human-like intelligence

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What is the main purpose of an IP address?

A

Answer: Identifies devices on a network

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
17
Q

What does SQL stand for?

A

Answer: Structured Query Language

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
18
Q

What is the name of the malicious software that locks users out of their own files until they pay a ransom?

A

Answer: Ransomware

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
19
Q

What type of database model is commonly used for large-scale applications, such as NoSQL databases?

A

Answer: Document-based model

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
20
Q

What is the primary purpose of a firewall in a network?

A

Answer: To filter and monitor incoming and outgoing network traffic for security

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
21
Q

What sorting algorithm has the best worst-case time complexity of O(n log n)?

A

Answer: Merge Sort

22
Q

What is the difference between IPv4 and IPv6?

A

Answer: IPv4 uses 32-bit addresses, while IPv6 uses 128-bit addresses

23
Q

What does DNS stand for in networking?

A

Answer: Domain Name System

24
Q

What cybersecurity term describes an attack where a hacker intercepts communication between two parties?

A

Answer: Man-in-the-Middle (MITM) Attack

25
What programming concept describes a function calling itself?
Answer: Recursion
26
What is the name of the first-ever computer virus?
Answer: Creeper Virus
27
What does Moore’s Law predict about computing power?
Answer: The number of transistors on a microchip doubles approximately every two years
28
What is the most commonly used hashing algorithm for secure password storage?
Answer: SHA-256
29
Which type of attack is used to guess passwords by trying every possible combination?
Answer: Brute Force Attack
30
What does the term "Big-O Notation" refer to in computer science?
Answer: A way to describe the efficiency of an algorithm
31
What type of attack uses fraudulent emails to trick users into revealing sensitive information?
Answer: Phishing
32
What is the primary purpose of a Zero Trust security model?
Answer: Never trust, always verify—continuously authenticate users and devices.
33
Which encryption algorithm is widely used for securing HTTPS connections?
Answer: TLS (Transport Layer Security) with AES encryption
34
What is a Brute Force Attack, and how can it be mitigated?
Answer: Trying all possible password combinations; mitigated with multi-factor authentication and rate limiting.
35
What cybersecurity framework was created by NIST (National Institute of Standards and Technology)?
Answer: NIST Cybersecurity Framework
36
What AI system defeated world champion Lee Sedol in the game of Go?
Answer: AlphaGo
37
What is the difference between Supervised Learning and Unsupervised Learning?
Answer: Supervised Learning uses labeled data; Unsupervised Learning finds patterns without labels.
38
What is backpropagation in neural networks?
Answer: An algorithm to adjust weights in a neural network using gradient descent.
39
What AI model architecture is the foundation of GPT (Generative Pre-trained Transformer)?
Answer: Transformer
40
What is the Turing Test, and who created it?
Answer: A test to measure machine intelligence; created by Alan Turing.
41
What is the fundamental unit of information in quantum computing?
Answer: Qubit
42
What blockchain mechanism prevents double spending in cryptocurrencies?
Answer: Proof of Work (PoW) or Proof of Stake (PoS)
43
What is the primary communication protocol used by Internet of Things (IoT) devices?
Answer: MQTT (Message Queuing Telemetry Transport)
44
What is the purpose of a smart contract in blockchain?
Answer: Self-executing contracts with pre-defined rules stored on a blockchain.
45
What is the name of Google's quantum supremacy experiment?
Answer: Sycamore
46
What is the Big-O complexity of QuickSort in the worst case?
O(n^2)
47
What does SOLID stand for in software engineering principles?
Answer: Single Responsibility, Open-Closed, Liskov Substitution, Interface Segregation, Dependency Inversion
48
What programming language is used to build smart contracts on Ethereum?
Answer: Solidity
49
What is a race condition, and how can it be prevented?
Answer: A concurrency issue where multiple processes access shared data unpredictably; mitigated with locks or semaphores.
50
What is the difference between interpreted and compiled languages?
Answer: Interpreted languages run line by line (Python), while compiled languages are translated into machine code before execution (C++).