Midterm Exam Preperation

Slides:



Advertisements
Similar presentations
STRING AN EXAMPLE OF REFERENCE DATA TYPE. 2 Primitive Data Types  The eight Java primitive data types are:  byte  short  int  long  float  double.
Advertisements

Computer Programming w/ Eng. Applications
2/18/2008ITK 1681 Feb. 20, Wed. 8:00 – 9:30 pm STV Closed book, notes, and no computer is allowed. 2.Everyone is allowed to bring a self- prepared.
ITC242 – Introduction to Data Communications ITC431 – Computer Networks Week 13 Exam Preparation.
CS101- Lecture 11 CS101 Fall 2004 Course Introduction Professor Douglas Moody –Monday – 12:00-1:40 – – –Web Site: websupport1.citytech.cuny.edu.
Final Exam Review B. Ramamurthy. Date, Time and Place Date: Tuesday May 5, 2009 Time: AM Place: Filmore 170 Please bring pens, pencils, calculator.
Hello World 2 What does all that mean?.
Semester Review. As we have discussed, Friday we will have in class time for you to work on a program, this program will come with instructions and you.
© 2000 Scott S Albert Selection Structures Structured Programming 256 Chapter 4.
1 CSE1301 Computer Programming: Revision. 2 Topics Type of questions What do you need to know? About the exam Exam technique Staff consultation Revision.
12/7/2015B.Ramamurthy1 Exam2 Review CSE111 B.Ramamurthy.
CS 115 QUIZ # 2 INFORMATION 1. When TUESDAY 11/10 Worth: 8 points 2.
Computer Programming TCP1224 Chapter 5 The Selection Structure.
Final Exam Preparation BJ Furman ME 30 10DEC2012.
CISC105 – General Computer Science Class 4 – 06/14/2006.
CS 1428 Exam I Review. Exam Format 130 Total Points – 40 Points Writing Programs – 30 Points Tracing Algorithms and determining results – 20 Points Short.
CMSC201 Computer Science I for Majors Lecture 12 – Midterm Review Prof. Katherine Gibson.
Midterm Review.
CMSC201 Computer Science I for Majors Lecture 13 – Midterm Review
Exam3 Review CSE111 B.Ramamurthy 7/28/2018 B.Ramamurthy.
CMSC201 Computer Science I for Majors Lecture 27 – Final Exam Review
Hello World 2 What does all that mean?.
Midterm Exam Preperation
Programming Funamental slides
Review for Midterm Exam
Midterm Review CSE341 B. Ramamurthy 12/1/2018 B.Ramamurthy.
Programming Funamental slides
Midterm Review CSE321 B.Ramamurthy 12/3/2018 B.Ramamurthy.
Midterm Review CSE421 B.Ramamurthy 12/27/2018 B.Ramamurthy.
Final Review CSE321 B.Ramamurthy 1/1/2019 B.Ramamurthy.
Midterm Review CSE4/521 B.Ramamurthy 1/11/2019 B.Ramamurthy.
Review for Midterm Exam
CMSC201 Computer Science I for Majors Lecture 25 – Final Exam Review
Exam1 Review CSE113 B.Ramamurthy 2/16/2019 B.Ramamurthy.
Review for Midterm Exam
Midterm Review CSE321 B.Ramamurthy 2/22/2019 B.Ramamurthy.
Midterm Review CSE4/521 B.Ramamurthy 2/23/2019 B.Ramamurthy.
Midterm Review CSE321 B.Ramamurthy 2/23/2019 B.Ramamurthy.
Review for Final Exam.
Review for Midterm Exam
Final Review CSE421 B.Ramamurthy 2/27/2019 B.Ramamurthy.
Review for Midterm Exam
Midterm Review CSE321 B.Ramamurthy 4/4/2019 B.Ramamurthy.
Midterm Review CSE4/587 B.Ramamurthy 4/4/2019 4/4/2019 B.Ramamurthy
Engineering Problem Solving with C++ An Object Based Approach
Engineering Problem Solving with C++ An Object Based Approach
Final Review Bina Ramamurthy 4/5/2019 BR.
CMSC201 Computer Science I for Majors Final Exam Information
Review B.Ramamurthy 4/6/2019 BR.
Midterm Review CSE4/587 B.Ramamurthy 4/8/2019 4/8/2019 B.Ramamurthy
Midterm Review CSE116A,B.
Midterm Review CSE321 B.Ramamurthy 4/13/2019 B.Ramamurthy.
Fluid and Electrolyte Balance Midterm Exam
EECE.2160 ECE Application Programming
Midterm Review CSE421 B.Ramamurthy 4/18/2019 B.Ramamurthy.
Exam1 Review CSE113 B.Ramamurthy 4/17/2019 B.Ramamurthy.
Final Review Bina Ramamurthy 4/15/2019 BR.
Midterm Review CSE321 B.Ramamurthy 4/23/2019 B.Ramamurthy.
Midterm Review CSE4/521 B.Ramamurthy 4/19/2019 B.Ramamurthy.
Midterm Review CSE4/521 B.Ramamurthy 5/6/2019 B.Ramamurthy.
Final Review CSE321 B.Ramamurthy 5/6/2019 B.Ramamurthy.
Midterm Review CSE4/521 B.Ramamurthy 5/5/2019 B.Ramamurthy.
Midterm Review CSE4/521 B.Ramamurthy 5/18/2019 B.Ramamurthy.
Exam # 1 INFORMATION Scheduled for Thursday 7/20
EECE.2160 ECE Application Programming
Midterm Exam Preperation
CMSC201 Computer Science I for Majors Lecture 12 – Midterm Review
Midterm Review CSE4/521 B.Ramamurthy 9/10/2019 B.Ramamurthy.
Final Exam Review CSE113 B.Ramamurthy 10/13/2019 B.Ramamurthy.
Midterm Review IE 565 B.Ramamurthy 11/29/2019 B.Ramamurthy.
Presentation transcript:

Midterm Exam Preperation Review for Exam 1 B. Ramamurthy 11/15/2018 Midterm Exam Preperation

Midterm Exam Preperation Topics for the test Chapters 1, 2 and 3 General concepts about computer systems Chapter 1: 1.2,1.3 Problem solving steps and Simple C++ programs Data types: char, int, double, Boolean, string Arithmetic Operators: +, - , %, / Relational operators: > >= <= != == Boolean operators: && || Simple input/output Preprocessor commands Pseudo code/algorithm writing Program structure Chapter 2: 2,2,2.3,2.4,2.5, 2.8 (basic math library functions) 11/15/2018 Midterm Exam Preperation

Topics for the test (contd.) Control Structures if statement if..else statement switch statement while statement for statement do while statement Relational operators.. Conditional expressions Chapter 3: 3.2,3.3, 3.4 11/15/2018 Midterm Exam Preperation

Exam Format and point distribution (tentative) Match the lists – 20 points Multiple choice – 40 points Given a problem write the stepwise solution (algorithm) – 20 points Given a problem write the C++ code – 20 points Closed book exam. We will give the syntax of statements you need for code writing. No need to memorize them. 11/15/2018 Midterm Exam Preperation

What to bring to the exam? Pencils, pens, and erasers No calculators allowed Be on time Bring any form of picture ID. 11/15/2018 Midterm Exam Preperation

Midterm Exam Preperation How to prepare? Read the chapters and sections indicated. Keep the class notes as guideline. Work on relevant exercises at the end of the chapters. Write the code, excute and check the correctness on Visual C++ environment. Stop by my office or send mail to me or TA for any questions you may have. 11/15/2018 Midterm Exam Preperation