MFSS 2019 P1 Solution
MFSS 2019 P1 Solution
MFSS 2019 P1 Solution
4
Term Description
A device responsible for modulation
Ethernet and demodulation.
Negative:
• On the negative side, some people use the Internet to reinforce their
existing opinions or to spread rumours and misinformation.
7b Any two from:
• The rise of self-driving vehicles is likely to open new areas of growth
4
0 0 0 1
0 0 1 0
0 1 0 1
0 1 1 1
1 0 0 0
1 0 1 1
1 1 0 0
1 1 1 1
9a Odd
9b 0000 1010
1101 1110
9c one mark for each point 1 to 4.
1. ASCII value for H is 72.
2. Looking at first byte, which is H.
3. Convert first 7 bits to denary = 72.
4. Therefore, party bit is appended.
5. To confirm, perform the same on another byte that did not suffer
transmission error.
9d Use of Checksum. …
…A checksum is a calculated value that is sent together with the data. At
the destination, the checksum is recalculated and compared to the sent
checksum value.
10 one mark for each correct identification, one mark for each correct
correction
Line 4
WHILE Num is not equal to 0
Line 10
Flag[Count] = TRUE
Line 17
IF Flag[Count] == TRUE THEN
Line 18
OUTPUT Large[Count]
6
Sample Algo:
INPUT x, y
IF x > y THEN
Check = y
ELSE
Check = x
WHILE Check > 0
IF x % Check = 0 AND y % Check THEN
OUTPUT Check
Check = 0
ENDIF
Check = Check - 1
ENDWHILE