Friday, 30 January 2026

Typing Test

 Typing

This will be your warm-up activity when you come into class

Do 3 - 5 Minute Typing Tests at https://www.typingtest.com/
Send me your 3 Net Speed scores

This is the score you send to me.


Coding

This is your extension activity.  This is what you do when your daily assignment is done.
Code Link (Object Coding) Code Link (Writing Code)

When you're done, you can code or play educational games:
  • Tetris
  • Sudoku
  • Scrabble
  • Lots of Card Games
  • Or Minecraft Educational

    function main() {
        // Declare and initialize the variables
        let name = "Minnie";
        let count = 3;
        let item = "pencils";
        
        // Use the variables in the print statements
        console.log("Hi, my name is " + name + ".");
        console.log("I'd like to buy " + count + " " + item + ".");
        console.log(" ");
        
        console.log("Hi " + name + ",");
        console.log("here are your " + count + " " + item + "!");
        console.log("Are you sure you don't want any more " + item + "?");
    }
    
    main();
    
    
    /* 
    How many times do you need to type in the value of the new item?
      - Once
    
    How many places does the item value appear in the printed output?
      - Three places
    
    What is one reason why we use variables in programs?
      - When using variables, we can update the value once and have that value
      be used in more than one location.
    
    */