High School Exploring Computer Science: Difference between revisions

From Computer Science Wiki
No edit summary
Line 4: Line 4:
= Enduring Understandings =
= Enduring Understandings =
   
   
What do we want you to remember 10 years from now about computer science?
1. You can design and create software to solve problems
1. You can design and create software to solve problems


2. Computer scientists are a tribe who use specific tools, languages, and techniques to understand and solve problems (source).
2. Computer scientists are a tribe who use specific tools, languages, and techniques to understand and solve problems.


3. If you want to know what is true, you must must know the depth of a thing
3. If you want to know what is true, you must must know the depth of a thing


=Computational Thinking standards=
=Computational Thinking standards=

Revision as of 10:07, 29 February 2016

Computer science is the study of computers and algorithmic processes, including their principles, their hardware and software designs, their applications, and their impact on society." --ACM/CSTA Model Curriculum for K-12 Computer Science


Enduring Understandings[edit]

What do we want you to remember 10 years from now about computer science?

1. You can design and create software to solve problems

2. Computer scientists are a tribe who use specific tools, languages, and techniques to understand and solve problems.

3. If you want to know what is true, you must must know the depth of a thing

Computational Thinking standards[edit]

Collaboration standards[edit]

Computing Practice and Programming standards[edit]

Computers and Communications Devices standards[edit]

Community, Global, and Ethical Impacts standards[edit]

import random
import sys
board = [1,2,3,4,5,6,7,8,9]
 
x_squares = []
o_squares = []
 
def update_board(grid_place):
        if grid_place in x_squares:
            token = "X"
        elif grid_place in o_squares:
            token = "O"
        else:
            token = str(grid_place)
        return token