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();
    }

Friday, 7 March 2025

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.


Submit your score via this link

Coding

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


When you're done, you can code or play educational games:



Thursday, 23 January 2025

Welcome To Computer Studies

Lab Expectations:
  • No food or drinks in the computer lab!!!!
  • Attend all classes.  If you are absent, it is your responsibility to make up the work (not mine).  See the blog.
  • Complete all of the assignments to the best of your ability.  You will not succeed in this class if you don’t do the work.
  • Be prepared in your assigned seat, when the second bell goes. 
  • Leave your area as you found it.  Push in your chair, log out of the computer, the equipment should be in the condition you found it.
  • Use a hall pass to go to the washroom and PLEASE KEEP THE DOOR CLOSED.
  • Do not live on your cellular phone, if I notice it, I will take it away.  
  • Use your class time wisely.  You should be able to finish all the assignments in the allotted time.  Do not surf the web, play games, or using the computer for any other purpose unless otherwise directed.  Any abuse of this will result in loss of computer privilege.


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)