Computer Systems L1.1&1.2

0.0(0)
studied byStudied by 0 people
0.0(0)
full-widthCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/14

flashcard set

Earn XP

Description and Tags

Notes for lectures 1.1 and 1.2

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

15 Terms

1
New cards

What is the fundamental difference between computer hardware and software?

Hardware is the physical components of a computer, while software is the programs that run on the computer.

2
New cards

What is the primary role of an Operating System (OS)?

To manage computer hardware and software resources and provide common services for computer programs.

3
New cards

List the three most common number systems used in computers.

Decimal (Base 10), Binary (Base 2), and Hexadecimal (Base 16).

4
New cards

What are the first four column values (powers of 2) in the binary system, starting from 2^0?

1, 2, 4, 8 (2^0, 2^1, 2^2, 2^3).

5
New cards

Describe the process of converting a Decimal number to Binary.

Repeatedly divide the decimal number by 2 and record the remainder. Read the remainders from bottom to top to get the binary equivalent.

6
New cards

What is the main characteristic and drawback of the Positional Method for Binary to Decimal conversion?

Characteristic: It is a safe method that involves summing the column values where the digit is 1. Drawback: It can become difficult to use as the binary number length increases.

7
New cards

Explain the steps of the Doubling Method for Binary to Decimal conversion.

Start with an initial total of zero. For each digit (left to right), double the previous total and add the current binary digit (0 or 1).

8
New cards

Why is Hexadecimal used in computing if computers only understand Binary?

t makes large binary numbers (like memory addresses) more compact, readable, and easier for humans to manage and memorize.

9
New cards

What is the base of the Hexadecimal number system?

Base 16.

10
New cards

How many bits of Binary information are represented by a single Hexadecimal digit?

Four bits (a nibble).

11
New cards

What are the digits used in Hexadecimal?

0-9 and the letters A, B, C, D, E, F.

12
New cards

Describe the core steps for converting Binary to Hexadecimal.

Split the binary number into 4-bit groups and assign one corresponding hexadecimal digit to each group.

13
New cards

When converting Decimal to Hexadecimal, what number do you repeatedly divide by?

16 (the hexadecimal base value).

14
New cards

What are two common application areas where Hexadecimal numbers are used?

Computer memory addresses and HTML colour references.

15
New cards

What is a Hex Editor primarily used for in digital investigations?

To visualize and edit the underlying hexadecimal code of files for tasks like extracting metadata or verifying authenticity.