Summary: Today we started by doing out code review for Turtle Challenge #15
Homework:
- Four Function Calculator App (due Thursday)
- Extra Credit: Turtle Challenge #15 only using the move command (due Friday)
Summary: Today we started by doing out code review for Turtle Challenge #15
Homework:
Summary: Today we discussed “The Internet is for Everyone: Challenge #1“.
Spreadsheets Data (Mobile and Fixed)
Mobile | Fixed |
cable.com.uk | broadbandsearch.net |
broadbandsearch.net | todaytesting.com |
worldpopulationreview.com | cable.co.uk |
statista.com |
Homework:
When completing your code challenges keep in mind the four characteristics of quality code…
Or put another way…
Submit Your Programming Challenges here. Please make sure your challenge meets all of the requirements before submitting. Also please make sure your app is titled “Programming Challenge #__” to make it extra clear which challenge you have completed.
Summary: Today we took some notes and practiced with variables…
var x; //Create a variable named x
x=5; //Assign the value 5 to the variable
x=x+2 //Add two to the variable. The variable x now holds the value 7
x=x+" Up" //Append (aka Concatenate) the string " Up" to the variable.
console.log(x); //Will print "7 Up" to the console.
Homework: Unit 4 Lesson 2 Bubbles 1-7 (due Monday), Turtle Challenge #15 (due Monday)
Summary: Today we learned how to solve degree 2 polynomial equations (quadratic equations) using the quadratic formula…
See an example that uses the quadratic formula below…
Homework: HW11
Summary: For bellwork please read this very short history of debugging, and a little bit about Grace Hopper.
Homework: see above
Summary: Today we learned several new vocabulary words.
We also learned how to find the discriminant which can be found using the formula b2-4ac.
The discriminant can tell you some important things about your quadratic (degree 2) equation.
If the Discriminant is…
Homework: HW10