number system Flashcards

1
Q

_________ is a way to represent numbers using symbols or digits. In computing, several different. number systems are used, depending on the context.

A

Number system

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

What are the most common number systems?

A

binary, decimal, octal, and hexadecimal

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

Each digit in a decimal number is multiplied by powers of 10, depending on its position

A

Decimal (Base-10)

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

__________ is used by computers, as they operate with two states: ON and OFF represented by 0 and 1.

A

binary number system

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

It is base-8, using digits from 0 to 7

A

Octal (Base-8)

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

It is often used to represent binary numbers more compactly

A

Hexadecimal (Base-16)

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

____________ is a branch of algebra that deals with true and false values, typically represented as 1 and 0 in binary logic

A

Boolean Algebra

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

In Boolean algebra, it operates using three basic operators, what are they?

A
  • AND (Conjunction)
  • OR (Disjunction)
  • NOT (Negation)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Symbol: * \cdot * or & \&&
The result is true (1) if both operands are true, otherwise, it is false.

A

AND (Conjunction)

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

Symbol: +++
The result is true (1) if at least one of the operands is true, otherwise, it is false.

A

OR (Disjunction)

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

Symbol: A‾\overline{A}A or -A\neg A-A
The result is true (1) if the operand is false (0), and vice versa.

A

NOT (Negation)

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

_________ is the negation of AND. The result is true unless both operands are true.

A

NAND (NOT AND)

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

The result is true only when both operands are false.

A

NOR (NOT OR)

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

The result is true when exactly one of the operands is true, but false when both are the same.

A

XOR (Exclusive OR)

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

The result is true when both operands are the same (either both true or both false).

A

XNOR (Exclusive NOR)

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

Boolean logic is the foundation of all ________

A

Digital Circuits

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

In _______, Boolean values are used in conditional statements, loops, and decision-making processes (true/false, yes/no).

A

Programming

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

Boolean operators like AND, OR, and NOT are used in query languages like SQL to filter ________.

19
Q

Boolean logic helps refine __________ by including or excluding specific results.

A

Search engines

20
Q

__________________ refers to the way different components of a computer system are arranged and interact with each other. It encompasses the hardware and software elements that make up a computer and how they work together.

A

Computer System Organization

21
Q

What are the different Hardware Components?

A
  • Central Processing Unit (CPU)
  • Arithmetic Logic Unit (ALU)
  • Control Unit (CU)
  • Memory
  • Input Devices
  • Output Devices
  • Motherboard
  • Bus
  • Power Supply Unit (PSU)
22
Q

The brain of the computer, responsible for executing instructions and processing data.

A

Central Processing Unit (CPU)

23
Q

CPU consists 3 types of?

A
  • Arithmetic Logic Unit (ALU)
  • Control Unit (CU)
  • Registers
24
Q

Performs arithmetic and logical operations

A

Arithmetic Logic Unit (ALU)

25
Q

Directs the operation of the processor and coordinates activities between various components

A

Control Unit (CU)

26
Q

Small, fast storage locations within the CPU used to hold temporary data and instructions

27
Q

Volatile memory used to store data and instructions that are currently being used or processed

A

Primary Memory (RAM)

28
Q

Non-volatile memory used for long-term storage, such as hard drives, SSDs, and optical disks

A

Secondary Memory

29
Q

Hardware used to input data into the computer, such as keyboards, mice, and scanners

A

Input Devices

30
Q

Hardware used to output data from the computer, such as monitors, printers, and speakers

A

Output Devices

31
Q

The main circuit board that holds the CPU, memory, and other essential components, and provides connectors for additional components

A

Motherboard

32
Q

A system of pathways used to connect different parts of the computer and allow them to communicate

33
Q

What are the types of buses?

A
  • Data bus
  • Address bus
  • Control bus
34
Q

Converts electrical power from an outlet into usable power for the computer’s components

A

Power Supply Unit (PSU)

35
Q

Give the 3 Software Components

A
  • Operating System (OS)
  • System Software
  • Application Software
36
Q

The system software that manages hardware resources and provides services for computer programs. Examples include Windows, macOS, Linux, and Unix

A

Operating System (OS)

37
Q

Includes the OS and utilities that manage system resources and provide common services for application software

A

System Software

38
Q

Programs designed for end-users to perform specific tasks, such as word processors, web browsers, and games

A

Application Software

39
Q

What are the types of System Organization and Architecture?

A
  • Von Neumann Architecture
  • Harvard Architecture
  • Pipelining
  • Cache Memory
  • I/O Systems
40
Q

A computer architecture design where a single memory space holds both instructions and data, and a single set of buses is used for communication

A

Von Neumann Architecture

41
Q

Uses separate memory storage and separate buses for instructions and data, allowing simultaneous access to both

A

Harvard Architecture

42
Q

A technique where multiple instructions are overlapped in execution to improve performance

A

Pipelining

43
Q

Small, fast memory located close to the CPU that stores frequently accessed data to speed up processing

A

Cache Memory

44
Q

Components and processes involved in input and output operations, including device drivers and communication protocols.

A

I/O Systems