Final Review Dr. Xiaolin Hu.

Slides:



Advertisements
Similar presentations
Chapter 4 - Control Statements
Advertisements

Fundamental Programming Structures in Java: Control Flow, Arrays and Vectors.
Local Variables and Scope Benjamin Fein. Variable Scope A variable’s scope consists of all code blocks in which it is visible. A variable is considered.
Written by: Dr. JJ Shepherd
Introduction to Computers and Programming Midterm Review Sana Odeh.
COMP 14 Introduction to Programming Miguel A. Otaduy May 20, 2004.
C++ for Engineers and Scientists Third Edition
The switch Statement, DecimalFormat, and Introduction to Looping
Java Programming Constructs 1 MIS 3023 Business Programming Concepts II The University of Tulsa Professor: Akhilesh Bajaj All slides in this presentation.
Java Tutorial. Object-Oriented Programming Concepts Object –a representation of some item state  fields/members and should be encapsulated behavior 
1 Chapter 4: Selection Structures. In this chapter, you will learn about: – Selection criteria – The if-else statement – Nested if statements – The switch.
Selection (if-then-else) Programming Has 3 Types of Control: Sequential (normal): Control of Execution Proceeds One after the Other Selection (if-then-else):
CMPS 211 JavaScript Topic 1 JavaScript Syntax. 2Outline Goals and Objectives Goals and Objectives Chapter Headlines Chapter Headlines Introduction Introduction.
Java ProgrammingtMyn1 Java Programming Timo Mynttinen Mikkeli University of Applied Sciences.
CS 112 Department of Computer Science George Mason University CS 112 Department of Computer Science George Mason University Final Review Lecture 14.
CSc2310 tutoring session, week 8 Fall, 2012 Haidong Xue 5:30pm—8:30pm 11/06/2012 and 11/07/2012 -Test 3 Study Guide.
Software Development CSCI-1302 Lakshmish Ramaswamy.
OO Data Structures SE Dr. Samir Tartir 2010/2011 Second Semester.
1 Chapter 3 Syntax, Errors, and Debugging Fundamentals of Java: AP Computer Science Essentials, 4th Edition Lambert / Osborne.
Chapter 3 Syntax, Errors, and Debugging Fundamentals of Java.
Chapter 4 Control Structures I. Chapter Objectives Learn about control structures Examine relational and logical operators Explore how to form and evaluate.
Exceptions Chapter 16 This chapter explains: What as exception is Why they are useful Java exception facilities.
Review for Final Exam. Contents 5 questions (20 points each) + 1 bonus question (20 points) – Basic concepts in Chapters 1-4 – Chapters 5-9 – Bonus: Chapter.
2016 N5 Prelim Revision. HTML Absolute/Relative addressing in HTML.
Exceptions and Assertions Chapter 15 – CSCI 1302.
1 Chapter 3: Loops and Logic. 2 Control Statements If statement Example NumberCheck.java Relational operators (, >=, ==, !=) Using code blocks with If.
Error Handling Tonga Institute of Higher Education.
Spring 2009 Programming Fundamentals I Java Programming XuanTung Hoang Lecture No. 8.
1 Project 7: Looping. Project 7 For this project you will produce two Java programs. The requirements for each program will be described separately on.
C syntax (simplified) BNF. Program ::= [ ] Directives ::= [ ] ::= | |… ::=#include > ::=#define.
C++ for Engineers and Scientists Second Edition Chapter 4 Selection Structures.
Review for Test2. Scope 8 problems, 60 points. 1 Bonus problem (5 points) Coverage: – Test 1 coverage – Exception Handling, Switch Statement – Array of.
Review for Final Exam. Scope 9 problems, 90 points. 1 Bonus problem (8 points) 120 minutes Java book – Main focus: Chapter 5, 8, 11, 13 (13.1 and 13.2).
CHAPTER 4 DECISIONS & LOOPS
Course Outcomes of Programming In C (PIC) (17212, C203):
UMBC CMSC 104 – Section 01, Fall 2016
The switch Statement, and Introduction to Looping
Unit-1 Introduction to Java
C++, OBJECT ORIENTED PROGRAMMING
Haidong Xue Summer 2011, at GSU
Chapter 19 JavaScript.
Mumbai University - B.Sc.IT: Semester - VI - C# (Question Paper) [IDOL - Old Course] [May ]
CS139 – Fall 2010 How far we have come
Review of 2 dimension arrays.
Introduction to Programming
An Introduction to Java – Part I, language basics
Review for Midterm Exam
Review for Final Exam.
CS 1428 Final Exam Review.
Review for Midterm Exam
Visual Basic – Decision Statements
Review for Test2.
Final Review Fan Bai Csc 2310 Spring 2012.
Review for Final Exam.
Review for Midterm Exam
Review for Midterm Exam
Final Review Bina Ramamurthy 4/5/2019 BR.
Program Flow.
Chapter 4: Boolean Expressions, Making Decisions, and Disk Input and Output Prof. Salim Arfaoui.
Fundamental Programming
Final Review Bina Ramamurthy 4/15/2019 BR.
Midterm Review October 23, 2006 ComS 207: Programming I (in Java)
The Selection Structure
design OO words Debug Variables Data types
Agenda Packages and classes Types and identifiers Operators
Final Review Dr. Xiaolin Hu.
Arrays Introduction to Arrays Reading for this Lecture:
Intro to Programming (in JavaScript)
Lesson 3. Controlling program flow. Loops. Methods. Arrays.
FINAL EXAM Final Exam Tuesday, May 3: 1:00 - 3:00 PM (Phys 112)
Presentation transcript:

Final Review Dr. Xiaolin Hu

Coverage Chapter 1-6, 8, 11 (see the ch11_covered.ppt) Read Chapter 10.1, 10.2, 10.3, 10.4, 10.5 would help you to have a better understanding of Chapter 3, which is covered by the final test. In other words, you will be asked to write one or more classes (with instance variables and instance methods) in the code writing type of questions.

Overview April 28, 13:30pm-15:30pm 120 minutes 100 points 15 bonus points

Question Types Short answer, problem solving, codes reading, codes writing. See Test 1 and Test 2 for examples.

Variables and Data Types Assigning operator (do not write it as equality operator) Arithmetic operators, Relational operators, Equality(inequality) operators, Logical operators (AND, OR NOT) Increment/decrement operators, Conditional operator, binary operator Class and Object, constructors Object references Method String class Array: length, declare, initialize, access, resize (add/delete), create array of objects If-else statement Switch statement Loops: while, for ,do: boundary, nested loops Break and continue operators: when and how to use, for example, search an item in an array Checked/unchecked exception Try/catch block: how to get the error messages, use exceptions to gain proper user input Graphics basic: concept of pixels, coordinates Know how to write practical code, and read/understand java code.