CS 115 QUIZ # 2 INFORMATION 1. When TUESDAY 11/10 Worth: 8 points 2.

Slides:



Advertisements
Similar presentations
Chapter 4 Decision Making Lecture Slides to Accompany An Introduction to Computer Science Using Java (2nd Edition) by S.N. Kamin, D. Mickunas, E. Reingold.
Advertisements

CS0007: Introduction to Computer Programming
July 13 th.  If/ Else if / Else  Variable Scope  Nested if/else's  Switch statements  Conditional Operator.
Decisions (Conditional Programming) Chapter 5 (Sec. 5.1 & 5.2)
0 CS100J September 2007 CS100J: 12 weeks programming using Java, 2 using Matlab. David Gries. CS100M: 7 weeks of Matlab and 7 of Java. Daisy Fan. CS100H:
CIS101 Introduction to Computing Week 11. Agenda Your questions Copy and Paste Assignment Practice Test JavaScript: Functions and Selection Lesson 06,
Lecture 11. Today’s topic Conditional statement –Relational operators –if statement –if-else statement –If-elseif statement.
COMP 110 Branching Statements and Boolean Expressions Tabitha Peck M.S. January 28, 2008 MWF 3-3:50 pm Philips
The If/Else Statement, Boolean Flags, and Menus Page 180
CSC 111 Course orientation
Tutorial 4 Decision Making with Control Structures and Statements Section A - Decision Making JavaScript Tutorial 4 -Decision Making with Control.
1 Session-13 CSIT 121 Spring 2006 Test-1 is on March 9 th ; Demo-5 due date extended to March 7 Test-1 is on March 9 th ; Demo-5 due date extended to.
The switch Statement, DecimalFormat, and Introduction to Looping
INTRODUCTION TO PYTHON PART 2 INPUT AND OUTPUT CSC482 Introduction to Text Analytics Thomas Tiahrt, MA, PhD.
1 CS1130 Spring 2011: David Gries & Walker White Transition to Object-Oriented Programming Assumes programming knowledge in a language like Matlab, C,
Conditional If Week 3. Lecture outcomes Boolean operators – == (equal ) – OR (||) – AND (&&) If statements User input vs command line arguments.
C Programming n General Information on C n Data Types n Arithmetic Operators n Relational Operators n if, if-else, for, while by Kulapan Waranyuwat.
CS 101E – Exam 2 Review Spring 2007 Michele Co. Announcements Review Session Tonight, 7/7:30 p.m., OLS 009 Will be announced via In-class Exam Wednesday.
PAGES:51-59 SECTION: CONTROL1 : DECISIONS Decisions.
CS100J Spring 2006 CS100J: 11 weeks of programming using Java and 2 weeks using Matlab. David Gries is teaching CS100J. Graeme Bailey is teaching a special.
Math class services (functions) Primitive vs reference data types Scanner class Math class services (functions) Primitive vs reference data types Scanner.
CS 115 QUIZ # 1 INFORMATION Scheduled for TUESDAY 9/22/15 1.
Computer Science: A Structured Programming Approach Using C1 Objectives ❏ To understand how decisions are made in a computer ❏ To understand the logical.
Lecture 3 Decisions (Conditionals). One of the essential features of computer programs is their ability to make decisions. Like a train that changes tracks.
1 09/15/04CS150 Introduction to Computer Science 1 Life is Full of Alternatives Part 2.
Introduction to Matlab Module #4 Page 1 Introduction to Matlab Module #4 – Programming Topics 1.Programming Basics (fprintf, standard input) 2.Relational.
Chapter 5.  Conditionals  Booleans  Relational and Logical Operators  Switch statements.
Chapter 51 Decisions Relational and Logical Operators If Blocks Select Case Blocks.
CS 115 OBJECT ORIENTED PROGRAMMING I LECTURE 9 GEORGE KOUTSOGIANNAKIS Copyright: 2014 Illinois Institute of Technology- George Koutsogiannakis 1.
Programming Perl in UNIX Course Number : CIT 370 Week 3 Prof. Daniel Chen.
CS 240 – Computer Programming I Lab Kalpa Gunaratna –
Catie Welsh February 2,  Program 1 Due Today by 11:59pm today  Program 2 Assigned Today  Lab 2 Due Friday by 1:00pm 2.
Computer Programming TCP1224 Chapter 5 The Selection Structure.
1 9/26/05CS150 Introduction to Computer Science 1 Life is Full of Alternatives.
Chapter 8 Systems of Linear Equations in Two Variables Section 8.3.
CS 116 Object Oriented Programming II Lecture 4 Acknowledgement: Contains materials provided by George Koutsogiannakis and Matt Bauer.
8 th Grade Language Arts. SSR: vocab cards 5 Personality Factors Friday: Meet in computer lab. Make sure you have novel and flash drive Homework: FRIDAY.
Lecture 17 If-else statement Nothing is good or bad, but by comparison. Thomas Fuller, Gnomologia.
IST 210: PHP Logic IST 210: Organization of Data IST2101.
Relational Operator and Operations
Exam 3 Information George Koutsogiannakis
OBJECT ORIENTED PROGRAMMING I LECTURE 7 GEORGE KOUTSOGIANNAKIS
CS 116 OBJECT ORIENTED PROGRAMMING II MIDTERM EXAM INFORMATION
OBJECT ORIENTED PROGRAMMING I LECTURE 8 GEORGE KOUTSOGIANNAKIS
Exam3 Review CSE111 B.Ramamurthy 7/28/2018 B.Ramamurthy.
OBJECT ORIENTED PROGRAMMING II GEORGE KOUTSOGIANNAKIS
FINAL EXAM INFORMATION
FINAL EXAM INFORMATION
OBJECT ORIENTED PROGRAMMING I LECTURE 7 GEORGE KOUTSOGIANNAKIS
Midterm Exam Preperation
Midterm Exam Preperation
Computers & Programming Languages
Computers & Programming Languages
Quiz 2 Information George Koutsogiannakis
OBJECT ORIENTED PROGRAMMING II GEORGE KOUTSOGIANNAKIS
OBJECT ORIENTED PROGRAMMING II GEORGE KOUTSOGIANNAKIS
Exam 1 Material Study Guide
Pages:51-59 Section: Control1 : decisions
CS100J Lecture 8 Previous Lecture This Lecture Programming Concepts
OBJECT ORIENTED PROGRAMMING I LECTURE 9 GEORGE KOUTSOGIANNAKIS
Lecture Notes – Week 2 Lecture-2
Midterm Exam Information
CS201 Fall 2016 George Koutsogiannakis
Chapter 4: Boolean Expressions, Making Decisions, and Disk Input and Output Prof. Salim Arfaoui.
Selection—Making Decisions
Pages:51-59 Section: Control1 : decisions
Exam # 1 INFORMATION Scheduled for Thursday 7/20
Midterm Exam Preperation
Life is Full of Alternatives Part 3
Presentation transcript:

