Please enable JavaScript to use CodeHS


AP Computer Science Principles: Cybersecurity

Lessons

  1. Introduction to Programming

    1. 1.1 Welcome to AP CSP

    2. Description

      In this lesson, students will discuss how computing is used. They will also set goals for this course and beyond.

    3. Objective

      Students will be able to:

      • Identify and brainstorm ways computers have impacted their own lives, as well as society, economy, and culture
      • Develop their own learning objectives for the course by reflecting on why they are taking this course
    4. 1.2 Introduction to Programming With Karel

    5. Description

      In this lesson, students are introduced to Karel the Dog and how Karel can be given a set of instructions to perform a simple task.

    6. Objective

      Students will be able to:

      • Recognize, explain, and use the commands that Karel can be given. These commands are: move(), putBall(), takeBall() and turnLeft().
    7. 1.3 More Basic Karel

    8. Description

      In this lesson, students build on their understanding of how Karel the Dog can be given a set of instructions to perform a simple task.

    9. Objective

      Students will be able to:

      • Recognize, explain, and use the commands that Karel can be given
      • Debug and rework their code as well as someone else’s code
    10. 1.4 Karel Can't Turn Right

    11. Description

      In this lesson, students will learn how to define and call a function using proper syntax.

    12. Objective

      Students will be able to:

      • Define and call functions
    13. 1.5 Functions in Karel

    14. Description

      In this lesson, functions will be used to teach Karel a new word or command. Using functions allows programs to be broken down into smaller pieces and makes it easier to understand.

    15. Objective

      Students will be able to:

      • Understand what functions are, how they are used and how using them improves programs
      • Design and implement their own functions to solve problems
    16. 1.6 The Start Function

    17. Description

      In this lesson, students will learn the importance of writing readable code and how using the start function can help achieve this.

    18. Objective

      Students will be able to:

      • Explain the importance of writing readable code
      • Analyze and compare the readability of different programs
      • Use the start function to make their programs more readable
    19. 1.7 Top Down Design and Decomposition in Karel

    20. Description

      In this lesson, students learn top down design and decomposition as the processes of breaking big problems into smaller, manageable pieces. The functions improve the readability of the code and avoid repeated code.

    21. Objective

      Students will be able to:

      • Break a large problem down into smaller, simpler problems
      • Write functions that solve the simpler problems, and use them as building blocks to solve the larger problem
      • Compare programs and identify good vs. poor decomposition
    22. 1.8 Commenting Your Code

    23. Description

      In this lesson, students will learn how to utilize comments in their code to explain what their code is doing. Comments should include preconditions and postconditions. Preconditions are assumptions we make about what is true before a function is called in our program. Postconditions are what should be true after a function is called in our program.

    24. Objective

      Students will be able to:

      • Explain the preconditions and postconditions of a function
      • Create clear and readable comments in their code that help the reader understand the code
      • Explain the purpose of comments
    25. 1.9 Abstraction

    26. Description

      In this lesson, students will learn about abstraction. Abstraction is the act of managing complexity by dissociating information and details in order to focus on relevant concepts.

    27. Objective

      Students will be able to:

      • Understand abstraction as the different levels of detail and complexity
      • Understand the importance of abstracting away complexity to solve problems more efficiently
    28. 1.10 Super Karel

    29. Description

      In this lesson, students will be introduced to SuperKarel and APIs. SuperKarel includes commands like turnRight() and turnAround() since they are so commonly used. These commands come prepackaged with the SuperKarel library (API).

    30. Objective

      Students will be able to:

      • Write programs that use SuperKarel instead of Karel
      • Utilize the new toolbox of commands that SuperKarel provides over Karel
      • Read the documentation to understand how to use an API (SuperKarel is an example of this)
    31. 1.11 For Loops

    32. Description

      In this lesson, students learn how to use for loops in their programs. The for loop allows you to repeat a specific part of code a fixed number of times.

      A for loops is written as follows:

      for(var i = 0; i < 4; i++)
      {
          // Code to be repeated 4 times
      }
      
    33. Objective

      Students will be able to:

      • Create for loops to repeat code a fixed number of times
      • Explain when a for loop would be a useful tool
      • Utilize for loops to write programs that would be difficult/impossible without loops
    34. 1.12 If Statements

    35. Description

      In this lesson, students will learn about conditions and if statements. A condition is a function that returns a true/false answer. JavaScript uses if statements as a way to make decisions and execute specific code. If statements are helpful in writing code that can be used in different situations.

    36. Objective

      Students will be able to:

      • Use conditions to gather information about Karel’s world (is the front clear, is Karel facing north, etc)
      • Create if statements to only execute code if a certain condition is true
    37. 1.13 If/Else Statements

    38. Description

      In this lesson, students will take a deeper look into conditional statements, more specifically if/else statements. If/else statements allow for one thing to be done if a condition is true, and something else otherwise.

      We write if/else statements like this:

      if(frontIsClear()) {
          // code to execute if front is clear
      } else {
          // code to execute otherwise
      }
      
    39. Objective

      Students will be able to:

      • Explain the purpose of an If/Else statement
      • Create If/Else statements to solve new types of problems
      • Identify when an If/Else statement is appropriate to be used
    40. 1.14 While Loops in Karel

    41. Description

      In this lesson, students are introduced to a new type of loop: while loops. While loops allow Karel to repeat code while a certain condition is true. While loops allow for the creation of general solutions to problems that will work on multiple Karel worlds, rather than just one.

    42. Objective

      Students will be able to:

      • Explain the purpose of a while loop
      • Create while loops to repeat code while a condition is true
      • Utilize while loops to solve new types of problems
      • Test their solutions on different Karel worlds
    43. 1.15 Control Structures Example

    44. Description

      In this lesson, students take a look at all of the control structures. Control structures can be selective, like if and if / else statements and are based on a condition. Other control structures are iterative and allow for repeated code like for loops and while loops. Basically, control structures control the way the commands execute.

    45. Objective

      Students will be able to:

      • Identify the different control structures that can be used to modify the flow of control through a program
      • Combine control structures to solve complicated problems
      • Choose the proper control structure for a given problem
    46. 1.16 Debugging Strategies

    47. Description

      Debugging is a very important part of programming. In this lesson, students learn how to effectively debug their programs.

    48. Objective

      Students will be able to use debugging strategies to find and fix errors in their code.

    49. 1.17 Karel Algorithms

    50. Description

      In this lesson, students are introduced to algorithms which are step by step instructions that solve a problem. Programs implement algorithms. All algorithms are built using sequencing, selection, and iteration. Karel has control structures for each of these. This lesson is designed to test students? knowledge of control structures and algorithm design in preparation for upcoming Karel challenges.

    51. Objective

      Students will be able to:

      • Analyze an algorithm and explain why it works
      • Use control structures to create general algorithms that work on all Karel worlds
    52. 1.18 How to Indent Your Code

    53. Description

      In this lesson, students will learn the proper way to indent their code. Indentation is especially important when using multiple loops, functions, and if statements to show the structure of the code. Indentation provides a good visual approach to see which commands are inside vs. outside of a loop or if statement.

    54. Objective

      Students will be able to:

      • Explain why it is important to indent code
      • Identify proper indentation
      • Modify a program to have proper indentation
      • Write programs with proper indentation
    55. 1.19 Ultra Karel

    56. Description

      In this lesson, students are introduced to Ultra Karel! Ultra Karel has all the abilities of Super Karel, plus two new functions (paint and isColor) added to the API.

      Students will explore the Ultra Karel API and use Ultra Karel’s ability to paint the grid world to create digital images. Students will create generalized algorithms that solve Ultra Karel problems for multiple worlds.

      This lesson is the first time students will use functions that accept parameters as inputs.

    57. Objective

      Students will be able to:

      • Use Ultra Karel commands to paint Karel’s world
      • Call functions that accept parameters as inputs
      • Explain the relationship between a function and a parameter
      • Create generalized Ultra Karel algorithms that correctly solve multiple Karel worlds
      • Identify differences between the Super Karel API and the Ultra Karel API
    58. 1.20 Karel Challenges

    59. Description

      In this lesson, students will synthesize all of the skills and concepts learned in the Karel unit to solve increasingly challenging Karel puzzles.

    60. Objective

      Students will be able to:

      • Define a problem in their own words and plan out a solution to the problem
      • Break a large problem down into smaller pieces and solve each of the pieces, then use these solutions as building blocks to solve the larger problem
      • Utilize the proper control structures to create general solutions that solve multiple Karel worlds
      • Write clear and readable code using control structures, functions, decomposition, and comments
    61. 1.21 Introduction to Programming Quiz

    62. Description

      In this lesson, students complete a summative assessment of the unit’s learning objectives.

    63. Objective

      Students will be able to:

      • Prove their knowledge of control structures, functions, decomposition, and comments through a multiple choice quiz
  2. Practice PT: Pair-Programming Paint!

    1. 2.1 Practice PT: Pair-Programming Paint!

    2. Description

      In this lesson, students will use the grid coloring functionality of Karel to create a digital image.

    3. Objective

      Students will be able to:

      • Develop a program for creative expression, or to satisfy personal curiosity
      • Develop an algorithm and implement it using Karel’s JavaScript library of commands and conditions
      • Collaborate in the development of programs
      • Make a plan for their solution by breaking their problem down into solvable subproblems using Top Down Design
      • Develop abstractions to manage the complexity of their program (write several reusable functions that solve small subproblems)

      Enduring Understandings

      This lesson builds toward the following Enduring Understandings (EUs) and Learning Objectives (LOs). Students should understand that?

      • EU 1.1 Creative development can be an essential process for creating computational artifacts. (LO 1.1.1)
      • EU 1.2 Computing enables people to use creative development processes to create computational artifacts for creative expression or to solve a problem. (LOs 1.2.1, 1.2.3, 1.2.4, 1.2.5)
      • EU 2.2 Multiple levels of abstraction are used to write programs or create other computational artifacts. (LO 2.2.1)
      • EU 4.1 Algorithms are precise sequences of instructions for processes that can be executed by a computer and are implemented using programming languages. (LOs 4.1.1, 4.1.2)
      • EU 5.1 Programs can be developed for creative expression, to satisfy personal curiosity, to create new knowledge, or to solve problems (to help people, organizations, or society). (LOs 5.1.1, 5.1.2, 5.1.3)
      • EU 5.3 Programming is facilitated by appropriate abstractions. (LO 5.3.1)
  3. Programming with JavaScript

    1. 3.1 What is Code

    2. Description

      We define what “code” is, find examples in the real world, and learn about programming as one specific example of code.

    3. Objective

      Students will be able to explain what code is in their own words, and provide examples of code in their lives.

    4. 3.2 Uses of Programs

    5. Description

      We learn about some of the applications of computer programs.

    6. Objective

      Students understand why programming is a useful skill, and can explain ways in which programs are being used today. Students will be able to analyze the positive and negative effects of programs and communicate their findings to their classmates.

    7. 3.3 Hello World

    8. Description

      In this lesson, students will learn how to print messages out onto the console using the Javascript command println.

    9. Objective

      Students will be able to:

      • Write a JavaScript program by typing commands with proper syntax in the start function
      • Write a program that prints out a message to the user
    10. 3.4 Variables

    11. Description

      In this lesson, students learn how to assign values to variables, manipulate those variable values, and use them in program statements. This is the introductory lesson into how data can be stored in variables.

    12. Objective

      Students will be able to:

      • Explain what variables are and what they are used for
      • Use the different types of variables in JavaScript
      • Distinguish between declaring, initializing and assigning variables
      • Create their own variables with proper naming conventions
      • Print out the values stored in variables
    13. 3.5 User Input

    14. Description

      In this lesson, students learn how they can allow users to input information into their programs, and use that input accordingly.

    15. Objective

      Students will be able to:

      • Create programs that ask the user for input
      • Store user input in variables and print it back to the user
      • Choose the proper input function to use depending on the type of information needed
    16. 3.6 Basic Math in JavaScript

    17. Description

      In this lesson, students learn about the different mathematical operators they can use to perform mathematical computations and create useful programs that compute information for the user.

    18. Objective

      Students will be able to:

      • Describe the different mathematical operators we can use in programs
      • Create programs that use basic math to compute useful things
      • Create programs that take in user input, do simple computations with the input, and produce useful output
    19. 3.7 Using Graphics in JavaScript

    20. Description

      In this lesson, students will learn the basics of creating graphics objects. Graphic creation relies on setting the type, shape, size, position, and color on the artist?s canvas before adding to the screen. Using the geometric concepts, and the concept of getWidth() and getHeight(), multiple graphic objects can be created in JavaScript.

    21. Objective

      Students will be able to:

      • Create graphical JavaScript programs that draw shapes on the canvas
      • Locate points on the graphics canvas using (x, y) coordinates
    22. 3.8 Mouse Events: Mouse Clicked

    23. Description

      In this lesson, students are introduced to a way input can be taken from the user’s mouse using the mouse clicked method.

    24. Objective

      Students will be able to:

      • Describe how events are different than timers
      • Use mouse click events to create programs that respond to user clicks
    25. 3.9 Programming with JavaScript Quiz

    26. Description

      In this lesson, students review content with a 15 question Unit Quiz.

    27. Objective

      Students will be able to:

      • Prove their knowledge of basic coding concepts through a multiple choice quiz
  4. JavaScript Control Structures

    1. 4.1 Booleans

    2. Description

      In this lesson, students will learn more about boolean values. Booleans refer to a value that is either true or false, and are used to test whether a specific condition is true or false.

    3. Objective

      Students will be able to:

      • Create boolean variables to represent meaningful yes/no values
      • Print out the value of a boolean variable

      Enduring Understandings

      This lesson builds toward the following Enduring Understandings (EUs) and Learning Objectives (LOs). Students should understand that?

      • EU 4.1 Algorithms are precise sequences of instructions for processes that can be executed by a computer and are implemented using programming languages. (LO 4.1.1)
      • EU 5.5 Programming uses mathematical and logical concepts. (LO 5.5.1)
    4. 4.2 Logical Operators

    5. Description

      In this lesson, students will learn about logical operators. Logical operators allow students to connect or modify Boolean expressions. Three logical operators are the !, ||, && characters.

      • ! = NOT
      • || = OR
      • && = AND
    6. Objective

      Students will be able to:

      • Describe the meaning and usage of each logical operator: OR (||), AND (&&), and NOT (!)
      • Construct logical statements using boolean variables and logical operators
    7. 4.3 Comparison Operators

    8. Description

      In this lesson, students learn how to use comparison operators. Comparison operators let students compare two values.

    9. Objective

      Students will be able to:

      • Explain the meaning of each of the comparison operators (<, <=, >, >=, ==, !=)
      • Create programs using the comparison operators to compare values
      • Predict the boolean result of comparing two values
      • Print out the boolean result of comparing values
    10. 4.4 If Statements

    11. Description

      In this lesson, students learn about if statements as a way to make decisions and execute specific code depending on the validity of a condition.

    12. Objective

      Students will be able to:

      • Explain the purpose of if statements
      • Create their own if statements to selective choose which code is executed in their programs
    13. 4.5 Applying Conditionals - Password Validation

    14. Description
    15. Objective
    16. 4.6 Key Events

    17. Description

      In this lesson, students will learn how to use keyboard keys to control events. Keyboard events capture when the user presses keys on the keyboard. This allows students to write programs that take input from the keyboard to change what is happening in the program.

    18. Objective

      Students will be able to:

      • Create interactive programs that use events to respond to the keyboard input.
    19. 4.7 For Loops in JavaScript

    20. Description

      In this lesson, students will learn in greater detail about for loops. For loops in Javascript are written and executed in the same manner as Karel exercises, except now students will explore modifying the initialization statement, test statement, and increment statements of the loops.

    21. Objective

      Students will be able to:

      • Create for loops in JavaScript
      • Explain the purpose of for loops
      • Utilize for loops to avoid typing out repeated code
      • Use the loop counter i inside the for loop code to do something different on each iteration
    22. 4.8 General For Loops

    23. Description

      In this lesson, students will explore in more detail how they can modify the initialization statement, test statement, and increment statement in a for loop.

    24. Objective

      Students will be able to:

      • Explain the three parts of the for loop (initialization statement, test statement, increment statement)
      • Create for loops that iterate differently than the basic for loop structure (ie count by twos or count backwards)
    25. 4.9 For Loop Practice

    26. Description

      In this lesson, students will learn how to create for loops to solve increasingly challenging problems by using nested for loops and branching control structures.

    27. Objective

      Students will be able to:

      • Explain the purpose of for loops
      • Create for loops to solve increasingly challenging problems
      • Create nested for loops
    28. 4.10 Random Numbers

    29. Description

      In this lesson, students will learn how randomization can enhance a program and be used in combination with various control structures.

    30. Objective

      Students will be able to:

      • Explain why random numbers are a useful part of computer programs
      • Create random values in a program
      • Utilize the DOCS for the Randomizer class in order to learn how to generate random values
    31. 4.11 While Loops

    32. Description

      In this lesson, students will explore while loops and JavaScript variables. This combines the ideas of creating variables, updating variables throughout a loop, and determining the correct ending condition.

    33. Objective

      Students will be able to:

      • Explain the purpose of a while loop
      • Create while loops to repeat code while a condition is true
      • Utilize while loops to solve new types of problems
    34. 4.12 Loop and a Half

    35. Description

      In this lesson, students will learn how to create a Loop and Half. A Loop and a Half is a specific way to write a while loop with the condition being true. Inside the loop, students create a SENTINEL value to break out of the loop whenever that condition is met, causing the loop to end.

    36. Objective

      Students will be able to:

      • Explain how the loop-and-a-half structure is different from a traditional while loop
      • Explain what an infinite loop is
      • Explain what the break statement does
      • Create programs that use the loop-and-a-half structure to repeat code until a SENTINEL is met, causing the program to break out of the loop
    37. 4.13 Javascript Control Structures Quiz

    38. Description

      In this lesson, students review content with a 15 question Unit Quiz.

    39. Objective

      Students will be able to:

      • Prove their knowledge of control structures through a multiple choice quiz
  5. Functions and Parameters

    1. 5.1 Functions and Parameters 1

    2. Description

      In this lesson, students learn about functions and parameters in the context of JavaScript which builds on their prior knowledge of working with functions in Karel. This lesson focuses specifically on defining and calling functions, and passing simple, single parameters to functions.

    3. Objective

      Students will be able to:

      • Explain the purpose of functions
      • Define their own JavaScript functions
      • Utilize (call) their JavaScript functions to solve simple problems
      • Define and call functions that take in parameters as input
    4. 5.2 Functions and Parameters 2

    5. Description

      In this lesson, students will work with and will define and call their own functions that take in multiple parameters as input and print out output.

    6. Objective

      Students will be able to:

      • Explain the purpose of functions
      • Define their own JavaScript functions
      • Utilize (call) their JavaScript functions to solve simple problems
      • Define functions that take in multiple parameters as input, and use print statements for output
    7. 5.3 Functions and Parameters 3

    8. Description

      In this lesson, students continue working with multiple parameters that create graphics as output which is very useful, since creating several different graphical objects involves writing the same code over and over again (set the size, set the color, set the location, etc).

    9. Objective

      Students will be able to:

      • Explain the purpose of functions
      • Define their own JavaScript functions
      • Utilize (call) their JavaScript functions to simplify their graphics programs
      • Identify repeated code that can be simplified with functions and parameters
      • Define functions that take in multiple parameters as input, and create graphics as output
      • Pass parameters of the correct number and type to their defined JavaScript functions
    10. 5.4 Functions and Return Values 1

    11. Description

      In this lesson, students learn about return values so they can write functions that do some work and send the result back or use later in the program.

    12. Objective

      Students will be able to:

      • Explain the purpose of returning a value from a function.
      • Define functions that return values.
      • Create programs that define and call functions with return values and store the result for later use.
    13. 5.5 Functions and Return Values 2

    14. Description

      In this lesson, students work with and define functions with return values and more than one parameter.

    15. Objective

      Students will be able to…

      • Explain the purpose of returning a value from a function.
      • Create functions that return values.
      • Create programs that call functions with return values and use the return values to solve a higher-order problem.
    16. 5.6 Local Variables and Scope

    17. Description

      In this lesson we explore the scoping of a variable, which is where the variable is ?defined? or where it exists.

    18. Objective

      Students will be able to:

      • Identify the scope of a variable
      • Identify which variables are in scope at a given point in a program
    19. 5.7 JavaScript vs Karel

    20. Description
    21. Objective
    22. 5.8 Basic JavaScript and Graphics Challenges

    23. Description

      Use your knowledge of basic Javascript to create some fun programs! Students will create their own Ghost drawings from Pac-Man, a Guessing Game, and a drawing of their own choosing. This will allow students to get creative with their code to show what they have learned.

    24. Objective

      Students will be able to…

      • Synthesize the skills and concepts from the JavaScript and Graphics, JavaScript Control Structures, and the Functions and Parameters units to solve increasingly difficult programming challenges
      • Break down a large problem into smaller parts using Top Down Design, and solve each of these smaller parts using functions
      • Create helpful comments with preconditions and postconditions to help the reader understand the code
      • Find and fix bugs in large programs
    25. 5.9 Functions and Parameters Quiz

    26. Description

      This lesson is a summative assessment of the unit’s learning objectives.

    27. Objective

      Assess student achievement of the learning goals of the unit

  6. Practice PT: Tell a Story

    1. 6.1 Project: Tell a Story

    2. Description
    3. Objective
  7. Basic Data Structures

    1. 7.1 Intro to Lists/Arrays

    2. Description

      In this lesson, students learn about lists/arrays and how to access an element in an array with an index so they can create ordered collections of items and use them in their programs.

    3. Objective

      Students will be able to:

      • Define an array
      • Access certain elements of an array by using an index
    4. 7.2 Indexing Into an Array

    5. Description

      In this lesson, students continue to work with array indexing to get and assign array values so they can incorporate arrays/lists into their programs and handle data more efficiently.

    6. Objective

      Students will be able to:

      • Use indexing to call and assign items in an array
    7. 7.3 Adding/Removing From an Array

    8. Description

      In this lesson, students learn how to add and remove elements at the end of an array using the push and pop methods.

    9. Objective

      Students will be able to:

      • Add elements at the end of an array using the push method
      • Remove elements from the end of an array using the pop method
    10. 7.4 Array Length and Looping Through Arrays

    11. Description

      In this lesson, students will be able to get the length of an array and learn how to loop through an array so they can have more functionality with arrays in their programs.

    12. Objective

      Students will be able to:

      • Determine the length of an array using the length property
      • Use the length of an array and a for loop to loop through the elements in an array
      • Loop over an array to filter or print certain elements based on tested criteria
    13. 7.5 Iterating Over an Array

    14. Description

      In this lesson, students will be able to get the length of an array and loop through an array so they can use arrays in problems involving random numbers and JavaScript graphics.

    15. Objective

      Students will be able to:

      • Use the length of an array and a for loop to loop through the elements in an array
      • Loop over an array to filter or print certain elements based on tested criteria
      • Using iteration on arrays for problems involving randomness and graphics
    16. 7.6 Finding an Element in a List

    17. Description

      In this lesson, students learn and use another method on a list, indexOf in order to find elements in lists within their programs.

    18. Objective

      Students will be able to:

      • Use the indexOf method to find the index of a particular element in an array.
    19. 7.7 Removing an Element From an Array

    20. Description

      In this lesson, students will learn how to use the splice and remove methods to remove an element from an array to add more functionality to their programs.

    21. Objective

      Students will be able to:

      • Use the splice and remove methods to remove an element from an array.
    22. 7.8 Applying Iteration: Usernames and Passwords

    23. Description
    24. Objective
    25. 7.9 Simulation

    26. Description

      We learn what simulations are, how they are used, and we simulate gravity and Conway’s Game of Life.

    27. Objective
    28. 7.10 Basic Data Structures Quiz

    29. Description

      This lesson is a summative assessment of the unit’s learning objectives.

    30. Objective

      Assess student achievement of the learning goals of the unit

  8. Digital Information

    1. 8.1 Intro to Digital Information

    2. Description

      How do computers store and manipulate information? In this lesson, students learn how computers abstract complicated information into manageable chunks that they can then store and manipulate.

    3. Objective

      Students will be able to:

      • explore and explain abstraction and the different ways that we can represent digital information.
    4. 8.2 Number Systems

    5. Description

      In this lesson, students will learn what a number system is, the difference between the decimal number system and the binary number system, and how to convert between decimal and binary.

    6. Objective

      Students will be able to:

      • Represent numbers in different number systems
      • Understand how to convert between the decimal and binary system
    7. 8.3 Encoding Text with Binary

    8. Description

      In this lesson, students will learn what a number system is, the difference between the decimal number system and the binary number system, and how to convert between decimal and binary.

    9. Objective

      Students will be able to :

      • Understand the binary system
      • Encode various types of information using binary
    10. 8.4 Pixel Images

    11. Description

      In this lesson, students will learn how computers break down images into concrete values that can be stored. Students will learn how images are represented digitally using pixels.

    12. Objective

      Students will be able to:

      • Understand how images can be encoded as data
    13. 8.5 Hexadecimal

    14. Description

      In this lesson, students will learn about the hexadecimal number system, and how it is useful in storing digital information. They will also learn how to convert numbers from the hexadecimal system to binary and vice versa.

    15. Objective

      Students will be able to:

      • Understand how to convert between the hexadecimal and binary system
    16. 8.6 Pixel Colors!

    17. Description

      In this lesson, students will learn how the RGB encoding scheme allows us to encode colors as numeric data. It defines the amount of red, green and blue light in a pixel.

    18. Objective

      Students will be able to:

      • Encode colors
      • Encode color images as data
    19. 8.7 Image Manipulation

    20. Description

      In this lesson, students will learn how to include images in their programs and manipulate their pixels using WebImage. Students will learn how image filters manipulate stored pixel data.

    21. Objective

      Students will be able to:

      • Include images in their programs
      • Manipulate the stored pixel data arbitrarily
    22. 8.8 Data Compression

    23. Description

      In this lesson, students will learn how computers shrink digital information, to make storage of pictures, videos, and text more efficient.

    24. Objective

      Students will be able to:

      • have a basic understanding of how data can be compressed.
    25. 8.9 Lossy Compression

    26. Description

      In this lesson, students will what lossy compression is, the benefits and disadvantages of using this kind of compression, and where using lossy compression is appropriate.

    27. Objective

      Students will be able to:

      • understand different types of compressions, and the benefits and drawbacks to each.
    28. 8.10 Introduction to Steganography

    29. Description
    30. Objective
    31. 8.11 Ethics of Steganography

    32. Description
    33. Objective
    34. 8.12 Digital Information Quiz

    35. Description

      This lesson is a summative assessment of the unit’s learning objectives.

    36. Objective

      Assess student achievement of the learning goals of the unit

  9. Practice PT: Steganography - Color Channels

    1. 9.1 Steganography Exploration

    2. Description
    3. Objective
  10. Midterm

    1. 10.1 Midterm

    2. Description
    3. Objective
  11. Encryption

    1. 11.1 Caesar Ciphers

    2. Description
    3. Objective
    4. 11.2 Decrypting and Breaking Caesar Ciphers

    5. Description
    6. Objective
    7. 11.3 Vigenère Cipher

    8. Description
    9. Objective
    10. 11.4 Symmetric and Public Key Encryption

    11. Description
    12. Objective
  12. Practice PT: Create an Image Filter!

    1. 12.1 Practice PT: Create an Image Filter!

    2. Description

      In this project, students will play around with different ways of modifying pixels to create their very own image filter!

      Enduring Understandings

      This lesson builds toward the following Enduring Understandings (EUs) and Learning Objectives (LOs). Students should understand that?

      • EU 1.1 Creative development can be an essential process for creating computational artifacts. (LO 1.1.1)
      • EU 1.2 Computing enables people to use creative development processes to create computational artifacts for creative expression or to solve a problem. (LOs 1.2.1, 1.2.4, 1.2.5)
      • EU 2.1 A variety of abstractions built on binary sequences can be used to represent all digital data. (LO 2.1.2)
      • EU 2.2 Multiple levels of abstraction are used to write programs or create other computational artifacts. (LO 2.2.1)
      • EU 3.1 People use computer programs to process information to gain insight and knowledge. (LO 3.1.2)
      • EU 5.4 Programs are developed, maintained, and used by people for different purposes. (LO 5.4.1)
    3. Objective

      Students will be able to…

      • Create a program that manipulates image pixel data in a creative way, resulting in a novel image filter
  13. The Internet

    1. 13.1 Welcome to the Internet

    2. Description

      In this lesson, students will have a high-level discussion about what the internet is and how the internet works. The topics of anonymity and censorship will also be discussed.

    3. Objective

      Students will be able to:

      • Understand what the internet is
      • Understand how the internet works
      • Discuss the issue of anonymity
      • Understand the legal and ethical concerns surrounding internet censorship
    4. 13.2 Internet Hardware

    5. Description

      In this lesson, we explore the hardware that makes up the internet and explore characteristics of that hardware that define our experience on the internet.

    6. Objective

      Students will be able to:

      • Discuss and answer questions about the hardware that powers the internet
    7. 13.3 Internet Addresses

    8. Description

      In this lesson, students will explore how internet hardware communicates using Internet Addresses and the Internet Protocol.

    9. Objective

      Students will be able to:

      • Discuss the necessity of internet protocols
      • Recognize the hierarchy of elements in an IP address
    10. 13.4 Viewing Websites

    11. Description

      In this lesson, students learn what a URL is and what happens when they visit a URL.

    12. Objective

      Students will be able to:

      • Describe the process that occurs when typing in a URL, from sending a request and response over the Internet to viewing a webpage
    13. 13.5 DNS and Routing

    14. Description

      In this lesson, students will explore the DNS system and how it maps human readable domain names into actual accessible IP addresses.

    15. Objective

      Students will be able to:

      • Understand the DNS system and how it works
      • Recognize the DNS system as an abstraction
    16. 13.6 Routing

    17. Description

      In this lesson, students explore how messages get from one address on the internet to another.

    18. Objective

      Students will be able to:

      • Explain how computers communicate using routers
      • Explain what considerations are made when choosing a route
      • Discuss how routers are fault-tolerant because of redundancy
    19. 13.7 Packets and Protocols

    20. Description

      In this lesson, students learn about the last piece of the puzzle for how the Internet works: Packets and Protocols. All information sent over the internet is broken down into small groups of bits called packets. The format for creating and reading packets is defined by open protocols so that all devices can read packets from all other devices.

    21. Objective

      Students will be able to:

      • Explain the packet process and how protocols (TCP/IP and HTTP) are vital to the exchange of information on the Internet
      • Explain the HyperText Transfer Protocol
    22. 13.8 Sequential, Parallel & Distributed Computing

    23. Description

      In this lesson, students learn about three methods computers use to process tasks ? sequential, parallel, and distributed computing. Sequential computing executes each step in order one at a time, while parallel and distributed computing process tasks simultaneously on the same or across more than one device, respectively.

    24. Objective

      Students will be able to:

      • differentiate between sequential, parallel, and distributed computing
      • explain the benefits and challenges of using parallel and distributed computing
    25. 13.9 The Impact of the Internet

    26. Description

      In this lesson, students are presented with different ways that the Internet impacts their lives. The Internet affects the way that people communicate (emails, social media, video chat) and collaborate to solve problems. It has revolutionized the way that people can learn and even buy things. Because the Internet is present in almost every facet of people’s lives, there are severe ethical and legal concerns that derive from the Internet.

    27. Objective

      Students will be able to:

      • Analyze the different ways that the Internet impacts their lives by learning about how the Internet contributes to collaboration, communication, etc
      • Evaluate whether the Internet has a more positive or negative effect on their community by citing examples from the lesson
      • Explain what the digital divide is and articulate their own opinions related to it
    28. 13.10 Creative Credit & Copyright

    29. Description

      In this lesson, students will learn what copyright laws are and how to avoid copyright infringement. They will explore why copyright laws are important and how they protect the creators.

    30. Objective

      Students will be able to:

      • Explain what copyright laws are and why they are important
      • Find images they are legally allowed to use in their projects
      • Accurately attribute images they find and want to use
    31. 13.11 The Internet Quiz

    32. Description

      This lesson is a summative assessment of the unit’s learning objectives.

    33. Objective

      Assess student achievement of the learning goals of the unit

  14. Cybersecurity

    1. 14.1 Introduction to Cybersecurity

    2. Description
    3. Objective
    4. 14.2 CIA Triad

    5. Description
    6. Objective
    7. 14.3 Identity Crisis

    8. Description
    9. Objective
    10. 14.4 Let Me In

    11. Description
    12. Objective
    13. 14.5 Introduction to Networking

    14. Description
    15. Objective
    16. 14.6 OSI model activity

    17. Description
    18. Objective
    19. 14.7 Network Attacks

    20. Description
    21. Objective
    22. 14.8 Basic Cybersecurity Risk Concepts

    23. Description
    24. Objective
    25. 14.9 Cybersecurity Risk Model-Assessing Risk

    26. Description
    27. Objective
    28. 14.10 Cybersecurity Risk Model-Vulnerabilities

    29. Description
    30. Objective
    31. 14.11 Cybersecurity Risk Model-Security Controls

    32. Description
    33. Objective
  15. Practice PT: Cyber Ethics

    1. 15.1 CyberEthics

    2. Description
    3. Objective
  16. Data

    1. 16.1 Getting Started with Data

    2. Description

      In this lesson, students will learn how computers are used to collect, store, manipulate, and visualize data in order to answer questions and gain knowledge of the world.

    3. Objective

      Students will be able to examine and analyze the growing importance of data in technology and their lives

      Enduring Understandings

      This lesson builds toward the following Enduring Understandings (EUs) and Learning Objectives (LOs). Students should understand that?

      • EU 3.1 People use computer programs to process information to gain insight and knowledge. (LO 3.1.1)
      • EU 3.2 Computing facilitates exploration and the discovery of connections in information. (LOs 3.2.1, 3.2.2)
    4. 16.2 Visualizing and Interpreting Data

    5. Description

      In this lesson, students will learn about the impact of visually representing data to make information easier to analyze and use.

    6. Objective

      Students will be able to:

      • Explain the importance of visually depicting data to make information easier to use and to understand trends and changes in information
    7. 16.3 Data Collection & Limitations

    8. Description

      In this lesson, students learn how computers can be used to collect and store data. They learn best practices for interpreting data that is presented. Data visualizations can be very helpful in recognizing patterns and answering questions, but can also be used to mislead if skewed or full of bias.

    9. Objective

      Students will be able to:

      • Understand how computers collect and store data
      • Analyze data interpretation by learning ways in which data can be skewed
      • How to think meta-cognitively about the data being represented
    10. 16.4 Unintentional Data Sharing

    11. Description
    12. Objective
    13. 16.5 Metadata and Data Collection

    14. Description
    15. Objective
    16. 16.6 Data Quiz

    17. Description
    18. Objective
  17. Project: Present a Data-Driven Insight

    1. 17.1 Present a Data-Driven Insight

    2. Description

      Students will work with a partner to answer a question of personal interest using a publicly available data set. Students will need to produce data visualizations and explain how these visualizations led to their conclusions. They will develop a computational artifact that illustrates, represents, or explains their findings, communicate their findings to their classmates, and embed their artifact in their personal portfolio website.

    3. Objective

      Students will collaborate to process data and gain knowledge about a question of interest to them, and present their data driven insight to their classmates

      Enduring Understandings

      This lesson builds toward the following Enduring Understandings (EUs) and Learning Objectives (LOs). Students should understand that?

      • EU 1.1 Creative development can be an essential process for creating computational artifacts. (LO 1.1.1)
      • EU 1.2 Computing enables people to use creative development processes to create computational artifacts for creative expression or to solve a problem. (LOs 1.2.1, 1.2.2, 1.2.4)
      • EU 3.1 People use computer programs to process information to gain insight and knowledge. (LOs 3.1.2, 3.1.3)
      • EU 3.2 Computing facilitates exploration and the discovery of connections in information. (LO 3.2.1)
      • EU 7.1 Computing enhances communication, interaction, and cognition. (LO 7.1.1)
  18. Project: The Impacts of Computing

    1. 18.1 The Impacts of Computing

    2. Description
    3. Objective
  19. Create Performance Task

    1. 19.1 Create Performance Task

    2. Description
    3. Objective
  20. AP Exam Review

    1. 20.1 Preparation

    2. Description
    3. Objective
    4. 20.2 Practice AP Exam

    5. Description

      This lesson is a practice exam that prepares students for the AP Computer Science Principles exam in May. Like the AP Exam, this lesson consists of a multiple choice test that assesses the learning objectives of the course.

    6. Objective

      Students will be able to…

      • Explain the format of the AP Computer Science Principles exam
      • Identify course topics that they have a strong understanding of
      • Identify course topics that they need to review
  21. Creative Development

    1. 21.1 Intro to Design Thinking

    2. Description

      In this lesson, students are introduced to the concept of design thinking and learn the steps in the design cycle.

    3. Objective

      Students will be able to:

      • Define design thinking
      • Name the steps in the design cycle
    4. 21.2 Prototype

    5. Description

      In this lesson, students will be introduced to prototyping. They will be given guidelines for this step and shown examples in order to successfully create prototypes of their own final project ideas.

    6. Objective

      Students will be able to:

      • Explain what prototyping is and why it is an important part of the design process
    7. 21.3 Test

    8. Description

      In this lesson, students will explore the testing step of the design process. They will see good and bad examples of testing practices and will be able to get feedback on their own prototypes before moving into the building process.

    9. Objective

      Students will be able to:

      • Describe why testing is an important part of the design process
      • Explore good and bad testing practices in order to receive helpful feedback on their final project ideas
    10. 21.4 Project Prep and Development

    11. Description

      In this final programming module, students will put together all of the concepts learned throughout the course to create a website. They will work with partners or in groups to creatively develop a website that includes aspects from each part of the course.

    12. Objective

      Students will be able to:

      • Connect all they’ve learned to create a final website
      • Work in pairs or groups to create a product
  22. Final

    1. 22.1 Final

    2. Description
    3. Objective
  23. Extra Karel Practice

    1. 23.1 Extra Karel Practice

    2. Description
    3. Objective
  24. Extra Karel Puzzles

    1. 24.1 Extra Karel Puzzles

    2. Description
    3. Objective
  25. Karel Challenges

    1. 25.1 Challenge Problems

    2. Description

      It’s time to put it all together! Students have learned all of Karel’s abilities, and have practiced writing programs to solve Karel problems. In this unit, students will synthesize all of the skills and concepts learned in the Karel unit to solve increasingly challenging Karel puzzles.

    3. Objective

      Students will be able to…
      * Define a problem in their own words and plan out a solution to the problem
      * Break a large problem down into smaller pieces and solve each of the pieces, then use these solutions as building blocks to solve the larger problem
      * Utilize the proper control structures to create general solutions that solve multiple Karel worlds
      * Write clear and readable code using control structures, functions, decomposition, and comments

  26. Web Development

    1. 26.1 Introduction to HTML

    2. Description

      In this lesson, students will be introduced to HTML: the language for building web pages. Students will discover why HTML is important and how it works in order to start building their own web pages.

    3. Objective

      Students will be able to:

      • Identify the purpose and applications of HTML
      • Create their first simple web page

      Enduring Understandings

      This lesson builds toward the following Enduring Understandings (EUs) and Learning Objectives (LOs). Students should understand that…

      • EU 1.1 Creative development can be an essential process for creating computational artifacts. (LO 1.1.1)
      • EU 1.2 Computing enables people to use creative development processes to create computational artifacts for creative expression or to solve a problem. (LOs 1.2.1, 1.2.3, 1.2.5)
      • EU 3.2 Computing facilitates exploration and the discovery of connections in information. (LO 3.2.1)
      • EU 5.1 Programs can be developed for creative expression, to satisfy personal curiosity, to create new knowledge, or to solve problems (to help people, organizations, or society). (LOs 5.1.1, 5.1.2)
    4. 26.2 Structure of an HTML Page

    5. Description

      In this lesson, students will level up from learning about simple tags to full HTML documents. Students will discover some new tags that allow information to be placed in different areas of the web page. Students will also learn about the nested tree structure of an HTML document.

    6. Objective

      Students will be able to:

      • Discern the various parts of an HTML page
      • Create fully formed HTML pages

      Enduring Understandings

      This lesson builds toward the following Enduring Understandings (EUs) and Learning Objectives (LOs). Students should understand that…

      • EU 1.1 Creative development can be an essential process for creating computational artifacts. (LO 1.1.1)
      • EU 1.2 Computing enables people to use creative development processes to create computational artifacts for creative expression or to solve a problem. (LOs 1.2.1, 1.2.3, 1.2.5)
      • EU 5.1 Programs can be developed for creative expression, to satisfy personal curiosity, to create new knowledge, or to solve problems (to help people, organizations, or society). (LOs 5.1.1, 5.1.2)
    7. 26.3 Formatting Text

    8. Description

      In this lesson, students learn about formatting tags that let them modify the appearance of text and make their web pages look clear and aesthetically pleasing.

    9. Objective

      Students will be able to:

      • Apply formatting tags in order to modify the appearance of text and make web pages look clear and aesthetically pleasing

      Enduring Understandings

      This lesson builds toward the following Enduring Understandings (EUs) and Learning Objectives (LOs). Students should understand that…

      • EU 1.1 Creative development can be an essential process for creating computational artifacts. (LO 1.1.1)
      • EU 1.2 Computing enables people to use creative development processes to create computational artifacts for creative expression or to solve a problem. (LOs 1.2.1, 1.2.3, 1.2.5)
      • EU 5.1 Programs can be developed for creative expression, to satisfy personal curiosity, to create new knowledge, or to solve problems (to help people, organizations, or society). (LOs 5.1.1, 5.1.2)
    10. 26.4 Links

    11. Description

      In this lesson, students learn how to add hyperlinks to their web pages using the <a> tag.

    12. Objective

      Students will be able to:

      • Add and utilize hyperlinks on their webpages

      Enduring Understandings

      This lesson builds toward the following Enduring Understandings (EUs) and Learning Objectives (LOs). Students should understand that…

      • EU 1.1 Creative development can be an essential process for creating computational artifacts. (LO 1.1.1)
      • EU 1.2 Computing enables people to use creative development processes to create computational artifacts for creative expression or to solve a problem. (LOs 1.2.1, 1.2.3, 1.2.5)
      • EU 3.2 Computing facilitates exploration and the discovery of connections in information. (LO 3.2.1)
      • EU 5.1 Programs can be developed for creative expression, to satisfy personal curiosity, to create new knowledge, or to solve problems (to help people, organizations, or society). (LOs 5.1.1, 5.1.2)
    13. 26.5 Images

    14. Description

      In this lesson, students learn how to add images to their own web pages using the <img> tag!

    15. Objective

      Students will be able to:

      • Embed an image in HTML

      Enduring Understandings

      This lesson builds toward the following Enduring Understandings (EUs) and Learning Objectives (LOs). Students should understand that…

      • EU 1.1 Creative development can be an essential process for creating computational artifacts. (LO 1.1.1)
      • EU 1.2 Computing enables people to use creative development processes to create computational artifacts for creative expression or to solve a problem. (LOs 1.2.1, 1.2.3, 1.2.5)
      • EU 5.1 Programs can be developed for creative expression, to satisfy personal curiosity, to create new knowledge, or to solve problems (to help people, organizations, or society). (LOs 5.1.1, 5.1.2)
    16. 26.6 HTML Lists

    17. Description

      In this lesson, students learn how to add lists to their web pages and practice making different kinds of lists.

    18. Objective

      Students will be able to:

      • Incorporate different kinds of lists to their web pages

      Enduring Understandings

      This lesson builds toward the following Enduring Understandings (EUs) and Learning Objectives (LOs). Students should understand that…

      • EU 1.1 Creative development can be an essential process for creating computational artifacts. (LO 1.1.1)
      • EU 1.2 Computing enables people to use creative development processes to create computational artifacts for creative expression or to solve a problem. (LOs 1.2.1, 1.2.3, 1.2.5)
      • EU 3.2 Computing facilitates exploration and the discovery of connections in information. (LO 3.2.1)
      • EU 5.1 Programs can be developed for creative expression, to satisfy personal curiosity, to create new knowledge, or to solve problems (to help people, organizations, or society). (LOs 5.1.1, 5.1.2)
    19. 26.7 HTML Tables

    20. Description

      In this lesson, students learn how to create and add tables to their web pages!

    21. Objective

      Students will be able to:

      • Create tables in their web pages
      • Explain the benefits of including tables on web pages
      • Compare various ways of displaying information and choose the appropriate format

      Enduring Understandings

      This lesson builds toward the following Enduring Understandings (EUs) and Learning Objectives (LOs). Students should understand that…

      • EU 1.1 Creative development can be an essential process for creating computational artifacts. (LO 1.1.1)
      • EU 1.2 Computing enables people to use creative development processes to create computational artifacts for creative expression or to solve a problem. (LOs 1.2.1, 1.2.3, 1.2.5)
      • EU 3.2 Computing facilitates exploration and the discovery of connections in information. (LO 3.2.1)
      • EU 5.1 Programs can be developed for creative expression, to satisfy personal curiosity, to create new knowledge, or to solve problems (to help people, organizations, or society). (LOs 5.1.1, 5.1.2)
    22. 26.8 HTML Styling

    23. Description

      In this lesson, students will use HTML styling to make their pages visually appealing and unique.

    24. Objective

      Students will be able to:

      • Apply HTML styling to make their web pages more visually appealing and unique

      Enduring Understandings

      This lesson builds toward the following Enduring Understandings (EUs) and Learning Objectives (LOs). Students should understand that…

      • EU 1.1 Creative development can be an essential process for creating computational artifacts. (LO 1.1.1)
      • EU 1.2 Computing enables people to use creative development processes to create computational artifacts for creative expression or to solve a problem. (LOs 1.2.1, 1.2.3, 1.2.5)
      • EU 5.1 Programs can be developed for creative expression, to satisfy personal curiosity, to create new knowledge, or to solve problems (to help people, organizations, or society). (LOs 5.1.1, 5.1.2)
    25. 26.9 Introduction to CSS

    26. Description

      In this lesson, students will begin using CSS to add styling to their HTML pages.

    27. Objective

      Students will be able to:

      • Describe how CSS adds styling to HTML pages

      Enduring Understandings

      This lesson builds toward the following Enduring Understandings (EUs) and Learning Objectives (LOs). Students should understand that…

      • EU 1.1 Creative development can be an essential process for creating computational artifacts. (LO 1.1.1)
      • EU 1.2 Computing enables people to use creative development processes to create computational artifacts for creative expression or to solve a problem. (LOs 1.2.1, 1.2.3, 1.2.5)
      • EU 5.1 Programs can be developed for creative expression, to satisfy personal curiosity, to create new knowledge, or to solve problems (to help people, organizations, or society). (LOs 5.1.1, 5.1.2)
    28. 26.10 CSS Select by Tag

    29. Description

      In this lesson, students use CSS tag selectors to select all elements of the same kind (<table>, or <h1> for example) and give them all the same style.

    30. Objective

      Students will be able to:

      • Use CSS tag selectors to select all elements of the same kind and give them all the same style

      Enduring Understandings

      This lesson builds toward the following Enduring Understandings (EUs) and Learning Objectives (LOs). Students should understand that…

      • EU 1.1 Creative development can be an essential process for creating computational artifacts. (LO 1.1.1)
      • EU 1.2 Computing enables people to use creative development processes to create computational artifacts for creative expression or to solve a problem. (LOs 1.2.1, 1.2.3, 1.2.5)
      • EU 5.1 Programs can be developed for creative expression, to satisfy personal curiosity, to create new knowledge, or to solve problems (to help people, organizations, or society). (LOs 5.1.1, 5.1.2)
    31. 26.11 CSS Select by Class

    32. Description

      In this lesson, students learn to use CSS class selectors to apply CSS styling to all HTML elements that share a specified class which allows students to be more specific when applying their styling.

    33. Objective

      Students will be able to:

      • Use CSS class selectors to apply CSS styling to all HTML units that share a specified class

      Enduring Understandings

      This lesson builds toward the following Enduring Understandings (EUs) and Learning Objectives (LOs). Students should understand that…

      • EU 1.1 Creative development can be an essential process for creating computational artifacts. (LO 1.1.1)
      • EU 1.2 Computing enables people to use creative development processes to create computational artifacts for creative expression or to solve a problem. (LOs 1.2.1, 1.2.3, 1.2.5)
      • EU 5.1 Programs can be developed for creative expression, to satisfy personal curiosity, to create new knowledge, or to solve problems (to help people, organizations, or society). (LOs 5.1.1, 5.1.2)
    34. 26.12 CSS Select by ID

    35. Description

      In this lesson, students will use CSS Selectors by ID to select a single element to format on a webpage.

    36. Objective

      Students will be able to:

      • Use CSS Selectors by ID to select a single element to format on a webpage

      Enduring Understandings

      This lesson builds toward the following Enduring Understandings (EUs) and Learning Objectives (LOs). Students should understand that…

      • EU 1.1 Creative development can be an essential process for creating computational artifacts. (LO 1.1.1)
      • EU 1.2 Computing enables people to use creative development processes to create computational artifacts for creative expression or to solve a problem. (LOs 1.2.1, 1.2.3, 1.2.5)
      • EU 5.1 Programs can be developed for creative expression, to satisfy personal curiosity, to create new knowledge, or to solve problems (to help people, organizations, or society). (LOs 5.1.1, 5.1.2)
    37. 26.13 Web Development Quiz

    38. Description

      In this lesson, students complete a summative assessment of the unit’s learning objectives.

    39. Objective

      Students will be able to:

      • Prove their knowledge of HTML structure and CSS styling through a multiple choice quiz
    40. 26.14 Practice PT: Your First Website

    41. Description

      As part of the AP Test, students are required to complete two Performance Tasks (PTs). Performance tasks are meant to be project-based challenges that touch multiple concepts from the course that produce a digital artifact. In this Practice PT, students will be developing their first digital artifact: their very own website! This website will start off as their own personal homepage and as students progress through the course, they will keep adding links to their favorite projects. By the end of the course, this homepage will serve as their own personal portfolio website showcasing their work!

    42. Objective

      Students will be able to:

      • Create their own website from scratch, hosted at their own custom domain

      Enduring Understandings

      This lesson builds toward the following Enduring Understandings (EUs) and Learning Objectives (LOs). Students should understand that?

      • EU 1.1 Creative development can be an essential process for creating computational artifacts. (LO 1.1.1)
      • EU 1.2 Computing enables people to use creative development processes to create computational artifacts for creative expression or to solve a problem. (LOs 1.2.1, 1.2.3, 1.2.5)
      • EU 5.1 Programs can be developed for creative expression, to satisfy personal curiosity, to create new knowledge, or to solve problems (to help people, organizations, or society). (LOs 5.1.1, 5.1.2)
  27. Functions and Parameters Practice

    1. 27.1 Functions and Parameters Practice

    2. Description
    3. Objective
  28. Extra Console Challenges

    1. 28.1 Prime Numbers

    2. Description
    3. Objective
    4. 28.2 Control Structures

    5. Description
    6. Objective
  29. Animation and Games

    1. 29.1 Timers

    2. Description
    3. Objective
    4. 29.2 Random Circles

    5. Description
    6. Objective
    7. 29.3 Random Ghosts

    8. Description
    9. Objective
    10. 29.4 Bouncing Ball

    11. Description
    12. Objective
    13. 29.5 Mouse Events: Mouse Clicked

    14. Description

      In this lesson, students are introduced to a way input can be taken from the user’s mouse using the mouse clicked method.

    15. Objective

      Students will be able to:

      • Describe how events are different than timers
      • Use mouse click events to create programs that respond to user clicks
    16. 29.6 Mouse Events: Mouse Moved

    17. Description
    18. Objective
    19. 29.7 Drawing Lines

    20. Description
    21. Objective
    22. 29.8 Crazy Ball Game

    23. Description
    24. Objective
  30. Project: Breakout

    1. 30.1 Breakout

    2. Description
    3. Objective
  31. Practice PT: Steganography - Binary

    1. 31.1 Practice PT: Steganography

    2. Description

      In this project, students will be implementing a form of cryptography known as Steganography.

      Steganography is the art and science of concealing secret messages in such a way that no one apart from the intended recipient knows about the existence of the message. In digital information, Steganography is the practice of concealing a file, message, image, or video within another file, message, image, or video.

    3. Objective

      Students will be able to…

      • Explain the connection between cryptography and encoding information digitally
      • Create a program that encodes secret information in the binary pixel data of an image

      Enduring Understandings

      This lesson builds toward the following Enduring Understandings (EUs) and Learning Objectives (LOs). Students should understand that?

      • EU 1.1 Creative development can be an essential process for creating computational artifacts. (LO 1.1.1)
      • EU 1.2 Computing enables people to use creative development processes to create computational artifacts for creative expression or to solve a problem. (LOs 1.2.1, 1.2.4, 1.2.5)
      • EU 2.1 A variety of abstractions built on binary sequences can be used to represent all digital data. (LO 2.1.2)
      • EU 2.2 Multiple levels of abstraction are used to write programs or create other computational artifacts. (LO 2.2.1)
      • EU 3.1 People use computer programs to process information to gain insight and knowledge. (LO 3.1.2)
      • EU 5.4 Programs are developed, maintained, and used by people for different purposes. (LO 5.4.1)
  32. Practice PT: The Effects of the Internet

    1. 32.1 The Effects of the Internet

    2. Description

      In this Practice Performance Task students will choose an innovation that was enabled by the Internet and explore the positive and negative impacts of their innovation on society, economy, and culture. Students will develop a computational artifact that illustrates, represents, or explains the innovation?s purpose, its function, or its effect, and embed this artifact in their personal portfolio website.

    3. Objective

      Students will be able to…

      • Communicate the beneficial and harmful effects of a computing innovation
      • Develop a computational artifact to represent a computing innovation of choice
      • Cite relevant and credible sources in their arguments
      • Gain practice for the AP Explore Performance Task

      Enduring Understandings

      This lesson builds toward the following Enduring Understandings (EUs) and Learning Objectives (LOs). Students should understand that?

      • EU 1.1 Creative development can be an essential process for creating computational artifacts. (LO 1.1.1)
      • EU 1.2 Computing enables people to use creative development processes to create computational artifacts for creative expression or to solve a problem. (LOs 1.2.1, 1.2.2)
      • EU 6.1 The Internet is a network of autonomous systems. (LO 6.1.1)
      • EU 7.1 Computing enhances communication, interaction, and cognition. (LO 7.1.1)
      • EU 7.5 An investigative process is aided by effective organization and selection of resources. Appropriate technologies and tools facilitate the accessing of information and enable the ability to evaluate the credibility of sources. (LOs 7.5.1, 7.5.2)
  33. Visualizing Music

    1. 33.1 Visualizing Music

    2. Description
    3. Objective
  34. Project: Tic Tac Toe

    1. 34.1 Tic Tac Toe

    2. Description
    3. Objective
  35. Project: Helicopter Game

    1. 35.1 Game Design: Helicopter

    2. Description
    3. Objective
    4. 35.2 Basics

    5. Description
    6. Objective
    7. 35.3 Improvements

    8. Description
    9. Objective
    10. 35.4 Polish

    11. Description
    12. Objective
    13. 35.5 Intro to Computer Science Completed

    14. Description
    15. Objective
  36. Data Structures Challenge Problems

    1. 36.1 Conway's Game of Life

    2. Description
    3. Objective
    4. 36.2 Connect Four

    5. Description
    6. Objective
  37. More Basic Data Structures

    1. 37.1 Intro to Objects/Maps

    2. Description
    3. Objective
    4. 37.2 Basics of Objects

    5. Description
    6. Objective
    7. 37.3 Iterating Over an Object

    8. Description
    9. Objective
    10. 37.4 When Do I Use an Object?

    11. Description
    12. Objective
    13. 37.5 Intro to Sets

    14. Description
    15. Objective
    16. 37.6 Intro to Grids

    17. Description
    18. Objective
    19. 37.7 Looping Over a Grid

    20. Description
    21. Objective
    22. 37.8 Grid Example: Get a Row

    23. Description
    24. Objective
    25. 37.9 Data Structures Challenges

    26. Description
    27. Objective
  38. Computer Science Principles Pretest

    1. 38.1 Computer Science Principles Pretest

    2. Description
    3. Objective
  39. Computer Science Principles Posttest

    1. 39.1 Computer Science Principles Posttest

    2. Description
    3. Objective
  40. Extra AP Pseudocode Practice

    1. 40.1 Extra AP Pseudocode Practice

    2. Description
    3. Objective
  41. Additional Cybersecurity Modules

    1. 41.1 Cryptography

    2. Description

      In this lesson, students learn how computers encrypt and decrypt information. Students learn the difference between asymmetric and symmetric encryption.

    3. Objective

      Students will be able to:

      • Explain what cryptography is and how it is used
      • Analyze an encryption and determine if it is weak or strong
      • Explain the difference between an easy and hard problem in computer science
      • Explain the difference between algorithms that run in a reasonable amount of time and those that do not run in a reasonable amount of time
      • Explain the difference between solvable and unsolvable problems in computer science
      • Explain the existence of undecidable problems in computer science
  42. Practice PT: The Shopping List

    1. 42.1 Practice PT: The Shopping List

    2. Description
    3. Objective
  43. Practice PT: Testing 1, 2, 3 ...

    1. 43.1 Practice PT: Testing 1, 2, 3 ...

    2. Description
    3. Objective