Millennium High School Agenda Calendar

Slides:



Advertisements
Similar presentations
Looping Structures: Do Loops
Advertisements

Week 5 - Friday.  What did we talk about last time?  Repetition  while loops.
1 9/29/06CS150 Introduction to Computer Science 1 Loops Section Page 255.
1 9/29/06CS150 Introduction to Computer Science 1 Loops Section Page 255.
1 9/28/07CS150 Introduction to Computer Science 1 Loops section 5.2, 5.4, 5.7.
Section 2.6 Question 1. Section 2.6 Answer 1 Section 2.6 Question 2.
Real World Programming BBrewer Fall Programming - Bellwork 1.Log on 2.Go to edmodo 3.Open & Save Vocabulary Graphic Organizer and Analaysis Document.
COMP 1001: Introduction to Computers for Arts and Social Sciences Programming in Scratch Monday, May 16, 2011.
CPS120 Introduction to Computer Science Iteration (Looping)
COMPUTER PROGRAMMING. Iteration structures (loops) There may be a situation when you need to execute a block of code several number of times. In general,
1 Karel – Chapter 6 Instructions That Repeat Note: Original slides provided by and modified for Mr. Smith’s AP Computer Science.
January 19 Ms. Wu says … thanks for working hard! Now get to work! 1)Get out HW )Get started on the warm up quietly. 3)Grade HW )Retrieve manila.
19 September 2014 Good Morning, please try to attend the College Fair from 9am to noon at the Moreno Valley Conference and Recreation Center this Saturday,
Computer Science: A Structured Programming Approach Using C1 5-2 Two-Way Selection The decision is described to the computer as a conditional statement.
Computer Science: A Structured Programming Approach Using C1 5-2 Two-Way Selection The decision is described to the computer as a conditional statement.
My clicker is working. (T/F/not sure). I’m a vegetarian. (T/F/not sure)
Intro to Nested Looping Intro to Computer Science CS1510 Dr. Sarah Diesburg.
Intro to Nested Looping Intro to Computer Science CS1510 Dr. Sarah Diesburg.
Chapter 7: Repetition Structure (Loop) Department of Computer Science Foundation Year Program Umm Alqura University, Makkah Computer Programming Skills.
Mon day August 11th Day 2 Friday’s H.W.: Graphing 1. Please have these Items on your desk. AR Book Science Starter: Two vocabulary words. Data Analysis:
Microsoft® Small Basic Conditions and Loops Estimated time to complete this lesson: 2 hours.
VERBS Numbers Contractions Words.
CMSC201 Computer Science I for Majors Lecture 05 – Comparison Operators and Boolean (Logical) Operators Prof. Katherine Gibson Prof. Jeremy.
Unit 1. Day 1.. Normal Math Class (49 minutes) Quiz [Have homework on desk. I check HW] (10 min) Quiz answers (5 min) Review Homework: ASK QUESTIONS (4.
CMSC201 Computer Science I for Majors Lecture 05 – Comparison Operators and Boolean (Logical) Operators Prof. Katherine Gibson Based on slides by Shawn.
Friday, October 28, 2016 CW: Earthquake Quiz Study Guide
Graphing Inequalities
Exploring Computer Science Lesson 4-10 – Part 1
Simple Control Structures
More Repetition While and For Loops Sentinel-Controlled Loops
For Loops October 12, 2017.
Intro to Computer Science CS1510 Dr. Sarah Diesburg
Introduction to pseudocode
Intro to Nested Looping
LESSON 18-3 Completing the Statement of Cash Flows
Welcome to <INSERT school name>’s
Scratch: selection / branching/ if / If…else / compound conditionals / error trapping by Mr. Clausen.
Intro to Nested Looping
“What percent of Whole is Part?” “What Part is Percent of Whole?”
Algorithms Take a look at the worksheet. What do we already know, and what will we have to learn in this term?
Design and Implementation
Intro to Computer Science CS1510 Dr. Sarah Diesburg
Intro to Nested Looping
First week of Homework.
More Repetition While and For loop variations
CSCI N207 Data Analysis Using Spreadsheet
Welcome to Mountain View Elementary School!
Warm-up: Solve the system:
Announcements
Intro to Nested Looping
Millennium High School Agenda Calendar
Science. Planner. 1/31/17 WALT: understand Surface Gravity. WU:
Science Planner 10/10/16 WALT: What can shadows teach us.
Simulation allows us to perform “experiments” without actually having to do the experiments in real life...this is done through the use of random numbers.
Millennium High School Agenda Calendar
Millennium High School Agenda Calendar
Millennium High School Agenda Calendar
Millennium High School Agenda Calendar
Millennium High School Agenda Calendar
Millennium High School Agenda Calendar
Millennium High School Agenda Calendar
Millennium High School Agenda Calendar
Millennium High School Agenda Calendar
LESSON 18-3 Completing the Statement of Cash Flows
If-Statements and If/Else Statements
Millennium High School Agenda Calendar
Millennium High School Agenda Calendar
How to allow the program to know when to stop a loop.
True or False True or False
Exploring Computer Science Lesson 4-10 – Part 1
Presentation transcript:

Millennium High School Agenda Calendar 9/7/16 Objectives: Teach Karel about conditions and how to handle them. Section 10 If Statements WU: Vocabulary Words CW: Work with If Statements HW: Section 10 (#18) ☺☻ CA Standards: Computer Science “Life is like riding a bicycle. To keep your balance, you must keep moving. ” -Albert Einstein

Condition A condition is code that you put inside an if statement or while-loop. If Statement An if statement lets you ask a question to the program and only run code if the answer is true. Control Structure A control structure lets us change the flow of the code.