by Editorial | Oct 30, 2021 | Grade 10, Grade 10 - Critical algorithms
Ten critical algorithms for grade 10 (and 11 and 12) An algorithm is a series of sequential steps to solving a coding problem. The algorithms listed here below may seem very short but they are critical nevertheless – perhaps one could argue that they are...
by Editorial | Aug 15, 2021 | Grade 10, Grade 11, Grade 12
There are times when we wish our Java code would run a lot slower e.g. when we want to count down from 10 to 0 with 1-second intervals. Here we can use “Thread.sleep(milliseconds)” see line 22 below. Note that the sleep period is not precise as your...
by Editorial | Apr 21, 2021 | Grade 10, Grade 10 - Core, Java Core
Java Core concepts – Java 101 Java for grade 10 learners from January to mid-year exams. Below are four PowerPoint presentations/shows covering all Java core concepts. Download them and use them with the “Java by Example” textbook pages 1 to page 28....
by Editorial | Mar 7, 2021 | Grade 10
A simple one-class, one-method calculator program that demonstrates INPUT, PROCESSING, and OUTPUT. Keep these sections separate even when working with larger and more complex programs. Also, keep your prompts and messages useful and user-friendly. Employ good layout...
by Editorial | Feb 3, 2021 | Grade 10, Grade 10 - Gogga
Assumption: You are going to use the IDE called jGRASP. To create a Gogga project you need to download the Gogga library published by Funworks. Funworks provides IT text books for grade 10, 11 and 12, both theory and Java. Click here to download the libary. The...
by Editorial | Jan 18, 2021 | Grade 10
The wonderful world of coding is full of tricks and traps. Here is a space rocket that blew up due to a simple coding error – an error you will be able to understand in the next few weeks. ...