Exam 3 Review.

Slides:



Advertisements
Similar presentations
Introduction to C Programming
Advertisements

One Dimensional Arrays
Chapter 7: User-Defined Simple Data Types, Namespaces, and the string Type.
Objectives In this chapter, you will:
Microsoft Visual Basic 2005: Reloaded Second Edition Chapter 9 Structures and Sequential Access Files.
Guide To UNIX Using Linux Third Edition
Guide To UNIX Using Linux Third Edition
 200 Total Points ◦ 74 Points Writing Programs ◦ 60 Points Tracing Algorithms and determining results ◦ 36 Points Short Answer ◦ 30 Points Multiple Choice.
1 Midterm Review. 2 Midterm Exam  30% of your grade for the course  October14 at the regular class time  No makeup exam or alternate times  Closed.
S2008Final_part1.ppt CS11 Introduction to Programming Final Exam Part 1 S A computer is a mechanical or electrical device which stores, retrieves,
Objectives - 11  We will work with processing Arrays.  Objectives:  Describe the concept of an array and its benefits.  Define the terms index, traverse,
Chapter Ten Structures and Sequential Access Files Programming with Microsoft Visual Basic th Edition.
CECS 121 Test 1. Functions allow you to group program statements under one name C and C++ are case-sensitive so main(), MAIN(), and Main() are all different.
What does C store? >>A = [1 2 3] >>B = [1 1] >>[C,D]=meshgrid(A,B) c) a) d) b)
MIS 216 Exam1 Review Spring What to expect Questions like those on the home works and on the quizzes Evaluate code Create code Multiple choice and.
Higher Grade Computing Studies 3. High Level Language Constructs Higher Computing Software Development S. McCrossan 1 Simple Data Types Integer: An integer.
Exam Format  90 Total Points  60 Points Writing Programs  25 Points Tracing Code/Algorithms and determining results  5 Points Short Answer  Similar.
An Introduction to Programming with C++ Sixth Edition Chapter 14 Sequential Access Files.
Computer Programming TCP1224 Chapter 13 Sequential File Access.
An Introduction to Programming with C++ Fifth Edition Chapter 11 Arrays.
CECS 130 EXAM 1. To declare a constant (read only) value: const int x = 20; const float PI = 3.14; Can we do this? const int x;
12/15/2015Engineering Problem Solving with C++, Second Edition, J. Ingber 1 Engineering Problem Solving with C++, Etter Chapter 6 One-Dimensional Arrays.
Department of Electrical and Computer Engineering Introduction to Perl By Hector M Lugo-Cordero August 26, 2008.
Programming with Microsoft Visual Basic 2008 Fourth Edition Chapter Ten Structures and Sequential Access Files.
1 Chapter 7 Arrays. 2 Outline and Objective In this chapter we will Learn about arrays One-dimensional arrays Two-dimensional arrays Learn about searching.
Microsoft Visual Basic 2005: Reloaded Second Edition Chapter 9 Structures and Sequential Access Files.
CS 1428 Final Exam Review. Exam Format 200 Total Points – 60 Points Writing Programs – 45 Points Tracing Algorithms and determining results – 20 Points.
FILES AND EXCEPTIONS Topics Introduction to File Input and Output Using Loops to Process Files Processing Records Exceptions.
1 Binghamton University Exam 1 Review CS Binghamton University Birds eye view -- Topics Information Representation Bit-level manipulations Integer.
C++ Programming: From Problem Analysis to Program Design, Fifth Edition Chapter 8: Namespaces, the class string, and User-Defined Simple Data Types.
Chapter 14: Sequential Access Files
Unit 2 Technology Systems
Microsoft Visual Basic 2005: Reloaded Second Edition
Test 2 Review Outline.
Chapter 6: Using Arrays.
Exam 2 Review.
Java for Beginners Level 6 University Greenwich Computing At School
Objectives In this chapter, you will:
Enumeration Type Data type: a set of values with a set of operations on them Enumeration type: a simple data type created by the programmer To define an.
Final Exam Review.
Chapter 7 Arrays.
Chapter 5 Structures.
Introduction to Python
Hash table another data structure for implementing a map or a set
CS 2308 Final Exam Review.
CS 2308 Exam I Review.
Introduction to Python
CS 2308 Exam I Review.
Topics Introduction to File Input and Output
Use of Mathematics using Technology (Maltlab)
CS 2308 Exam I Review.
Review for Final Exam.
CS 1428 Final Exam Review.
Arrays Syntax: type variableName[size];
LabVIEW.
Objectives In this chapter, you will: - Learn about records (structs) - Examine operations on a struct - Manipulate data using a struct - Learn about the.
CS 1428 Final Exam Review.
Engineering Problem Solving with C++, Etter
Review for Final Exam.
Language Constructs Construct means to build or put together. Language constructs refers to those parts which make up a high level programming language.
CIS16 Application Development and Programming using Visual Basic.net
Final Review Bina Ramamurthy 4/5/2019 BR.
Chapter 4: Boolean Expressions, Making Decisions, and Disk Input and Output Prof. Salim Arfaoui.
Final Review Bina Ramamurthy 4/15/2019 BR.
Objectives In this chapter, you will:
The Selection Structure
Topics Introduction to File Input and Output
CS 2308 Final Exam Review.
Challenge Guide Grade Code Type Slides
Presentation transcript:

Exam 3 Review

Format 4 Questions Mostly short “provide a segment of code” questions 2 Point Multiple Choice (80 points) 40 Questions Most similar to TopHat quizzes Few “determine the output” type questions 5 Point Short Answer (20 points) 4 Questions Mostly short “provide a segment of code” questions 10+ Point Longer Answer (50 points) “Provide a segment of code” questions

Chapter 11 Key Terms Review Questions Key Concepts - Array - Sorting - Bubble Sort - Elements - One-dimensional array - Parallel arrays - Scalar / Simple variable - Subscript - Single / Dual alternative selection structures - True / False Path - Statement Block Review Questions Key Concepts - C++ Syntax one dimensional array - What an array is - How to populate and access data in an array - How to sort data in an array - Passing array data to a function

Chapter 13 Key Terms Review Questions Key Concepts - Concatenation - Consuming characters - Escape sequence - various string functions (getline, ignore, etc) Review Questions Key Concepts - String data type (string class) - Getting string data from the user - Manipulating string data

Chapter 14 Key Terms Key Concepts - ! - Open / Close function - eof function - Input / Output file - Record / Field - is_open function - Sequential Access - Scope resolution operator Review Questions Key Concepts - Reading and Writing from and to sequential access files. - Opening Files / Closing Files - Creating file objects - etc.

Structures Key Terms Key Concepts - Records - Member - Parallel Arrays - Purpose of the struct - C++ syntax for a struct - Populating and accessing data within a struct - Creating an array of structs

Pulling it All Together Let’s write some code!