Your First Data Structure: 1D Array Shirley Moore CS 1401 Spring 2013 cs1401spring2013.pbworks.com April 9, 2013.

Slides:



Advertisements
Similar presentations
Exception Handling Shirley Moore CS 1401 Spring 2013 cs1401spring2013.pbworks.com May 7,
Advertisements

CIS101 Introduction to Computing Week 11 Spring 2004.
CIS101 Introduction to Computing Week 05 Spring 2004.
Announcements CSE 380 Fall September 2003 CSE 380 home page CSE 380 home page  CSE 380 and.
Selection and Testing Shirley Moore CS 1401 Spring 2013 February 21 and 26,
Your First Data Structure: 1D Array Shirley Moore CS 1401 Spring 2013 cs1401spring2013.pbworks.com April 9-11, 2013.
CPSC 30: Computer Applications Spring 2014, Section 6112 Instructor: Kathleen Cadden Tuesdays, 5:10 – 10:00 pm, Room V-115 Roll Go over Syllabus Break.
Number Representation, Data Types and Elementary Programming Shirley Moore CS 1401 February 5-7, 2013.
Introduction to Methods Shirley Moore CS 1401 Spring 2013 cs1401spring2013.pbworks.com April 1, 2013.
Iterative Structures (Loops) CS 1401 Spring 2013 Shirley Moore, Instructor February 28, 2013.
Searching and Sorting Arrays Shirley Moore CS 1401 Spring 2013 cs1401spring2013.pbworks.com April 15-16, 2013.
Introduction to Classes and Objects Shirley Moore CS 1401 Spring 2013 cs1401spring2013.pbworks.com April 23, 2013.
Welcome to CS 4390/CS5381: Introduction to Formal Methods
Daily Agenda Eng III 6/19/13.
(Homework- Sk. 7 due TODAY) (Homework-pg. 3-4 due TODAY)
CS260 Data Mining Using Tensor Methods 00 – Paper Title
AP Computer Science Practice Exam
Mathematics 2 The ninth and tenth Lectures
Thursday October 26, 2017 (Discussion – The Protoplanetary Disk Model and the Birth of the Earth)
CS 1430: Programming in C++.
CS 456/656 – Computer Networks
Monday November 13, 2017 (Discussion – Mountain Building Introduction; Continue Discovery Education Unit: Plate Tectonics and Earth's Internal Structure,
Introduction to Nature Silent Spring
ECE 3430 – Intro to Microcomputer Systems
Intro to Computer Science (JavaScript)
(Textbook Assignment – Forensic Examination of Hair)
April 9, 2018 Review 2008 MC exam review
Marking Period 1 Calendar
مناهــــج البحث العلمي
ELC 200 Day 24.
Dimensional Analysis Practice
Intro to Chem Exam Review
The sum of any two even integers is even.
(Crossword Puzzle - Earth/Space Science in the Spring)
(Discussion - Minerals – Part 1)
Today’s Agenda Go over exam #2 Go over exam #3 Lab 8 for 1 hour
Revision exercise #2 Goal: submit an improved version of your lab 6 (MIMT) report Take your report to the University Writing Center for feedback in paper.
Vocabulary.
Announcements Class is full! Sorry... :-(
Princeton review – first section
Rhythms of the Semester Spring Semester 2018
Lecture 18 CSE 331 Oct 9, 2017.
AP Section 1 Diagnostic Friday, April 26, 2013.
SE-1011 Slide design: Dr. Mark L. Hornick Instructor: Dr. Yoder
CS150 Introduction to Computer Science 1
Lon-Capa 3rd HW assignment due today 5 pm. 2nd Quiz due today by10 pm.
Rubric: You will be scored on the following:
Jeff West - Quiz Section 16
Research Paper Overview.
Thursday, December 14, 2017 (Quiz 8).
Daily Question/Warm-Up:
COMS W1004 Introduction to Computer Science
Rhythms of the Semester Spring Semester 2019
(Worksheet - Mineral Properties)
Section 9.5 The Bell Curve.
(Discussion and Worksheet - Ocean Salinity, Temperature and Density)
Monday October 2, 2017 (??).
(Discussion - Introduction to Forensic Toxicology)
(Video: World Biomes – An Introduction to Climate)
Geometry Friday Discussion/Notes/Guided Practice
WARM-UP 12/6/13 1. Please copy down this chart below.
Board of Directors Meeting March 3, 2016
(Forensics Textbook Questions - Drugs)
Thursday November 9, 2017 (Discussion - Plate Tectonics and Continental Drift – Plate Boundaries)
Agenda IR Vocab 8A intro to words OMAM Review Chaps. 1-3
CE 3500 Transportation Engineering Introduction to Roadway Safety
(Discussion: Mountain Building – Types of Mountains)
Announcements grade spreadsheets with exam 1 scores will be posted today on the Physics 2135 web site you need your PIN to find your grade preliminary.
CGS 3269: COMPUTER SYSTEMS ARCHITECTURE
COS 312 DAY 18 Tony Gauvin.
Presentation transcript:

Your First Data Structure: 1D Array Shirley Moore CS 1401 Spring 2013 cs1401spring2013.pbworks.com April 9, 2013

Agenda Announcements Recap Exam 2 last two problems Recap Quiz 5 Introduction to Arrays Assignments for Thursday Intro to Lab 7

Announcements CS Seminar – April 12, :00-2:00 PM in CCSB G.0208 – Guillaume Melquiond, Universite Paris Sud – Title: Formal proof and interval arithmetic, a virtuous circle Lab 6 due today! Programming Exercises 5.16, 5.20 due today Quiz 5 redo (if you took it the first time) Quiz 6 on Thursday, April 11 Exam 2 retest on last two problems Thursday, April 11 First research paper due by April 25

Motivating Example: Standard Deviation Suppose you want to read in a set of values, compute the mean and the standard deviation, and report how many values are within one standard deviation of the mean. See deviation.html for definitions. deviation.html We need to store the scores as we read them in and then be able to process them.

Class Activity Complete the program DogHeights.java (download from class website)

Assignments for Thursday Read sections CheckPoint questions on pp Study for Quiz 6 over methods and array basics