iSchool
.my
Browse subjects
EN
BM
Log in
Sign up
Browse subjects
โบ
Sains Komputer Form 5
โบ Chapter 1: Computing
Two-sided
Tree
Radial
Optimize
๐ Flashcards
This is the free sample โ view-only. Unlock the subject to print on A4.
Unlock Sains Komputer โ RM10
โ
+
Reset / fit
Form 5 ยท Sains Komputer ยท iSchool.my
Chapter 1: Computing
Computer and impact
โ
Economic and social
impact
Digital divide
Automation and
employment
Ethics, privacy and
intellectual property
Cyber law and security
โ
Unauthorised access
and malware
Phishing and social
engineering
Authentication and
encryption
Backup and incident
response
Computer architecture
โ
CPU: control unit, ALU
and registers
Memory: RAM, ROM,
cache and secondary storage
Input, output and buses
Von Neumann
stored-program concept
Fetch-decode-execute
cycle
โ
Step 1: Program
counter holds next address
Step 2: Instruction
fetched to instruction register
Step 3: Control unit
decodes instruction
Step 4: ALU/CPU
executes operation
Step 5: Result stored
and PC updated
Binary and hexadecimal
example
โ
Convert 45โโ to binary
โ
45 = 32 + 8 + 4 + 1
Bits for 32,16,8,4,2,1 = 1 0
1 1 0 1
Answer: 101101โ
Convert 10111100โ to
hexadecimal
โ
Group: 1011 1100
1011 = B; 1100 = C
Answer: BCโโ
Logic gates
โ
NOT: output opposite
input
AND: 1 only if both 1
OR: 1 if at least one 1
NAND, NOR, XOR and
XNOR
Boolean worked
example
โ
Expression: Y = (A AND
B) OR NOT C
Given A=1, B=0, C=0
A AND B = 0
NOT C = 1
Y = 0 OR 1 = 1