Font size
WorksheetsY9_BIN_PROG_NETWRK
Total questions: 107
Worksheet time: 1hrs 4mins
Which network covers a small geographical area?
LAN
WAN
The basic advantages of the computer network is
Hacking
easy to communicate
network down
The best topology is
Bus
Star
Ring
Select 3 reasons for using a network
Increased security - user access to the network is controlled
Data transfer can be controlled
Sharing resources and devices
Centralisation of data
Select 3 instances where a WLAN is better than a LAN
Much more expensive to install than a LAN.
Mobile devices can be moved and stay connected all the time.
Connecting new devices to your network is easier.
Wireless connections are more stable than wired connections
Cables (that are sometimes difficult to install) are kept to a minimum.
Which one of the following statements on digital communication and social networks is FALSE?
The Internet offers a variety of methods and tools for people to communicate socially and professionally with each other to create online communities.
An advantage of IM (Instant Messaging) is that people can communicate with each other in real time and by means of their keyboards.
Disadvantages in the use of online communication methods are, amongst others, identity theft, spreading of viruses, spam, fraud, etc.
LinkedIn and Facebook are both social networking websites with the same aims and features.
Identifies whether the data packet is for your LAN or not
Hub
Switch
Router
Connects multiple computers together in a network. Shares data between all computers
Router
Hub
Switch
Terminator
If a Hub/Switch has more Ports, more computers can be connected to the network
True
False
Which cable sends data as electricity?
Copper
Fibre Optic
Ethernet
Which cable sends data as light?
Copper
Fibre Optic
Ethernet
0000 0111
0000 1111
0000 1111
What is the colour depth of the image?
colour depth of 1
colour depth of 2
colour depth of 4
colour depth of 16
Bitmap Colour Depth is
the colour of each pixel.
the density of pixels in an image.
information stored in an image to help recreate the image.
the number of bits used for each pixel.
Increasing Colour Depth and Resolution
increases the File size
decreases the File size
increases memory
decreases sound
print("Hello world!\nHello world!")
Hello world!
print("Hello" + str(2) + "world!")
What does the following code do? myAge = int (myAge)
Converts the var (variable) myAge to a string
Converts the var (variable) myAge to a integer
Converts the var (variable) myAge from a integer to a string
Converts the var (variable) myAge to if statement
print(Hello world!)
print("Hello world!" * 2)
people = ["John", "Rob", "Bob"]
print (people[1])
what would this result be?
people = ["John", "Rob", "Bob"]
print (people[-1])
what would this result be?
people = ["John", "Rob", "Bob"]
print (people[4])
what would this result be?
name = 'Dave'
print (name)
name = 'Dave'
greeting = "Good morning" + name
print (greeting)
guess=input()
guess=input()
guess=input()
guess=input()
Which word completes this sentence: "Iteration makes code more ___________"
Complex
Efficient
Simple
Straightforward
What will the output be for the code shown here?
3,2,1,0
0,1,2,3
3,2,1
1,2,3
What would the output be for the code shown here?
0,1,2,3,4,5,6,7,8,9
1,2,3,4,5,6,7,8,9,10
0,2,4,6,8,10
0,2,4,6,8
Tara has written a "Hide and Seek Simulator" - what will happen when she runs it?
It will print "1,2,3,4,5,6,7,8,9,10 Coming ready or not!"
The program will not run
It will print "1,2,3,4,5,6,7,8,9,11 Coming ready or not!"
It will print ("10 Coming ready or not!")
team = Cowboys
if team = Cowboys:
print "Dallas is #1"