CS 115 QUIZ # 2 INFORMATION 1

When TUESDAY 11/10 Worth: 8 points 2

What to Study Text: – Chapter 3 – Chapter 7 – Pages (up to section 7.12) – Chapter 5 – Pages

What to Study Lectures – Lecture 5 – Lecture 6 – Lecture 7 – Lecture 8 – Lecture 9 4

What to Study Labs – Lab 4 – Lab 5 – Lab 6 Practice Exercises: 4, 5, 6, 7 5

Topics to concentrate Creating Service and Client Classes. – Understand how to create an equals method in the service that would allow objects of the same class to be compared for equality. – Usage of the equals method in the client class to compare two objects of the service class. How to receive input from user – Command line – Scanner (keyboard input) How to use the API (import statements where needed) 6

Topics to concentrate Static variables and methods. Specifically know how to use a static variable to create a current id for an object every time you call the constructor of the class. Usage of a static variable to track the total values of a quantity for all instantiated objects of a service class. Study the if selection structures. If and else selections If and if/else selections Equality between two objects!!!! 7

Topics to concentrate Boolean expressions and their evaluation – Understand how to set up your own logic to be evaluated. 8

Quiz Format Duration: class period Closed book Closed Notes Computers: No access to anything but Notepad++ – You are not allowed to use your laptop. You have to use your station computer. – No flash drives are allowed. 9

Questions Three programs to be written. – Service class – Client class – A program that involves Boolean logic conditions to be evaluated. Each program is worth : – Program 1: 3.5 points – Program 2: 4.5 points. 10