Final Exam Review.

Slides:



Advertisements
Similar presentations
Introduction to C Programming
Advertisements

CSE 113 Introduction to Computer Programming Lecture slides for Week 10 Monday, October 31 th, 2011 Instructor: Scott Settembre.
1 Pre-Exam Class CSIT121 Fall 2000 Exam-II (Final Examination) TUESDAY DECEMBER 19th 8:30AM.
ITC242 – Introduction to Data Communications ITC431 – Computer Networks Week 13 Exam Preparation.
1 CSE1301 Computer Programming: Lecture 35 Revision.
Topic R3 – Review for the Final Exam. CISC 105 – Review for the Final Exam Exam Date & Time and Exam Format The final exam is 120-minutes, closed- book,
Grade 10 MCAS OPEN RESPONSE QUESTION SPRING 2001 Exam, #40
A Pre-Calculus Course: From classroom to online to MOOC Sarah Eichhorn Associate Dean, Distance Learning & Faculty, School of Physical Sciences.
Agenda Review C++ Library Functions Review User Input Making your own functions Exam #1 Next Week Reading: Chapter 3.
1 CSE1301 Computer Programming: Revision. 2 Topics Type of questions What do you need to know? About the exam Exam technique Staff consultation Revision.
1 CISC181 Introduction to Computer Science Dr. McCoy Lecture 7 Clicker Questions September 22, 2009.
1 ∞∞ ∞. Has referential data integrity been violated between any of the tables? If so, name the orphans. Yes, referential data has been violated.
CSCI 3328 Object Oriented Programming in C# Chapter 5: C# Control Statement – Part II – Exercises 1 Xiang Lian The University of Texas Rio Grande Valley.
Midterm Review. Format 10 multiple choice questions – 8 points each Typically have small code segment and you have to specify what the value of a register.
3 common measures of dispersion or variability Range Range Variance Variance Standard Deviation Standard Deviation.
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;
Analysis by Mass Chapter 2. Unit 3  Consists of Area of Study 1  Chemical analysis  Area of Study 2  Organic Chemical Pathways  Each area of study.
Davisware GlobalEdge 2008 Payroll Main Menu Time Entry and Payroll Processing.
The number which appears most often in a set of numbers. Example: in {6, 3, 9, 6, 6, 5, 9, 3} the Mode is 6 (it occurs most often). Mode : The middle number.
CSC Programming for Science Lecture 37 : Course Review.
1 CSE 142 Final Exam Review Problems. 2 Question Types expressions array mystery inheritance mystery file processing array programming Critters classes.
Review for Test2. Scope 8 problems, 60 points. 1 Bonus problem (5 points) Coverage: – Test 1 coverage – Exception Handling, Switch Statement – Array of.
Objective - To find the Least Common Multiple (LCM) of numerical and variable expressions and use it to compare and order fractions. Smallest number that.
Sorts, CompareTo Method and Strings
Test 2 Review Outline.
3.1 Fundamentals of algorithms
UMBC CMSC 104 – Section 01, Fall 2016
Jackson College CCSSE & CCFSSE Findings Community College Survey of Student Engagement Community College Faculty Survey of Student Engagement Administered:
Java Course Review.
ENEE150 Discussion 09 Section 0101 Adam Wang.
Exam 3 Review.
Please find your NEW seat. Take out your planners!
NEW EXAM FORMAT FOR 2016 AND BEYOND
CMSC201 Computer Science I for Majors Lecture 27 – Final Exam Review
Lecture 07 More Repetition Richard Gesick.
Welcome to IRSC’s LIVE Virtual Lesson on:
Lecture 4B More Repetition Richard Gesick
BUS 308 HELPS Perfect Education/ bus308helps.com.
BUS 308 HELPS Education for Service-- bus308helps.com.
For Monday Read WebCT quiz 18.
Introduction to Functions
CS 2308 Final Exam Review.
CS 2308 Exam II Review.
CS 2308 Exam II Review.
Understanding Your PSAT/NMSQT Results
CS 2308 Exam I Review.
The University of Texas – Pan American
Final Review CSE321 B.Ramamurthy 11/23/2018 B.Ramamurthy.
Chapter 8 The Loops By: Mr. Baha Hanene.
Exam2 Review CSE113 B.Ramamurthy 12/4/2018 B.Ramamurthy.
Chapter 14 Sorting and Merging.
Final Review CSE321 B.Ramamurthy 12/9/2018 B.Ramamurthy.
CSCI 3328 Object Oriented Programming in C# Chapter 5: C# Control Statement – Part II – Exercises UTPA – Fall 2012 This set of slides is revised from.
MongoDB Aggregations.
Arrays Syntax: type variableName[size];
Chapter 6 Control Statements: Part 2
Revision.
Section 8.3 Adding and Subtracting Rational Expressions
CS 1428 Final Exam Review.
Information for SAS Students at UofG
Programming Languages and Paradigms
Exam #1 February 23rd (Next Friday)
slides created by Ethan Apter
Algorithms For use in Unit 2 Exam.
PRACTICE INTERPRETING DATA AND GRAPHS (VARIABLES)
Selection Sort Insertion Sort if time
College students and exercising
Agenda for Unit 8: Defining Arrays in Game Programs
CS 2308 Final Exam Review.
Exhibit 2.4 Percentage of Firms Offering Health Benefits to At Least Some of Their Workers, by Firm Size, 2016 * Estimate is statistically different from.
Presentation transcript:

