Convert binary 110101 to denary
53
What is in a data packet?
Header, Payload, Trailer
Give one input device and one output device.
Input device: Keyboard
Output device: Speaker
Name 1 system software.
Operating system, Utility software, Device driver, Compilers, Linkers
Name one method used to design and construct a solution to a problem.
Flowchart, Pseudocode, Structure diagram
Convert hexadecimal FA to denary
250
Name one error detection method during data transmission.
Parity check
Checksum
Echo check
Which sensor detects the presence of a nearby object?
Proximity sensor
Name two functions of an operating system.
Give one condition-controlled loop.
WHILE loop, REPEAT ... UNTIL loop
How many bytes are in 2 KiB?
2048 bytes
...................... mode occurs when data is sent in BOTH DIRECTIONS but NOT AT THE SAME TIME
Half-duplex
Give the names of 3 specific purpose registers.
Program Counter (PC)
Memory Address Register (MAR)
Memory Data Register (MDR)
Accumulator (ACC)
Current Instruction Register (CIR)
State one feature of IDEs.
State two types of validation.
Add 1001 0111 and 0100 0000
1101 0111
State one advantage of serial transmission over parallel transmission.
Less interference / crosstalk
Cheaper (fewer wires needed)
Can be transmitted over long distances more reliably
State one advantage of SSD over HDD.
SSD has faster access speed, lighter, no moving parts, more durable, lower power consumption.
Advantage of high-level language over low-level.
Easier to read, write, and understand (closer to human language), Portable across different machines, faster to develop
Name one way to create a maintainable program.
Use meaningful variable names, Add comments, Use procedures.
Convert signed binary number 1010 0011 to denary
-93
Explain the difference between symmetric and asymmetric encryption.
Symmetric encryption uses one key for both encryption and decryption.
Asymmetric encryption uses two keys: a public key (to encrypt) and a private key (to decrypt).
State one difference between RAM and ROM.
RAM is used to store programs and data currently in use, while ROM stores essential instructions (e.g., bootstrap/start-up instructions).
Main difference between compiler and interpreter.
Compiler translates the whole program into machine code before execution, while interpreter translates and runs code line by line.
State the difference between a procedure and a function.
A function returns a value, while a procedure does not.