Thought for the Week
JUNIORS: ACT ON TUESDAY, MARCH 7TH

AP Computer Science Principles
On Monday and Wednesday, students will have class time to wrap up their "Create" performance task. By the end of class on Wednesday, students will have been given the required 12 hours of class time to work on their projects. Our projects are due to the AP board by May 1st at 10:59PM EST. I highly suggest that students turn in their projects AT LEAST one week prior to the deadline. Any tech issues that arise during the submission process that result in an item not being submitted on time will have a negative impact on the overall AP score.
On Thursday, we will start investigating some new material. Our primary focus for this class will be looking at the different types of number systems that are used within a computer: binary, hexadecimal, and ASCII. For the AP Exam, students will need to understand these numbering systems, how they can be used, and how to convert between them.
App Development 1
We will start off this week by wrapping up our lesson on "Operators". With this lesson, students have a code challenge to complete as well as our third technical blog post where students summarize what they have learned. For the rest of the week, we will focus on text fields. Text fields allow us to get some input from the user and create some interactivity within our app.
App Development 2
This week, our primary focus will be on writing custom classes and using them to create objects within our app. Last week, we created a class called "Item" that was used to store the name and quantity of each item on a shopping list. We will continue to work with this idea as well as extend this to "Inheritance". This is the idea of having classes build off of each other. For example, we might create a class for a "Vehicle". In this class, we could talk about the number of wheels on our vehicle. Then we might
extend this and create a class called "Car". We would set the number of wheels to be 4, and we could bring in a new property, like gas mileage.