IB Computer Science Year 2 Higher Level - August 28 2018 Lesson Notes: Difference between revisions

From Computer Science Wiki
(Created page with " __NOTOC__ <table cellspacing="10" style="width:100%;"> <tr> <td style="width:50%; margin:0; margin-top:10px; margin-right:10px; border:1px solid #dfdfdf; padding:0 1em 1em 1...")
 
 
(2 intermediate revisions by the same user not shown)
Line 17: Line 17:
* Work on diagraming with [[UML]]
* Work on diagraming with [[UML]]
* Read some code
* Read some code
* Register for treehouse
* Backup files on our server in Germany
<syntaxhighlight lang="python">
import random
grid = []
# let's make our map.We assume a 25 x 25 map
for i in range(0,625):
    grid.append(random.randrange(1,4))
def draw_board():
    row = 0
    for i in range(0,625):
        print(str(i).zfill(3),end="")
        row = row + 1
        if row == 25:
            print ("\n")
            row = 0
    return
draw_board()
</syntaxhighlight>
* Work on due dates for IA
* Work on due dates for IA



Latest revision as of 21:37, 27 August 2018

Class plan.png What are we going to learn today?[edit]

Welcome to IB Computer Science!

Today we will:

  • Review our homework with each other
  • Work on diagraming with UML
  • Read some code
  • Register for treehouse
  • Backup files on our server in Germany
import random

grid = []


# let's make our map.We assume a 25 x 25 map

for i in range(0,625):
    grid.append(random.randrange(1,4))

def draw_board():
    row = 0
    for i in range(0,625):
        print(str(i).zfill(3),end="")
        row = row + 1
        if row == 25:
            print ("\n")
            row = 0 
    return

draw_board()


  • Work on due dates for IA

Homework.png What is our home learning?[edit]

  • Please complete the problem set by our next class. Details are on google classroom.


Target.png How am I being assessed today?[edit]

I will assess you formatively today, and make a professional judgement to what extent you understand our learning material. I will use observation, your written work, answers to questions, and contribution to class discussions as data to make my decisions.

I will also ask you to complete a self-assessment which I will use to help me guage how well you think you understand our material in class.

Computer1.png As a computer scientist, you have:[edit]

  • Confidence in dealing with complexity
  • Persistence in working with difficult problems
  • Tolerance for ambiguity
  • The ability to deal with open-ended problems
  • The ability to communicate and work with others to achieve a common goal or solution

Credit.png Credits[edit]