Millennium High School Agenda Calendar

Slides:



Advertisements
Similar presentations
Game with US Beginner Tutorial. Welcome!! Who I am What is Processing? Basic Coding Input Methods Images Classes Arrays.
Advertisements

Week 4 Recap CSE 115 Fall 2006 Section C. Decoupling Separation of concerns Defining what an object can do, not how it does it.
Jon Wareham, senior in SE & CS Jake Jones, senior in SE Jordan Yates, senior in CS PJ Neary, senior in CS Phil Winninghoff, department volunteer Frank.
computer
ORDER OF CONTENT AND INSTRUCTIONS A program in its simplest form usually contains three kinds of activity:  INPUT : The program asks the user for some.
Examples of comparing strings. “ABC” = “ABC”? yes “ABC” = “ ABC”? No! note the space up front “ABC” = “abc” ? No! Totally different letters “ABC” = “ABCD”?
1 Computer Science of Graphics and Games MONT 105S, Spring 2009 Session 1 Simple Python Programs Using Print, Variables, Input.
Intro to Programming Web Design ½ Shade Adetoro. Programming Slangs IDE - Integrated Development Environment – the software in which you develop an application.
Time Complexity. Solving a computational program Describing the general steps of the solution –Algorithm’s course Use abstract data types and pseudo code.
Notebook Checks. Notebook Check # 1 Intro to Science Letter Lab safety Lab equipment Science words Vocab 20 pts.
Your Mission Objectives
Development Team: Mirza NagjiTony Penta Jessica WhitleyRyan Hillman Ian QuattlebaumQuentin Dubois Jack Enloe Client: Gary Bishop.
1 Project 4: Palindrome Detector. 2 Assignment Write a C++ program that reads a line of text from the keyboard and reports to the user whether the text.
Computer Software engineer By: Eric Musser. What is This? Computer engineers make programs to run a computer. Computer engineers make programs to run.
Programming Basics - RobotC Introduction to Robotics.
By : Jack Kelenjian. Is a career in computers right for me? To determine if a career in computers is right for someone you need to identify what makes.
Science Starters 7 th Grade Week of Nov 29. What bodily function is shown below?
INTRODUCTION TO ROBOTICS Part 5: Programming
“BELL RINGER” What is one word you are not familiar with on your vocab list? HW: Read/Questions/Evidence.
Computer Science A-level
Clothing Stores in Oakland CA
Hackers and Crackers iJacsn.
The Need for Programming Languages
JavaScript Part 2 Organizing JavaScript Code into Functions
IPC144 Introduction to Programming Using C Week 1 – Lesson 2
Chapter 1: Intro (excerpt)
More Nested Loops and Lab 5
WU: Convert the following:
While Loops and If-Else Structures
Intro to Computer Science (JavaScript)
در تجزیه و تحلیل شغل باید به 3 سوال اساسی پاسخ دهیم Job analysis تعریف کارشکافی، مطالعه و ثبت جنبه های مشخص و اساسی هر یک از مشاغل عبارتست از مراحلی.
Types, Truth, and Expressions (Part 2)
String Encodings and Penny Math
Types, Truth, and Expressions (Part 2)
CSE 115 September 29 – October 3, 2008.
Types, Truth, and Expressions (Part 2)
Programming Basics - RobotC
The C Programming Language
TITLE TITLE TITLE TITLE
CSE 115 September 29 – October 3, 2008.
ELA 8 Vocab Review Directions: The three-four pictures, in one way or another, represent one of the academic vocabulary terms. Your job is to figure out.
While Loops and If-Else Structures
COMPUTATIONAL THINKING L1: PROBLEM SOLVING
Intro to Programming & Algorithm Design
Types, Truth, and Expressions (Part 2)
A Community of Learners and Teachers
Intro to Computer Science
CPS120: Introduction to Computer Science
Performance Measurement
Millennium High School Agenda Calendar
String Encodings and Penny Math
Francini Reis NAD Presenter.
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
If-Statements and If/Else Statements
Hint idea 2 Split into shorter tasks like this.
Millennium High School Agenda Calendar
Agenda IR Much Ado HW: Body Paragraphs of Much Ado Essay due Monday
Millennium High School Agenda Calendar
In this task you will see different shapes.
Intro to Computer Science CS1510 Dr. Sarah Diesburg
Computer Science A-level
Types, Truth, and Expressions (Part 2)
Presentation transcript:

Millennium High School Agenda Calendar 8/23/16 Objectives: Intro to CodeHS & show how Karel can perform simple tasks. Programming w/Karel Intro to Programming WU: Vocab Words/Review Sec.2 CW: Section 3 HW: Complete Section 3 (#10) ☺☻ CA Standards: Computer Science “Your time is limited, so don’t waste it living someone else’s life.” --Steve Jobs

Call a function Calling a function actually gives the command, so the computer will run the code for that function. Curly Bracket An open curly bracket is { and a close curly bracket is } Function A function is a way to teach Karel a new word. Function body The part of a function that contains the commands lowerCamelCase lowerCamelCase is a naming convention where the first letter is lower case, and each subsequent start of a word is upper case.