Tuesday, 11 March 2025

Educational Games

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

Coding

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

Educational Games
  • Tetris
  • Sudoku
  • Scrabble
  • Lots of Card Games
  • Minecraft Education


  • // This function has karel move across a world of 14 columns, moving if the
    // front is clear, or jumping a hurdle if it is blocked.
    function start(){
        for(var i = 0; i < 13; i++){
            if(frontIsBlocked()){
                jumpHurdle();
            }else{
                move();
            }
        }
    }
    
    // This function has karel jump a hurdle and end up on the other side.
    // Precondition: Karel is facing east in front of a hurdle (one wall high)
    // Postcondition: Karel is facing east on the other side of the hurdle
    function jumpHurdle(){
        turnLeft();
        move();
        turnRight();
        move();
        turnRight();
        move();
        turnLeft();
    }

1 comment:

  1. Here is the link to the Sketch-Up assignments. Inside you will find a teacher guide with guided instructions. After you complete each assignment in the guide, finish that section by completing the next Sketchup#.pdf assignment prompt. For example after doing page 1-9 in the guide, also complete sketchup1.pdf. As always I will be available to help. Please send each assignment to me to make sure you are on the right path to success at my email.
    https://sd33online-my.sharepoint.com/:f:/g/personal/drew_stevenson_sd33_bc_ca/EgY8jLETuv5KhjWaJGbeqL8BaXwyF7qA3NWIOm-N9nMKtg?e=GaBh0d

    ReplyDelete