Final Exam Review

Format Similar to Exam 3 Redo Similar in scope to final project 5 Point Multiple Choice / Short Answer (50 points) 10 questions Output of code Value of variable Looping Case Programming (100 points) Similar to Exam 3 Redo Similar in scope to final project

Sample Case Jeff has been hired by a local software organization to do analysis on the time employees are spending at work. The organization is interested in ensuring that employees spend at least 80% of their time on client billable work. The employees are salaried employees and the organization expects each employee to work on average 50 hours per week. In addition to the above analysis, the organization would like to understanding the difference in the top and worst performers in terms of billable hours within each division. To assist in the analysis the organization has provided Jeff with a data file from their time reporting system. The file contains the employee ID, first name, last name, division, req/analysis/design time, programming time, testing and deployment time, meeting time, and administrative support time. Each of the time fields are in hours with a quarter of an hour being the smallest increment. For example 2 hours and 15 minutes would appear as 2.25 on the file.

Sample Case Time spent in req/analysis/design, programming, and testing/deploying are billable to the client. Meeting time and administrative support time is not billable. The file is # delimited. Below are the first two lines of the file as an example: JL12558#Jeff#Lucas#BenIT#9.25#20#10#2.5#1.75 DH15832#David#Hale#HRO#19.25#0#1.25#2.5#10.75   Jeff has begun work on the program. He has written “main” as well as a sort function that will sort the array by division. He didn’t know what you would name your variables, but you can call this function and it will still work. Jeff is that good!.

Question 1 Provided the code needed to populate an array of structs with the data from the file as well as the total billable hours, total non-billable hours and total hours.

Question 2 Given the answer to #1 provide the segment of code needed to provide a control break report by division of billable and non-billable hours. Do not worry with formatting the report (headers, spacing, etc), simply output the data comma delimited. The break line should simply have the division, billable hours and non-billable hours. You can assume Jeff’s function is working and when called will return your array for #1 sorted by division. The function name is sortByDivision. The function is a void function with 1 parameter, your array.

Question 3 Provide the segment of code needed to list the top 10 highest billable employees in the organization.

Question 4 Provide a report, by division of employees that more than 90% of their time was billable.

Question 5 Provide a report, by division, of employees that had less than 30 total billable hours.

Question 6 Provide a report, by division, of the employee with the highest percent of billable time and lowest percent of billable time. Include in the report the range (highest percent – lowest percent).

Semester Wrap Up Finish Strong Complete Feedback Survey The 2nd and 3rd quarter may hurt, but people remember how you finish (55-44)! Complete Feedback Survey

Thank You!