CMSC201 Computer Science I for Majors Lecture 13 – Midterm Review

Slides:



Advertisements
Similar presentations
Chemistry 211 Final Examination. Final Exam Tips Exam will contain problems that you won’t have any clue how to solve. That is normal! You can miss about.
Advertisements

Craig Schock, 2004 Basic Exam information Time and location Exam Regulations Illness during exam Taking the exam Chapter breakdown Brief Overview Tips.
ASTR100 Midterm PLEASE WAIT OUTSIDE UNTIL CALLED IN.
ITC242 – Introduction to Data Communications ITC431 – Computer Networks Week 13 Exam Preparation.
Copyright © 2012 Pearson Education, Inc. Publishing as Prentice Hall. Chapter 1 The Whole Numbers.
Final Exams!. Where do I go/What do I do? After break, report to the gym. You will need to find your row and seat numbers. See below for Monday’s seating.
BIT 115: Introduction To Programming1 Sit in front of a computer Log in –Username: 230class –password: –domain: student Bring up the course web.
Cornell Notes Note-taking strategy that will improve your study skills and your grades!!
Fall EE 333 Lillevik333f06-s1 University of Portland School of Engineering Computer Organization Study Guide 1 Exam 1 Thursday, September 28 Closed.
Developing Test Taking Skills Think ahead to get the grade.
Chapter 1 Review of Real Numbers. § 1.1 Tips for Success in Mathematics.
CMSC201 Computer Science I for Majors Lecture 12 – Midterm Review Prof. Katherine Gibson.
CMSC201 Computer Science I for Majors Lecture 25 – Final Exam Review Prof. Katherine Gibson.
CMSC201 Computer Science I for Majors Lecture 05 – Comparison Operators and Boolean (Logical) Operators Prof. Katherine Gibson Prof. Jeremy.
The ACT Test General Tips for Taking the ACT. Feel Confident! Know what to expect – and now you will! Think positively and focus on what you can do. Feeling.
All materials copyright UMBC unless otherwise noted CMSC201 Computer Science I for Majors Lecture 02 – Algorithmic Thinking.
CMSC201 Computer Science I for Majors Lecture 25 – Final Exam Review Prof. Katherine Gibson Prof. Jeremy Dixon.
Cornell Notes The note-taking strategy that will improve your study skills and your grades!!
1 Chapter Chapter 2 The Whole Numbers.
CMSC201 Computer Science I for Majors Lecture 03 – Variables
CS-171, Intro to A.I. — Quiz Instructions
Preparing for the ACT in one week
Agenda Phys 121 Final Exam Review Spring 2017
CMSC201 Computer Science I for Majors Lecture 02 – Algorithmic Thinking Prof. Katherine Gibson Based on slides by Shawn Lupoli and Max Morawski at UMBC.
Literature, Algebra I, Biology
CompSci 101 Introduction to Computer Science
PROBLEM SOLVING AND PROGRAMMING
Math 10 online work that is due today at the start of class:
© 2013 McGraw-Hill Companies. All Rights Reserved.
CMSC201 Computer Science I for Majors Lecture 13 – Midterm Review
How to Use the Earthquake Travel Time Graph (Page 11
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 – Program Design
Agenda Phys 121 Final Exam Review Fall 2017
S4 – 6 Prelims Information Assembly.
CMSC201 Computer Science I for Majors Lecture 27 – Final Exam Review
We’ll be spending minutes talking about Quiz 1 that you’ll be taking at the next class session before you take the Gateway Quiz today.
Tuesday, April 10, 2018 Arrive At 8:30
External Exams - Basic Information and Tips
Midterm Exam Preperation
Welcome to CS 1301! Principles of Programming I.
Exams – Getting the ‘simple’ bit’ right.
SAT® Mathematics.
WELCOME TO TOWSON UNIVERSITY
CMSC201 Computer Science I for Majors Lecture 25 – Final Exam Review
Last Class We Covered Asymptotic Analysis Run “time” Big O
EMPOWERED FOR THE EXAMS
PHYS 202 Intro Physics II Catalog description: A continuation of PHYS 201 covering the topics of electricity and magnetism, light, and modern physics.
CS-171, Intro to A.I. — Exam Instructions
Tips for Success in Mathematics
CMSC201 Computer Science I for Majors Final Exam Information
How to Use the Earthquake Travel Time Graph (Page 11
BIT 115: Introduction To Programming
How to Use the Earthquake Travel Time Graph (Page 11
Intro to CIT 594
EECE.2160 ECE Application Programming
Test 2 – Oct 29, 2010 Test 2 will cover the following sections.
Midterm Review October 23, 2006 ComS 207: Programming I (in Java)
Teaching Physics Labs.
Cornell Notes Note-taking strategy that will
Announcements – all about Exam 2
CMSC201 Computer Science I for Majors Lecture 12 – Midterm Review
Welcome to AP Language and Composition
Making a Revision Timetable
EMPOWERED FOR THE EXAMS
Midterm - 1 Instructions
Unit 3 - Government November 28th, 2018.
Getting Ready For This Course
Review and Instructions
Topics for Final Exam Lecture 26 Autumn Quarter.
Presentation transcript:

CMSC201 Computer Science I for Majors Lecture 13 – Midterm Review

Exam Rules The midterm is closed everything: No books No notes No cheat sheets No laptops No calculators No phones

Exam Rules Place your bookbag under your desk/chair NOT on the seat next to you You may have on your desk: Pencils, erasers Water bottle UMBC ID You must bring your UMBC ID with you to the exam! We won’t accept your test without it.

Exam Rules DO NOT CHEAT!!! Cheating will be dealt with severely and immediately If a TA or instructor sees you looking at another student’s paper they may take your test from you Your TA or instructor may ask you to move at any time during the test This doesn’t mean we think you’re cheating

Exam Seating Space allowing, you will sit every other seat, so that you are not next to another student Your instructor may have specific instructions for their lecture hall seating arrangements Make sure you know how to get to your exam room location – arrive early if possible!

Questions about Exam Rules?

Exam Format Very similar to the in-class worksheet Questions are less “tricky” than the worksheet, but the types of questions are generally the same Going over the slides and making sure you are comfortable with the material would be a good idea Try some of the exercises and practice examples available in the slides

Exam Format Multiple Choice True/False Code evaluation Debugging Given code, what does it do? Debugging Find and fix errors Fill in the blank Complete a piece of partially-written code

Exam Format Programming problems Given a problem, write the code to solve it Tips: Don’t jump straight into coding Read the question carefully Plan out what your code needs to do

Questions about Exam Format?

Exam Content Everything we’ve covered so far! You should be especially familiar with: Evaluating expressions Control structures For loops While loops (including sentinel loops) If/Elif/Else Decimal <-> Binary conversion Debugging

Exam Content You should be especially familiar with: Strings Lists Indexing, slicing, concatenating Lists Indexing (including negative indexing) Appending Functions Actual and formal parameters Defining and calling functions

Questions about Exam Content?

Exam Advice Write down your name and circle your section Flip through the exam and get a feel for the length of it and the types of questions The programming problems are the last questions on the exam – don’t leave them until the last minute!

Exam Advice Most questions have partial credit You should at least attempt every problem If you don’t know how to do one part of the problem, skip it and do the rest You can use comments instead of code (like “# get user input”) if you know what you want a piece of code to do but not how to do it

Exam Advice After you are done coding the programming problems, try “running” your program with some input and making sure it works the way you think it does If a problem is unclear or you think there is an error on the exam, raise your hand

Any Other Questions?

Announcements Homework 6 will be out Thursday night Due by Wednesday (Oct 26th) at 8:59:59 PM Lab 7 is online this week (due Thursday night) Midterm is next time – October 19th and 20th You must bring your UMBC ID with you to the exam! We won’t accept your test without it. You can do it! We believe in you!

Review Worksheet Answers Answers will not be provided You’ll understand and retain the information better if you solve the problems yourself TAs are available in ITE 240 during their regular discussion hours this week