Year 8 TA-5 2021
A
B
C
D
A
B
C
D
D
B
C
A
picture
C
A
B
D
picture
D
B
C
A
picture
B
A
C
D
picture
A
B
C
D
picture
B
A
D
C
picture
FLOAT
BOOLEAN
INTEGER
Hint: Please write your answer in capital
picture
A
B
C
D
picture
A
B
C
D
What is denary 55 in 8 bit binary?
11001100
00001101
11100110
00110111
What is denary 55 in hexadecimal?
3A
AA
58
37
what is the denary of 11001100?
Convert 2BB from hexadecimal to unsigned binary.
001010101010
001010111011
110011001100
001100110101

1 2 4 8 16 finish up to 8 bits

32   64   256
34   68    128
34   68   256
32     64     128
What is computational thinking?
Using a set of techniques and 
approaches to help to solve problems
Giving instructions to a computer
Thinking like a computer - in binary
None of the above
Which computational thinking technique involves 
breaking a problem down into smaller parts?
Algorithm
Generalisation
Abstraction
Decomposition 
There are 3 pillars of computational thinking except 
Abstraction
Decomposition
Coding
Generalisation
 "Deciding whether to use the DayTimeRate or 
EveningRate functions to calculate a customers fare"
,Is an example of which of the following.
Sequence
Sorting
Iteration
Selection
Which sorting algorithm shifts elements instead 
of swapping elements if needed in each pass
Merge Sort
Selection Sort
Insertion Sort
Bubble Sort
 We are sorting the following list in ascending order:
 
1    4    2    9    3    8    5
 
What does the list look like after one pass of the bubble 
sort algorithm
1 2 4 3 8 5 9
1 4 2 5 3 8 9
4 2 9 3 8 5 1
ta pic
A
B
C
D
algo
A
B
C
D
algo
A
B
C
D
algo
B
C
D
A
Sort the following list using Bubble sort and write the position 
of numbers at the end of each pass.5 1 4 2 8 (Note: use single space to seperate numbers)
pass-1
pass-2
Sort the following List using Merge Sort
38
27
43
3
9
82
10
  • 29. What is WAN?
A) Its a Car
B) Wireless Area Network
C) None
D) Wide Area Network
  • 30. What is LAN?
A) Limited Area Network
B) Lonly and No work
C) London Area Network
D) Local Area Network
  • 31. what is WLAN?
A) Wide London Area Network
B) Wireless Local Area Network
C) Wide Local Area Network
D) All
  • 32. The Biggest WAN is?
A) Eden's Network
B) All
C) WWW
D) The internet
  • 33. what is a computer network (choose the best answer)?
A) using wifi to connect computers
B) Two or more computer connected together
C) using wires to connect computers
D) group of interconnected digital devices
  • 34. Phone lines, leased lines or dedicated lines are most likely to be used to connect computers together on which type of network?
A) WLAN
B) WAN
C) PAN
D) LAN
  • 35. LANs are.
A) Privately Owned
B) Publically owned
C) All
D) None
  • 36. LANs are characterised by...
A) Small geographical area, uses external hardware
B) Large geographical area, uses external hardware
C) Small geographical area, uses internal hardware
D) Large geographical area, uses internal hardware
  • 37. Which of the following does NOT impact upon the performance of a network?
A) Distance from a WAP (if using WiFi)
B) Available bandwidth
C) How much power is available at any moment in time
D) Electromagnetic interference
E) Type of Ethernet cable, e.g. CAT5e, CAT6
  • 38. Which type of connection is typically most reliable?
A) Wired
B) Wireless
  • 39. Which type of cable does not have "interference" issues?
A) Copper twisted pair cable
B) Coaxial cable
C) Fibre optic cable
  • 40. What is the role of the server on a client-server network? (select the best response)
A) To give users files
B) To set up web pages
C) To control access to services
  • 41. In which type of network do computers have equal status?
A) Peer to peer
B) Client Server
C) There is no such network
  • 42. All of the following can be true about servers except...
A) They have equal status with clients
B) They processes requests
C) They manages clients
D) They centrally stores files or software
  • 43. Which hardware would you NOT need to set up a high-speed LAN?
A) NIC
B) Switch
C) Ethernet Cables
D) Router
  • 44. Which of the following is typically NOT used for connecting computers together on a LAN?
A) Wifi
B) Ethernet Cable
C) Bluetooth
A) Https
B) information/term-dates/
C) .edengirlswalthamforest.com
D) WWW
  • 46. What do you see in a web browser to indicate a secure connection?
A) padlock and https://
B) Google lock
C) Donald trump's picture
  • 47. what is a standalone computer?
A) A computer that is not connected to a network
B) A computer that is part of a bigger network
C) the queens computer
  • 48. In which topology every device is directly connected to every other device?
A) BUS
B) Full Mesh
C) RING
D) Star
E) Partial Mesh
  • 49. What is a variable?
A) A data value that can be changed, or changes
B) Something that changes
C) A location main memory that holds a value, the value can be changed
  • 50. Which is the correct code to ASSIGN a value to a variable?
A) x += 3
B) x = 3
C) set x = 3
D) x == 3
  • 51. What is a constant?
A) A location main memory that holds a value, the value once set, can be changed as a result of the execution of the program
B) A location main memory that holds a value, the value once set, cannot be changed during the program's execution
C) A value that does not change
D) A value that does change
  • 52. Which of the following is an arithmetic operator?
A) /
B) ==
C) >=
D) <=
E) <>
  • 53. Which of the following comparison operators means 'not equal to'?
A) Not=
B) =Not
C) =!
D) !=
  • 54. Which of the following COMPARISON operators means 'more than or equal to'?
A) <=
B) <=
C) >=
D) <>
E) =>
  • 55. In a flowchart, a sequence is represented by...
A) One rectangle after another
B) One parallelogram after another
C) One diamond after another
Q PC
  • 56. What is the output of this sequence?
A) 10
B) 6
C) 13
D) 4
E) 5
  • 57. 'Sequence' is where...
A) Instructions are repeated
B) One instruction is executed after another
C) Different instruction(s) are executed, depending on the evaluation of a condition
  • 58. "IF age < 16" is an example of...
A) Selection
B) Sequence
C) Iteration
Q PC
  • 59. The code in picture is an example of
A) Sequence
B) Selection
C) Iteration
  • 60. In a flowchart, a selection is represented by a...
A) Rectangle
B) Circle
C) Parallelogram
D) Diamond
Students who took this test also took :

Created with That Quiz — the site for test creation and grading in math and other subjects.