Unit 1: Day 4
START DATE:DUE DATE:STATUS:Open
Tasks
4.1 Impact of Computing - Personal Data Protection
- Discuss that as technology becomes more and more connected, data issues become more and more prevalent, especially regarding Personal Identifiable Information (PII)
- AP CSP Essential Knowledge
- Personally identifiable information (PII) is information about an individual that identifies, links, relates, or describes them. Examples of PII include:
- social security number, age, race, phone number(s), medical information, financial information, biometric data
- Search engines can record and maintain a history of searches made by users.
- Websites can record and maintain a history of individuals who have viewed their pages.
- Devices, websites, and networks can collect information about a user’s location.
- Technology enables the collection, use, and exploitation of information about, by, and for individuals, groups, and institutions.
- Search engines can use search history to suggest websites or for targeted marketing.
- Disparate personal data, such as geolocation, cookies, and browsing history, can be aggregated to create knowledge about an individual.
- PII and other information placed online can be used to enhance a user’s online experiences.
- PII stored online can be used to simplify making online purchases.
- Commercial and governmental curation of information may be exploited if privacy and other protections are ignored.
- Information placed online can be used in ways that were not intended and that may have a harmful impact. For example, an email message may be forwarded, tweets can be retweeted, and social media posts can be viewed by potential employers.
- PII can be used to stalk or steal the identity of a person or to aid in the planning of other criminal acts.
- Once information is placed online, it is difficult to delete.
- Programs can collect your location and record where you have been, how you got there, and how long you were at a given location.
- Information posted to social media services can be used by others. Combining information posted on social media and other sources can be used to deduce private information about you.
4.2 History of Tech Work Time #1
OR
Explore Teachers Resource Activity 2 - Collecting Data Worksheet
- Note to Canadian teachers - The aboutmyinfo.org site mentioned in the worksheet may not work in your jurisdiction
- The AP Explore Teachers Resource requires an official AP account. The link can be found here.
4.3 Start P5.js Assignment 1 - Draw a Scene
- Instructions for this assignment can be found in the Shared Activities Folder (1.2 - Year 1: Programming Part 1)
- Encourage them to be creative and show off their artistic skills
- Remember example students projects can be found in our resources package for every assignment.
Unit 1 - Set-up Code for Assignment 1
//Link to an easy color picker like https://www.w3schools.com/colors/colors_picker.asp
function setup() {
let sketch = createCanvas(300, 400);
sketch.parent("mycanvas");
rectMode(CENTER);
}//end setup
function draw() {
background(179, 89, 0);
fill(221, 153, 255);
rect(150, 30, 120, 80, 10);
//at least 10 shapes
//fill, stroke, strokeWeight
//triangle, quad or point (Help... reference)
}//end draw
function mousePressed(){
print(mouseX + ", " + mouseY);
}//end mousePressed
Continue to Unit 1: Day 5 »