Seating “chart” Front Back 4 rows 5 rows 5 rows 4 rows 2 rows 2 rows

Slides:



Advertisements
Similar presentations
Please CLOSE YOUR LAPTOPS, and turn off and put away your cell phones, and get out your note-taking materials. Today’s daily quiz will be given at the.
Advertisements

Please open your laptops, log in to the MyMathLab course web site, and open Daily Quiz 18. You will have 10 minutes for today’s quiz. The second problem.
Coming up: Today: Section 2.4 Next class period: Review for Online Quiz 2 Class period after that: Review for Gateway Quiz 2(taken right after Spring Break)
Math 010 online work that was due today at the start of class:
WELCOME! Mr. White 6 th Grade Earth Science. A LITTLE ABOUT ME THIS IS MY SECOND YEAR TEACHING EARTH SCIENCE. THIS IS MY FOURTH YEAR AT GRIFFIN. I WAS.
Welcome to CS 115! Introduction to Programming. Class URL Write this down!
CSC 1051 – Algorithms and Data Structures I Dr. Mary-Angela Papalaskari Department of Computing Sciences Villanova University Course website:
AP Computer Science Programming Conventions. Why coding conventions? 80% of the lifetime cost of a piece of software goes to maintenance. Hardly any.
1-4 Properties and Mental Math Warm Up Warm Up Lesson Presentation Lesson Presentation Problem of the Day Problem of the Day Lesson Quizzes Lesson Quizzes.
Please CLOSE YOUR LAPTOPS, and turn off and put away your cell phones, and get out your note- taking materials.
Please CLOSE YOUR LAPTOPS, and turn off and put away your cell phones, and get out your note- taking materials.
CS 139 – Algorithm Development MS. NANCY HARRIS LECTURER, DEPARTMENT OF COMPUTER SCIENCE.
CS 122 Engineering Computation Lab Lab 4 Dan De Sousa and Bruce Char Department of Computer Science Drexel University Summer 2009 ©By the author. All rights.
Exploring Algorithms PROGRAMMING FUNDAMENTALS. As you come in Find your section area. Find your team. One person from each team should get the team folder.
Methods OR HOW TO MAKE A BIG PROGRAM SEEM SMALLER.
1 September 7 th – Book check out at 9:25 window 3. Review Expectations Assign seats Attendance Review how to come to class. Writing sample – Slide 2 Get.
Math 010 online work that was due today at the start of class: Section 1.3A Online Homework.
Honors Algebra II Please take out your homework and check on your solution sheet 1-46 to 1-52 and methods and meanings for section Please record.
WELCOME! Mr. White 6 th Grade Earth Science. A LITTLE ABOUT ME THIS IS MY FIRST YEAR TEACHING EARTH SCIENCE. THIS IS MY THIRD YEAR AT GRIFFIN. I ALSO.
Algebra II Please take out last night’s homework assignment 3-66, 3-68, 3-69 Please record tonight’s homework on your pink assignment chart Study for quiz.
PROBLEM SOLVING AND PROGRAMMING ISMAIL ABUMUHFOUZ | CS 170.
CMSC201 Computer Science I for Majors Lecture 12 – Midterm Review Prof. Katherine Gibson.
Welcome to Math 112 Class #3 9/15/16 Please turn in HW #2 (staple all pages together). Make sure your name and “HW #2” is on the top!
Repetition Statements
Computer Engineering Department Islamic University of Gaza
CLOSE Please YOUR LAPTOPS, and get out your note-taking materials.
CMSC201 Computer Science I for Majors Lecture 13 – Midterm Review
CSC 131: Introduction to Computer Science
7:00 PM – SCHOLARSHIP SESSION
Warm Up Problem of the Day Lesson Presentation Lesson Quizzes.
CMSC202 Computer Science II for Majors Lecture 08 – Overloaded Constructors Dr. Katherine Gibson Based on slides by Chris Marron at UMBC.
CMSC201 Computer Science I for Majors Lecture 13 – Midterm Review
Intro to Computer Science CS1510, Section 2 Dr. Sarah Diesburg
PSAT Training Session PSAT ____________.
CMSC201 Computer Science I for Majors Lecture 27 – Final Exam Review
Welcome to CS 1010! Algorithmic Problem Solving.
FINAL EXAM INFORMATION
Welcome to CS 1010! Algorithmic Problem Solving.
Warm Up Problem of the Day Lesson Presentation Lesson Quizzes.
Welcome to CS 1010! Algorithmic Problem Solving.
CS 139 – Programming Fundamentals
Unit 1 The History of Earth Overview and Unit Guide
Welcome to CS 1301! Principles of Programming I.
Warm Up Problem of the Day Lesson Presentation Lesson Quizzes.
Intro to Computer Science CS1510, Section 2 Dr. Sarah Diesburg
CMSC201 Computer Science I for Majors Lecture 25 – Final Exam Review
Last Class We Covered Asymptotic Analysis Run “time” Big O
CS 1111 Introduction to Programming Fall 2018
Intro to Computer Science CS1510, Section 2 Dr. Sarah Diesburg
Java Programming Review 1
Seating “chart” Front Back 4 rows 5 rows 5 rows 4 rows 2 rows 2 rows
Key Club Meeting November 28, 2018.
Seating “chart” Front Back 4 rows 5 rows 5 rows 2 rows 4 rows 2 rows
CMSC201 Computer Science I for Majors Final Exam Information
Warm Up Problem of the Day Lesson Presentation Lesson Quizzes.
Intro to CIT 594
CS150 Introduction to Computer Science 1
Intro to CIT 594
Seating “chart” Front Back 4 rows 5 rows 5 rows 2 rows 4 rows 2 rows
Intro to Computer Science CS1510, Section 2 Dr. Sarah Diesburg
CSC1401 Manipulating Pictures 2
August 29th AGENDA Please have 2 sharpened pencils for use today
Loops and Iteration CS 21a: Introduction to Computing I
CMSC201 Computer Science I for Majors Lecture 12 – Midterm Review
Warm Up Problem of the Day Lesson Presentation Lesson Quizzes.
Wednesday, October 21st Dr. Dennis S. Kubasko, Jr. Associate Professor
Test Notes: 1. You must take the test with class you are registered for. 2. Test is 65-70% multiple choice. 3. Test covers Chapters 19, 20, 21, 22.
© A+ Computer Science - Basic Java © A+ Computer Science -
Review and Instructions
Presentation transcript:

Seating “chart” Front Back 4 rows 5 rows 5 rows 4 rows 2 rows 2 rows

Quiz grades Two points will be added to each quiz for a maximum of 20 points. Last question in question 4 with relational expressions was something that we have not yet covered.

PA1 Due tonight at 11:59pm. 12:00am is late. Be sure to check your style. Be sure to add a reference and acknowledgement section. All help other than from the professor or your partner must be acknowledged. If you received help from a TA, that must be noted. The lab is likely to be very busy. Use Piazza to get help on general questions or errors. Don’t post code unless you make it private to the instructors.

Lab Followup See solution to Deli lab with breakpoints for checking.

or How to break up code into small more manageable pieces. Methods or How to break up code into small more manageable pieces.

Today’s activity The activity is in two parts. The first part will have you explore methods that have already been written for you. Stop at the stopping point so that we can all move on together. In the second part, you will write some methods.

Exercise 3 You will write “void” methods to sing Old MacDonald Had a Farm. The goal is to write the song with as few printlns as possible. But…

There are RULES Each team member must write at least one method (including main). Each line of text (including blank lines) must have its own System.out.println(). You may NOT join multiple lines of text using the \n character. You may NOT use loops, decisions, or other Java syntax we haven't yet covered in class. To simplify writing code by hand, you MAY abbreviate System.out.println as SOP.

Reminder The Computer Science Department Speaker Series cordially invites you to attend the talk on "Nature-Inspired Cyber Defenses" by Dr. Mohammed Eltoweissy on Wednesday, September 24, 2014 at 12:10 p.m. at the Ntelos Room (ISAT/CS 259). Pizza and soft drinks are available.

In lab tomorrow You will learn about Stubbing out code. Writing methods Calling methods More about the Math class Read ahead in chapter 5.