Intro to Computer Science CS1510, Section 2 Dr. Sarah Diesburg

Slides:



Advertisements
Similar presentations
More on Functions (Part 2) Intro to Computer Science CS1510, Section 2 Dr. Sarah Diesburg.
Advertisements

Dr. Gina Green Intro to Information Technology & Processing.
Lab 07: Caesar Cypher Intro to Computer Science CS1510, Section 2 Dr. Sarah Diesburg.
Lab 07: Caesar Cypher Intro to Computer Science CS1510, Section 2 Dr. Sarah Diesburg.
Intro to Nested Looping Intro to Computer Science CS1510 Dr. Sarah Diesburg.
Exam Prep and Wrap-Up Intro to Computer Science CS1510, Section 2 Dr. Sarah Diesburg.
Introduction to Strings Intro to Computer Science CS1510, Section 2 Dr. Sarah Diesburg 1.
ITEC 109 Lecture 11 While loops. while loops Review Choices –1 st –2 nd to ?th –Last What happens if you only use ifs? Can you have just an else by itself?
More on Functions Intro to Computer Science CS1510 Dr. Sarah Diesburg.
Advanced Strings Intro to Computer Science CS1510, Section 2 Dr. Sarah Diesburg 1.
Midterm Exam Topics (Prof. Chang's section) CMSC 201.
Problem Solving Intro to Computer Science CS1510 Dr. Sarah Diesburg 1.
More on Functions Intro to Computer Science CS1510 Dr. Sarah Diesburg.
More on Functions (Part 2) Intro to Computer Science CS1510, Section 2 Dr. Sarah Diesburg.
CMSC201 Computer Science I for Majors Lecture 12 – Midterm Review Prof. Katherine Gibson.
Course Information and Introductions
Course Information and Introductions
CompSci 101 Introduction to Computer Science
CMSC201 Computer Science I for Majors Lecture 13 – Midterm Review
Health Review Ch. 1 Making Healthy Decisions
Thinking about programming
CMSC201 Computer Science I for Majors Lecture 13 – Midterm Review
Intro to Computer Science CS1510, Section 2 Dr. Sarah Diesburg
Week 6: International Law Thursday 3rd March
Intro to Computer Science CS1510 Dr. Sarah Diesburg
CMSC201 Computer Science I for Majors Lecture 27 – Final Exam Review
Course Information and Introductions
FINAL EXAM INFORMATION
Intro to Computer Science CS1510, Section 2 Dr. Sarah Diesburg
Exam II Summary EE 457, April 14, 2015 Dr. McCalley.
More Repetition While and For Loops Sentinel-Controlled Loops
Intro to Computer Science CS1510 Dr. Sarah Diesburg
Intro to Computer Science CS1510, Section 2 Dr. Sarah Diesburg
Midterm Exam Preperation
More Nested Loops and Lab 5
Intro to Computer Science CS1510 Dr. Sarah Diesburg
Lists – Indexing and Sorting
Intro to Nested Looping
Types, Truth, and Expressions (Part 2)
String Encodings and Penny Math
Intro to Nested Looping
Types, Truth, and Expressions (Part 2)
Intro to Computer Science CS1510
Thinking about Strings
Intro to Computer Science CS1510 Dr. Sarah Diesburg
Logical Operations In Matlab.
Intro to Computer Science CS1510, Section 2 Dr. Sarah Diesburg
Intro to Computer Science CS1510 Dr. Sarah Diesburg
CMSC201 Computer Science I for Majors Lecture 25 – Final Exam Review
More on Functions (Part 2)
Lists – Indexing and Sorting
Intro to Nested Looping
Intro to Computer Science CS1510, Section 2 Dr. Sarah Diesburg
More Repetition While and For loop variations
Intro to Computer Science CS1510 Dr. Sarah Diesburg
Course Information and Introductions
Intro to Computer Science CS1510 Dr. Sarah Diesburg
Intro to Computer Science CS1510, Section 2 Dr. Sarah Diesburg
Introduction to Computer Science
Lists – Indexing and Sorting
String Encodings and Penny Math
Intro to Computer Science CS1510 Dr. Sarah Diesburg
Types, Truth, and Expressions
Starter Activities GCSE Python.
Current Topics 40S Exam Information
Course Information and Introductions
CMSC201 Computer Science I for Majors Lecture 12 – Midterm Review
Introduction to Strings
CS 1054 Final Exam Coverage Final exam will cover Chapters 1-8, 10-11
Types, Truth, and Expressions (Part 2)
Presentation transcript:

Intro to Computer Science CS1510, Section 2 Dr. Sarah Diesburg Exam Prep and Wrap-Up Intro to Computer Science CS1510, Section 2 Dr. Sarah Diesburg

Topics for today Information on the exams Several examples from your book Some string formatting examples

Exam Information Two exams next week Focuses on chapters 0-4 Includes material from the lectures and from the readings.

Exam Information Wednesday Sabin 102 Normal class time Mixture of multiple choice, short answer, and essay. 125 points Closed book, closed notes Computerized exam

Exam Information Thursday In lab (WRT 112), programming exam Five small programs 125 points (25 points each) Closed book May use the IDLE built in Python documentation (really not helpful if you haven’t used it before then) Do not bring your thumb drives

Advice for the Tests These things can make the difference of whether you pass or fail this class when studying Go through each class days notes and example programs on the website Practice coding over and over by going through your labs!!! This is the only way to really learn. Review vocabulary and concepts by reading the book!!

Again… The only way you can become comfortable with a toolset is to practice Understanding what a power drill does will not help you much if you don’t practice using it It’s the same for code Practicing coding will make you more familiar with the coding structures necessary to code more quickly Patterns will emerge, it will become easier

Review Wrap-Up Find a Letter Error Checking Nested Loops DeMorgan’s Law Using and/or/not correctly

4.1 Find a Letter river = 'Mississippi' target = input('Input character to find: ') found = False for index in range(len(river)): #for each index if river[index] == target: #check print( "Letter found at index: ", index ) found = True break # stop searching if (found == False) print( 'Letter',target,'not found in',river)

Examples