In this challenge we will create a three-player game using Scratch. One player (the yellow ball) will be chased by two other players the red player and the blue player. The red player will use the arrow keys to control…
Look at the code provided below use to draw a tree using a recursive function. Recursive Function A recursive function is an alternative to using iteration. A function is a recursive function if: It includes a call to itself, It…
Before completing this challenge we need to revise some Maths concepts. Fraction = numerator / denominator In Maths a fraction consists of two numbers: a numerator and a denominator. What is an improper fraction? An improper fraction is a fraction…
This challenge focuses on the use of string manipulation techniques in order to format the output when printing text on the screen. Step 1: Reverse Engineering First look at the code provided above and use this code to answer the…
One application of programming is to control 3D printers to create 3D models. Using a Block programming language you can create your own 3D models and export them in a format recognised by 3D Printers. In this blog you will…
One application of programming is to control 3D printers to create 3D models. Using a Block programming language you can create your own 3D models and export them in a format recognised by 3D Printers. In this blog we will…
The “game” is a zero-player game, meaning that its evolution is determined by its initial state, requiring no further input. One interacts with the Game of Life by creating an initial configuration and observing how it evolves, or, for advanced…
In this challenge you will use http://www.beetleblocks.com/ to create some 3D models to represent different types of staircases. I will use iteration (for loops) to make your code more effective and investigate the use of (x,y,z) coordinates to create your…
Computer code can be used to create 2D or 3D graphics. The code used to create these graphics can then be used by 3D printers to create objects. In this challenge we will use block programming to create a 3D…
For this challenge we will write a Python program to randomly generate a 12 by 12 wordsearch where computing words will be randomly positioned on the grid and will appear either horizontally, vertically or diagonally. We have started the code…