2023 specimen paper 1 Flashcards
what is meant by a MAC address (4)
the address given to a device that uniquely identifies a device on a network. the MAC address is given by the manufacturer. it is made up of two parts in which the first part represents the ID number of the manufacturer, and the second part identifies the serial number of the device.
give two uses of hexadecimal in computer science (2)
HTML color codes
IP (v6) address
using left shift and move the binary number “01010010”
01001000
what effect logical left shift does it have on the binary value? (2)
the left most bit is now lost following a left shift, hence changing the value of the binary value.
describe the structure of a data packet
- the header - stores the IP address of the source device (sender) as well as the IP address of the destination device (receiver). it also contains the size of the packet (in bytes).
- the payload - the actual data in the packets.
the trailer - contains the method of identifying the end of the packet. also includes some form of error checking to ensure packet arrives error-free.
a company uses parallel half-duplex data transmission to transmit the data for the new videos to the web server. explain why parallel half-duplex transmission is the most appropriate method. (4)
parallel half-duplex data transmission is the most appropriate because it allows several bits of the video to be sent down several wires, increasing the speed of transmission of the larger data. since the bits are also transferred over a short distance, skewing can be avoided.
describe what is meant by a DDoS attack (4)
multiple computers are used as bots and send numerous requests to a webserver in an attempt to flood the network with useless spam traffic. because the webserver becomes flooded with the spam traffic, it will not be able to service a user’s legitimate request. this leads to the website failing as a result.
suggest one security device that can be used to help prevent a DDoS attack.
firewall
or proxy server
give three characteristics of an IP address
- uniquely identifies a device connected to the internet.
- uses either 32 bits (IPv4_ or 128 bits (IPv6).
- can be static or dynamic.
identify parts of a given URL below:
https://www.cambridgeaddessment.org.uk/index.html
https -
cambridgeaddessment.org.uk -
/index.html
- protocol
- domain name
- file name
name three components that are part of the central processing unit (CPU) in a computer that has a Von Neumann architecture (3)
program counter
memory address register (MAR)
accumulator (ACC)
describe the purpose of the control unit (CU) in a computer that has Von Neumann architecture (2)
the control unit sends control signals that manage the transfer of data and instructions within the CPU.
state one purpose of a core in a CPU
to carry out instructions
explain how dual core CPU help upgrade the performance of a computer (2)
the performance of the computer will be faster as now there are two core CPUs to carry out instructions simultaneously.
identify two advantages of using high-level language over low-level language
easier to debug
easier to write/understand/code