๐ทSpring 2022
Code for Life Newsletter
It's that time of year again!
Spring is in the air, the daffodils are flowering and... the Bett show is back!
Code for Life is excited to announce we will be at the Bett show again this year. Come and have a chat about our products and meet the team at stand NH71 from March 23rdโ25th. We would love to say hello. To help celebrate tech in education, this newsletter is all about digital literacy.

Computer scientists Vinton Cerf and Bob Kahn are credited with inventing the Internet communication protocols that we use today and the system referred to as the Internet. Though other protocols were developed and used before Cerf and Kahn's TCP/IP, such as the file transfer protocol (FTP) and network control protocol (NCP), the Internet as we know it today is built on their basis of a โnetwork of networks.โ Source: Source: https://www.britannica.com
Did you know?75% of organisations around the world have experienced some kind of phishing attack and a cyberattack is attempted every 39 seconds! This is even more reason to be careful when you open your emails. source: graphic.ai
So how do we keep safe online?
What scams might we come across and how will we spot them?
We have introduced a new worksheet around online safety and hardware. Take a look and let us know what you think.
Debugging exercises
Can you debug these pieces of code below? Take a look and see if you can spot the mistakes we have made.
Exercise 1
# This program outputs if the student has passed
# They must have at least 50 marks to pass
# Nothing is output if they fail
mark = input("Enter your mark")
if mark > 50:
print("Pass")
Exercise 2
# This program calculates a pass or fail where you must have
# at least 50 marks to pass
mark = int(input("Enter your mark"))
if mark > 50:
result = Pass
if mark <= 50:
result = Fail
print("result")
Solutions
mark = int(input("Enter your mark"))
if mark >= 50:
print("Pass")
mark = int(input("Enter your mark"))
if mark >= 50:
result = "Pass"
else:
result = "Fail"
print(result)
Under the Spotlight
Dioni Zhong

Dioni is a Senior Software Engineer in our very own Code for Life team! She has been helping us improve our products and keep everything running smoothly. Read more about what she gets up to every day below.
"I love problem solving and building things. Iโm passionate about education. I feel a great sense of pride and joy knowing that I play a part in building something that helps students and teachers worldwide."
I work in Code for Life team at Ocado to develop the website and the Rapid Router and Kurono games. In a small team, we have to do a variety of things. Apart from coding, I also work with data, charts, and documentation. I love problem-solving and building things. Iโm passionate about education. I feel a great sense of pride and joy knowing that I play a part in building something that helps students and teachers worldwide.
Let us know what you think of our newsletter by getting in touch and sharing your thoughts and ideas.

Last updated
Was this helpful?