There are a wide range of software that can be used on a computer system and these can be grouped in three main categories: Operating System: The Operating System (OS) is the foundational software that manages a computer’s hardware and…
For this set of challenges, we are going to teach our AI:Bot some basic maths skills such as how to count in 5 from 0 to 500 or how to count down from 100 to 0. We are also going…
You have been tasked with creating a Python program that generates a survey about programming preferences and skills. Your program will have to: Ask the user a series of questions about their programming experience. Validate the user’s input for each…
When we call a function in a programming language, we often need to pass data (or parameters) to that function for it to operate on. The way these parameters are passed — either by value or by reference — plays…
MS-DOS (Microsoft Disk Operating System) is an early operating system developed by Microsoft in the early 1980s. It was widely used on IBM-compatible personal computers and is known for its command-line interface, where users type commands to perform tasks rather…
For this challenge our aim was to use Python Turtle to draw a spider web on the screen. Our code will first will the screen in black (Colour code #000000) and create a Python Turtle called spider, with a light…
An irrational number is a real number that cannot be expressed as a ratio of integers, in other words you cannot write an irrational number as a fraction p/q where p and q are both integer values. Two of the…
In this challenge we are going to create a quiz using Python to test the end-user’s understanding of storage units used to describe the capacity of a storage device. Our quiz will consist of 10 “Bigger or Smaller” questions as…
The story of the Endurance shipwreck is one of the most remarkable survival tales in the history of exploration, highlighting the endurance and courage of Ernest Shackleton and his crew during their expedition in the early 20th century. In 1914,…
The aim of this challenge is to create an “Odd One Out” quiz on storage devices using Python. But let’s first revisit the main technologies used by storage devices in a computer system. We can categorise all the storage devices…