Advertisement
amigojapan

Programming 101 Lesson plan

Mar 1st, 2015
284
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.51 KB | None | 0 0
  1. Programming 101 Lesson plan
  2. Part 1 programming basics done in Scratch
  3.  
  4. lesson 1
  5.  
  6. -lightbot (a programming game)
  7. Learn the basics of programming
  8. Procedural instructions
  9.  
  10. -Scratch
  11. Input/Output
  12. Variables, Operators > = <
  13. Conditional(if/else), AND and OR logical operators
  14.  
  15.  
  16.  
  17. Tasks:
  18. Write a greeting program “hello your name” (we will touch on string handling)
  19. Write a program that asks for a username *and* password *or* password2
  20. Write a program with > < telling you to wear a coat or sun screen
  21. Write Body mass index
  22.  
  23. lesson 2
  24.  
  25. -Scratch
  26. loops(repeat/repeat until), counter
  27.  
  28. Tasks:
  29. Make a program that draws a square
  30. Make a program that draws 4 squares
  31. Make a program that makes the number of squares indicated by the user
  32.  
  33. lesson 3
  34. Random number generator
  35.  
  36. tasks:
  37. Write the “guess my number” game
  38. Write a program that plays rock paper scissor
  39.  
  40. Lesson 4
  41.  
  42. Exercise day 1
  43.  
  44. Write a calculator
  45. Write a Memory game “flash a number, remember it, and then input it"
  46.  
  47. lesson 5
  48. Lists
  49.  
  50. Write a program that is an address book(using lists)
  51.  
  52. Lesson 6
  53.  
  54. String handling
  55. input a phrase and get the first and last words of a sentence
  56. get the first letter of a string
  57. Write a program that converts English to Morse code
  58. Write a program that converts Morse code to English
  59.  
  60. lesson 7
  61. functions(blocks)
  62. when you are writing a program and you seems to be repeating stuff, it should be a function.
  63.  
  64. write a menu system that calls different functions
  65. Write a program that plays hangman
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement