Success criteria Complete an assessment Complete some code A grade by the end of the day.

Slides:



Advertisements
Similar presentations
AIMSweb Benchmark Online Training For AIMSweb Teacher Users
Advertisements

Extended DISC Online System User Instruction: How to Run a Team Analysis.
Computing Science Software Design and Development SOFTWARE DESIGN AND DEVELOPMENT USING PYTHON.
Lesson Objectives. 1. Learn how to finish Unit 4 Assessment 2.
FAMIS TRAINING The Basics. Basic FAMIS Training (Logging on & off, & basic screens.)  Before beginning this training you must request your user id and.
Faculty LMS Orientation
Chapter 2: Modularization
SCORINGPETS The world’s first and only universal tag traceback system Developed by ScoringSystem, Inc
ICHAT is the only public resource for non-fingerprint-based Michigan criminal history background checks.
Math operators and a challenge Mastery Objectives: Students will— Be able to use augment assignment operators Demonstrate proficiency in using types, variables.
Evaluation of Electronic MCQ/EMQ Examinations 2008/9.
Need your MyMathLab card with your access code Need a Valid Address Need to know Purdue’s zip code is and your course ID for your Class You.
Need your MyMathLab card with your access code Need a Valid Address Need to know Purdue’s zip code is and your course ID for your Class You.
Need your MyMathLab card with your access code Need a Valid Address Need to know Purdue’s zip code is and your course ID for your Class You.
Programming Introduction November 9 Unit 7. What is Programming? Besides being a huge industry? Programming is the process used to write computer programs.
Supplier Invoicing North America
List step of finding percent of a whole (discount is same thing)
CC0002NI – Computer Programming Computer Programming Er. Saroj Sharan Regmi Week 7.
CPSC 171 Introduction to Computer Science 3 Levels of Understanding Algorithms More Algorithm Discovery and Design.
Career Services Center Employer Training. This is the main login page. The link can be found at Employers.
DATE: ______/_______/_______NAME: ________________________________________________________________________________ Assignment: As part of our preparation.
General Programming Introduction to Computing Science and Programming I.
IIS Home Screen (Teacher) Copyright © 2011 Pearson Education, Inc. or its affiliates. All rights reserved.1.
Python Programming Introduction to programming using python.
Collection of Assessment Results
Welcome Course name Faculty name. YOUR COURSE MATERIALS Warren/Reeve/Duchac, Accounting: 22E You will… — be tested — receive homework assignments — have.
Meshing Objective information with Students At Risk.
9.2 Dealers Cost Warm Up 11/13 1) $38,306 + $380 + $715 + $565 = 2) $15,342 + $1,225 + $319 + $90 = 3). $39,966 $16,976 $ 25,184.
Created by Tammillye Ward Thinkgate Using Thinkgate to Answer the 4 Critical Questions of a PLC What do we want the students to learn? How will we know.
Bell Ringer Marlin made $557 in gross pay. His employer withheld $88.25 in total federal tax, state tax, and FICA from his check. How much was his net.
Welcome to the Searching for Clients lesson for the North Carolina Immunization Registry. This lesson is intended for all User Roles.
Salesperson Training Manual AAX ™ Used Vehicle Inventory Management System – Sales Person Training Revision ™ Help Desk
Welcome to State of Michigan Time & Expense Processing Employee Expense Modification (No Advance) Tutorial Brought to you by the Office of Financial Management.
Dual Enrollment Obtaining MEID and Student ID Process.
PROGRAMMING IN PYTHON LETS LEARN SOME CODE TOGETHER!
Creating a Test in EADMS
© The McGraw-Hill Companies, 2006 Chapter 3 Iteration.
An Introduction to Programming with C++ Sixth Edition
Programming Problems Intermediate 2 Computing SHOW YOUR TEACHER YOUR WORKING PROGRAM AND WRITING FRAME THEN SAVE IN YOUR PROGRAMMING FOLDER AND UPDATE.
3.1.3 Program Flow control Structured programming – SELECTION in greater detail.
Starter – Its the small things in life What’s wrong with this code Height = 10 Width = 10 A = Height * Width Print A Remember to check: Spelling Spacing.
Created by Lori Cummings. TEACHER JOB AID Accessing the website. Type the following URL into your browser: Enter your.
Conditionals.
The College Application Process. Welcome to Naviance Understanding The Common App and Apply Texas Matching the Common Application Adding colleges to the.
ABI Electronic Attendance for Elementary Schools Prepared by The SBCUSD Assessment & Accountability Department Revised: February
FIGURE 4-10 Function Return Statements
Exploring Computer Science Lesson 4-10 – Part 1
Formative Feedback The single most powerful influence on enhancing achievement is feedback. Hattie, 2009 At best, students receive ‘moments’ of feedback.
Learning to Program in Python
DISCOVERY EDUCATION Student Progress Monitoring
FIGURE 4-10 Function Return Statements
Programming In Lesson 3.
Learning to Program in Python
And and or…and RANDOMNESS
FIGURE 4-10 Function Return Statements
GUI Test Information.
COMPUTATIONAL THINKING END OF UNIT ASSESSMENT
HOW TO CHECK YOUR PROGRESS
DISCOVERY EDUCATION Student Progress Monitoring
EOTT Today is the EOTT for the topic we have been working on.
FIGURE 4-10 Function Return Statements
Do it now activity Log onto the computer.
Basic Mr. Husch.
GCSE Computing Mini Assignment.
CMPT 120 Lecture 6 – Unit 1 – Chatbots
GCSE Computing.
How to set up your account
Exploring Computer Science Lesson 4-10 – Part 1
SELF-ASSESSMENT.
Presentation transcript:

Success criteria Complete an assessment Complete some code A grade by the end of the day

Computer Science Review and where are we?

Homework Is what you handed in...a fair representation of you? A scrap of paper is no longer going to be enough. I am actually a little insulted by what was handed in.

Homework – green pen/red pen Respond to it

Written questions

Definitions

Practical Assessment Task 1 – Lists - Fortune Cookie program Create a program where a user enters their name and it gives them a random future prediction based on one of up to six different futures. Task 2 – Variables – simple I/O - Car salesman program The user enters a base price of a car. It should add on a bunch of extras fees such as tax, licences, dealer prep and destination charge. Make tax and license a percent of the base price. The other fees should be set values. Display the price of the car once all the extras are applied. Task 3- IF statements – The password statement Create and mimic/simulate the login procedure of a highly secure computer system.

Marking the efforts so far... Finished? 1 piece2 pieces3 pieces Does the programming work? Not workingWorks without issue Does it do what was requested? Does no criteriaMeets all criteria and What is going well? What do you feel you have ‘got’? What should I really revise and work on? 1112 goes Beyond it

Cheat sheet import random number = random.randint(0,5) 1.(a) Create a random number (b) Create a list of predictions (c) Search the list based on the random number (d) print an outcome 2.(a) Price of a car (b) add all the additional costs (c) create all percentages (d) print the end figure and the updated figure 3.(a) get someone to enter a password (b) Check If the password is correct (c) Check If the password is incorrect