y10 cs

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/50

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

51 Terms

1
New cards

What is a bit?

A single binary digit, either 0 or 1.

2
New cards

What is hexadecimal?

A base

3
New cards

How do you convert binary to denary?

Add the place values where there is a 1.

4
New cards

What is an overflow error in binary?

When the result exceeds the available bits.

5
New cards

What is the hexadecimal of 4A?

(16×4) + 10 = 74 in denary.

6
New cards

What does a left shift do?

Multiplies the binary number by 2 for each shift.

7
New cards

What does a right shift do?

Divides the binary number by 2 for each shift.

8
New cards

What is a logical shift?

Fills with 0s regardless of sign.

9
New cards

What is an arithmetic shift?

Preserves the sign bit (MSB).

10
New cards

How is

89 represented in two’s complement?

11
New cards

What is ASCII?

7

12
New cards

What is UNICODE?

16

13
New cards

What is a pixel?

The smallest unit of an image.

14
New cards

What does colour depth affect?

Number of colours and file size.

15
New cards

How do you calculate image file size?

width × height × colour depth.

16
New cards

What is a sample in digital audio?

A measurement of amplitude at a point in time.

17
New cards

What is sample rate?

Number of samples per second (Hz).

18
New cards

What is bit depth?

Bits used to represent each sample.

19
New cards

What increases sound quality?

Higher sample rate and bit depth.

20
New cards

Formula to calculate sound file size?

Bit depth × sample rate × duration.

21
New cards

What is the input

process

22
New cards

What is a sequential model?

Tasks are done one at a time in order.

23
New cards

What is a parallel model?

Multiple tasks run simultaneously.

24
New cards

What is a multi

agent model?

25
New cards

Example of multi

agent system?

26
New cards

What does ALU stand for?

Arithmetic Logic Unit.

27
New cards

What is the function of CU?

Controls instruction execution.

28
New cards

What are registers?

Small, fast storage in the CPU.

29
New cards

Name the three CPU buses.

Data, Control, Address.

30
New cards

What is the FDE cycle?

Fetch, Decode, Execute.

31
New cards

What is clock speed?

Number of FDE cycles per second.

32
New cards

What does cache memory do?

Stores frequently accessed data for speed.

33
New cards

What is a core in a CPU?

An individual processing unit.

34
New cards

Why are more cores helpful?

Run multiple apps or tasks concurrently.

35
New cards

What limits multiple

core efficiency?

36
New cards

What is RAM used for?

Temporary storage of active data/programs.

37
New cards

What is ROM used for?

Permanent storage of BIOS and bootstrap.

38
New cards

What is virtual memory?

Disk space used when RAM is full.

39
New cards

What causes thrashing?

Excessive use of virtual memory.

40
New cards

Which storage is fastest?

Solid State Drive (SSD).

41
New cards

What is WIMP?

Windows, Icons, Menus, Pointer.

42
New cards

What does the OS manage?

Memory, CPU, devices, users, and files.

43
New cards

What is defragmentation?

Reorganising data on a drive for efficiency.

44
New cards

What is malware?

Malicious software like viruses or trojans.

45
New cards

What does backup software do?

Saves copies of data for recovery.

46
New cards

What is a variable?

A named memory location storing data.

47
New cards

What is selection in programming?

Using conditions to choose which code to run.

48
New cards

What is iteration?

Repeating code using loops.

49
New cards

What is an array?

A list of data stored in a single variable.

50
New cards

What does string traversal mean?

Iterating through each character in a string.

51
New cards