b. companies.xml Listing of companies appearing on the Fortune 500 list [1], [2].

Size: px
Start display at page:

Download "b. companies.xml Listing of companies appearing on the Fortune 500 list [1], [2]."

Transcription

1 Background Information HOMEWORK INSTRUCTIONS The Fortune 500 listing has been published since 1955 to analyze the top five hundred companies in the United States with publicly available financial information. However, these companies grow, merge, change, and dissolve on a yearly basis. Historically, have the same industries and companies remained at the top, or does this change frequently? What companies and industries have averaged the highest profits and revenue? We will examine the different industries and the companies within these industries to get an indication of what companies have tended to continue doing well throughout the list s history. Problem Statement In this assignment, we will analyze profits and revenue for companies and industries listed historically on the Fortune 500 list. From this data, we will chart the profit trends for the top three companies and theorize on future growth. Instructions IMPORTANT: This assignment requires the Windows version of Microsoft Office. IMPORTANT: Complete the steps below in the order they are given. Completing the steps out of order may complicate the assignment or result in an incorrect result. 1. Download and extract the provided Data Files ZIP file. It contains the following files for use in this assignment: a. cpifactors.xml Listing of Consumer Price Index adjustment factors [3]. Table: CPIFactors Field Name Type Description DataYear Number Primary key. Year of CPI adjustment factor. CPIFactor Number CPI adjustment factor for 2011-valued dollars. b. companies.xml Listing of companies appearing on the Fortune 500 list [1], [2]. Table: Companies Field Name Type Description CompanyID AutoNumber Primary key. Unique identifier for each company. CompanyName Short Text Company name. Industry Short Text Industry categorization for company. Page 1 of 9 Version 14.5

2 c. rankings.xml Data on company rankings from 1955 to 2011 [1], [2]. Table: Rankings Field Name Type Description DataYear Number Part of composite key. Year of ranking on Fortune 500 list. Ranking Number Part of composite key. Yearly ranking for company on the Fortune 500 list. CompanyID Number Part of composite key. Numeric value representing company name. Revenue Currency Amount of revenue generated by the company in the previous year. Profit Currency Amount of profit generated by the company in the previous year. d. commercialbanking.rtf Report text file to format in Word. e. bank.png Image of a bank building for use in PowerPoint. Microsoft Access Portion 2. Begin by creating a new Microsoft Access database named lastname_firstname_hw6_ffhcp.accdb. 3. Import the following items into the database: a. cpifactors.xml file Import structure and data into a new table. b. companies.xml file Import structure and data into a new table. c. rankings.xml file Import structure and data into a new table. 4. Create the appropriate relationships for the following tables. Enforce referential integrity, but do not enable cascade updates or cascade deletes. a. Rankings and Companies b. CPIFactors and Rankings Page 2 of 9 Version 14.5

3 5. Create separate queries to provide the information requested below. Name each query after the step in which it appears (e.g., name the query in Step 5a as Query5A). HINT: Run your queries to test them. Make sure that they display all and only the records that you would expect to appear. a. Create a query to display statistics on each company on the Fortune 500 list. List the company name, industry, and year. Also, include a field to calculate the yearly revenue in inflation-adjusted 2011 dollars. You can calculate the yearly revenue in inflation-adjusted 2011 dollars using the formula: [Rankings. Revenue] [CPIFactors. CPIFactor] Format the calculated field as currency with no decimal places. Sort by company name and then by year, both in ascending order. HINT: This query will show 28,500 records and 4 fields. b. We wish to calculate statistics on companies recently on the Fortune 500. Create a query listing, for each year, the total revenue, total profit, average revenue, and average profit. Only include records from 1990 and later. Format all four calculated fields as currency with no decimal places. HINT: This query will show 22 records and 5 fields. c. We want to know which industries annually average more than $1 billion in revenue and also more than $1 billion in profit. Copy-and-paste this SQL code into a new query: SELECT Companies.Industry, Avg(Rankings.Revenue) AS AverageRevenue, Avg(Rankings.Profit) AS AverageProfit, Count(Rankings.Ranking) AS RankedCompanies FROM Companies INNER JOIN Rankings ON Companies.CompanyID=Rankings.CompanyID GROUP BY Companies.Industry HAVING (((Avg(Rankings.Revenue))> ) AND ((Avg(Rankings.Profit))> )) ORDER BY Avg(Rankings.Profit); IMPORTANT: Do not make any modifications to this query other than entering the above SQL code. HINT: This query will show 5 records and 4 fields. Page 3 of 9 Version 14.5

4 d. We would like to gather information on three major banking companies: Bank of America Corp., Citigroup, and FleetBoston Financial. Copy-andpaste this SQL code into a new query: SELECT Companies.CompanyName, Companies.Industry, Rankings.DataYear, CCur([Revenue]*[CPIFactor]) AS AdjustedRevenue, CCur([Profit]*[CPIFactor]) AS AdjustedProfit FROM CPIFactors INNER JOIN (Companies INNER JOIN Rankings ON Companies.CompanyID = Rankings.CompanyID) ON CPIFactors.DataYear = Rankings.DataYear WHERE (((Companies.CompanyName)="Bank of America Corp." Or (Companies.CompanyName)="Citigroup" Or (Companies.CompanyName)="FleetBoston Financial")) ORDER BY Companies.CompanyName, Rankings.DataYear; IMPORTANT: Do not make any modifications to this query other than entering the above SQL code. HINT: This query will show 44 records and 5 fields. 6. Run the Compact and Repair Database utility on your database. Ignore any errors you receive when running the utility. Microsoft Excel Portion 7. Create a new Microsoft Excel workbook named lastname_firstname_hw6_ffhcp.xlsx. 8. We must adjust the sheets in our workbook. a. Rename Sheet1 to Most Profit by Industry. b. Add a new sheet named Commercial Bank Revenue. 9. Import the following items into the workbook: a. Query5C query from the Microsoft Access database: Import as a table starting in cell A1 of the Most Profit by Industry sheet. b. Query5D query from the Microsoft Access database: Import as a table starting in cell A1 of the Commercial Bank Revenue sheet. 10. We would like to create a chart to display information on the most profitable industries. Create a new 2-D clustered column chart based on cells A1 through C6 of the Most Profit by Industry sheet. Move the chart to a new sheet named Most Profit by Industry Chart. Specify appropriate chart and axis titles. Format the vertical (value) axis as currency with no decimal places. Page 4 of 9 Version 14.5

5 11. To better understand the data, we wish to create a PivotTable. a. Create a new PivotTable based on the data in cells A1 through E45 of the Commercial Bank Revenue sheet. Place the PivotTable on a new sheet named Bank Revenue PivotTable. b. On the PivotTable, do the following: i. Add the year as a Rows field. ii. iii. Add the company name as a Columns field. Add the inflation-adjusted revenue as a Values field. c. We need to perform some formatting on the PivotTable. i. Format the cells as indicated below: Microsoft Word Portion (1) Sum of AdjustedRevenue field: currency with no decimal places 12. Create a new Microsoft Word document named lastname_firstname_hw6_ffhcp.docx. 13. At the beginning of the document, insert a cover page using either of the builtin Sideline or Whisp styles. On the cover page, include the information noted below. a. Company: The words Computer Science 101 Section followed by the section number in which you are enrolled. b. Title: Fortune 500 and Commercial Banking c. Subtitle: Definitions and Examples d. Author: Your first and last name. e. Date: The current date. 14. Add a second page if one does not already exist. On it, insert the contents of the commercialbanking.rtf file. NOTE: The inserted text contains instructions (inside of <> symbols) for use in formatting the document. You should remove these instructions once you have applied the specified formatting. 15. Where indicated, include the chart from the Most Profit by Industry Chart sheet in your Microsoft Excel workbook. Size the chart to be 4-inches high by 6.5- inches wide. Add a caption for the chart. Page 5 of 9 Version 14.5

6 16. Where indicated, insert a new equation using the Microsoft Word equation tool representing the formula below. Your formula must identically reproduce: [Profit] [CPIFactor] 17. At the end of the document, we wish to create a bibliography page. a. Define the following sources as references for your report. i. Type: Web site ii. iii. iv. Name of web page: Bank of America Homepage Name of web site: Bank of America Year: 2008 Date accessed: December 18, 2008 URL: Type: Web site Name of web page: Citigroup Homepage Name of web site: Citigroup Year: 2008 Date accessed: December 18, 2008 URL: Type: Web site Name of web page: JPMorgan Chase Home Page Name of web site: JPMorgan Chase Date: December 18, 2008 Date accessed: December 18, 2008 URL: Type: Article in a periodical Title: 2008 Fortune 500: Wal-Mart s No. 1 Periodical title: Fortune Date: May 5, 2008 b. Where indicated on the last page, insert a Bibliography-style bibliography using an APA style. Page 6 of 9 Version 14.5

7 18. We must finish formatting the document. HOMEWORK INSTRUCTIONS a. Apply the formatting and changes to your report text as specified by the included comments. Remove the included comments from your document once you have applied the required formatting. b. Ensure the document conforms to the following requirements: i. Modify the Normal formatting style to specify Verdana 11-point as the default font. ii. In the right-hand corner of the header on all pages after the cover page, list your last name followed by the page number. The page number should begin at 1 on the first actual page of text (the page after the cover page). iii. The first line of your text paragraphs should be indented by 0.5- inch. Do not indent the cover page, headings, images, captions, equations, or bibliography. iv. Except on the cover page, use double line spacing. v. Ensure there is no (0-point) line spacing before and after each paragraph except on the cover page. vi. Use 1.0-inch margins on all sides. Microsoft PowerPoint Portion 19. Create a new Microsoft PowerPoint presentation named lastname_firstname_hw6_ffhcp.pptx. 20. In the presentation, create the following slides: a. Title Slide-type slide listing a title for the presentation, your full name, course section, and an automatically updating date. b. Title and Content-type slide titled Most Profit by Industry. Add the chart from the Most Profit by Industry sheet of your Microsoft Excel workbook to the content area of the slide. 21. Create Title and Content-type slides to answer four of the five analysis questions below. Respond to one question per slide. Title each slide with the name of the question being answered (e.g., "Question A"). a. Even after adjusting for inflation, the total revenue of Fortune 500 companies has had over a 10-fold increase from 1955 to What might this indicate about the companies on the list? b. The #29 company on 2003 s Fortune 500 list, Time Warner, lost $98.7 billion on $41.8 billion of revenue the previous year. Why didn t Time Warner have to file for bankruptcy with such a huge loss? Page 7 of 9 Version 14.5

8 c. Looking through the companies on the Fortune 500 lists, name at least one industry that you think would be a good investment and one that you think would be a bad investment. Explain your rationale. d. Three of the five most-profitable industries are in the financial sector. Why do you think financial industries are so profitable? e. The Fortune 500 list only includes companies with publicly available financial records. This generally means their stock is publicly traded. Despite there being many large privately held companies, only a handful have made the list. Why aren t more privately held companies listed? 22. We wish to apply formatting to the presentation. Use your best judgment to create a professional-looking presentation. a. Apply one design theme of your choice to all slides. b. Apply an animation of your choice to the Most Profit by Industry chart. c. Apply slide transitions of your choice to all slides. d. Edit the parent (top-most) slide master to add the bank.png image to the bottom left corner of the slides. Size the image to be 0.5-inches high by 0.53-inches wide. NOTE: Depending on the design theme used, the image may not appear on title slides. This is acceptable as long as the image is correctly added to the slide master. e. Add your name, an automatically updating date, and the slide number to the footer of all slides except the title slide. Assignment Requirements You must submit all four files (Microsoft Access, Microsoft Excel, Microsoft PowerPoint, and Microsoft Word) for this assignment. Grading Rubric This assignment is worth 50 points. It will be graded by your instructor using this rubric, with partial credit awarded as appropriate: Step 3 2 points Step points Step points Step points Steps 5a-b 2.5 points each Step points Steps 5c-d 1 points each Steps 17a-b 2.5 points total Steps 8a-b 1 points total Steps 18a-b 3.5 points total Steps 9a-b 1.5 points total Steps 20a-b 2.5 points total Step 10 3 points Steps 21a-e (pick 4 of 5) 2.5 points each Steps 11a-c 5 points total Steps 22a-e 2.5 points total Steps 13a-e 2.5 points total Page 8 of 9 Version 14.5

9 The analysis questions in Steps 21a-e will be evaluated using this rubric: Standard Meets Requirements (1.25 points) Does Not Meet Requirements (0 points) Answer is reasonable. Answer addresses the question prompt and is factually correct or a reasonable interpretation of available data. Answer does not address the question prompt, is factually incorrect, or is an unreasonable interpretation of available data. Answer is supported. Acknowledgments Logical rationale is provided to support the given answer. Logical rationale is not provided to support the given answer. The image in the introduction appears courtesy of Fortune magazine [4]. References [1] Fortune 500: , Fortune. Available: ex.html. [2] Fortune 500, Fortune. Available: [3] Consumer Price Index (CPI), U.S. Bureau of Labor Statistics. Available: [4] Fortune 500 magazine cover Available: ne_g500_cover06.jpg. Page 9 of 9 Version 14.5

Number Total number of fraud cases received from this state. IdentityTheftCompla ints

Number Total number of fraud cases received from this state. IdentityTheftCompla ints Background Information HOMEWORK INSTRUCTIONS In 2012, fraud and identity theft cost American consumers approximately $1.5 billion. Alarmingly, in many cases, the financial burden of paying for the fraud

More information

In this assignment, students will analyze commuter statistics for counties across the United States from 2006 to 2010.

In this assignment, students will analyze commuter statistics for counties across the United States from 2006 to 2010. Background Information HOMEWORK HELP PROJECT INSTRUCTIONS Every day, millions of workers commute across county lines for their jobs. Commuting patterns vary widely across the United States but are influenced

More information

At-Home Final Exam Project Directions BPC110 Computer Usage and Application

At-Home Final Exam Project Directions BPC110 Computer Usage and Application At-Home Final Exam Project Directions BPC110 Computer Usage and Application SCENARIO You are the Sales Manager for the LLC Computer Store. The computer store buys and sells computers from a number of different

More information

Background Information. Instructions. Problem Statement. HOMEWORK HELP PROJECT INSTRUCTIONS Homework #5 Help Box Office Sales Problem

Background Information. Instructions. Problem Statement. HOMEWORK HELP PROJECT INSTRUCTIONS Homework #5 Help Box Office Sales Problem Background Information Each year, hundreds of millions of Americans go to the theaters for at least one movie. According to an MPAA study, the average moviegoer saw about 8.5 films. All told, ticket sales

More information

Background Information. Instructions. Problem Statement. HOMEWORK HELP PROJECT INSTRUCTIONS Homework #5 Help Travel and Tourism Industry Problem

Background Information. Instructions. Problem Statement. HOMEWORK HELP PROJECT INSTRUCTIONS Homework #5 Help Travel and Tourism Industry Problem Background Information Travel and tourism comprise one of the largest industries in the world. Across the globe, it supports 101 million jobs and contributes $2.1 trillion to the world economy. The travel

More information

This project includes information on West Virginia K-12 schools from 2010 to 2016.

This project includes information on West Virginia K-12 schools from 2010 to 2016. Topics Create a SELECT query to retrieve data Use a DISTINCT clause to remove duplicate results Use an ORDER BY clause to sort query results Use a JOIN clause to include results from multiple tables Use

More information

EXCEL 2010 COMPETENCIES

EXCEL 2010 COMPETENCIES EXCEL 2010 COMPETENCIES Working with Cells Use undo and redo Clear cell content Enter text, dates, and numbers Edit cell content Go to a specific cell Insert and delete selected cells Cut, copy, paste,

More information

Productivity Tools Objectives 1

Productivity Tools Objectives 1 Productivity Tools Objectives 1 Word 2003 Understand Microsoft Office Word 2003 Launch Microsoft Office Word 2003 Open Documents Understand The Working Screen Experiment With The Working Screen Navigate

More information

MS Office Basic Courses - Customized Training

MS Office Basic Courses - Customized Training MS Office Basic Courses - Customized Training Course Contents Duration: 2 Days Word Basics: 1. Getting Started with Word 3. Creating and Opening Documents 4. Saving and Sharing Documents 5. Working with

More information

Productivity Tools Objectives

Productivity Tools Objectives Word 2003 Understand Microsoft Office Word 2003 Launch Microsoft Office Word 2003 Open Documents Understand The Working Screen Experiment With The Working Screen Navigate Documents Close Documents And

More information

TestOut Desktop Pro Plus - English 4.x.x. MOS Instructor Guide. Revised

TestOut Desktop Pro Plus - English 4.x.x. MOS Instructor Guide. Revised TestOut - English 4.x.x MOS Instructor Guide Revised 2017-10-18 2 Table of Contents General MOS Exam Information... 3 MOS Practice Exams... 4 Highly Recommended Videos and Class Activities... 5 Course

More information

Learn Well Technocraft

Learn Well Technocraft Section 1: Getting started The Word window New documents Document navigation Section 2: Editing text Working with text The Undo and Redo commands Cut, copy, and paste Find and replace Section 3: Text formatting

More information

This project includes information on West Virginia Senate elections from 2000 to 2014.

This project includes information on West Virginia Senate elections from 2000 to 2014. Topics Create a new database Import database tables and data Create database tables Add records Create lookup fields Create relationships Answer analysis questions Compact and repair the database Background

More information

B.E. Publishing Correlations to The Office Specialist.com, 2E to Microsoft Office Specialist Word 2016 Core (77-725)

B.E. Publishing Correlations to The Office Specialist.com, 2E to Microsoft Office Specialist Word 2016 Core (77-725) Correlations to The Office Specialist.com, 2E to Microsoft Office Specialist Word 2016 Core (77-725) B.E. Publishing Correlations to The Office Specialist.com, 2E to Microsoft Office Specialist Word 2016

More information

Graded Project. Microsoft Excel

Graded Project. Microsoft Excel Graded Project Microsoft Excel INTRODUCTION 1 PROJECT SCENARIO 1 CREATING THE WORKSHEET 2 GRAPHING YOUR RESULTS 4 INSPECTING YOUR COMPLETED FILE 6 PREPARING YOUR FILE FOR SUBMISSION 6 Contents iii Microsoft

More information

Book 5. Chapter 1: Slides with SmartArt & Pictures... 1 Working with SmartArt Formatting Pictures Adjust Group Buttons Picture Styles Group Buttons

Book 5. Chapter 1: Slides with SmartArt & Pictures... 1 Working with SmartArt Formatting Pictures Adjust Group Buttons Picture Styles Group Buttons Chapter 1: Slides with SmartArt & Pictures... 1 Working with SmartArt Formatting Pictures Adjust Group Buttons Picture Styles Group Buttons Chapter 2: Slides with Charts & Shapes... 12 Working with Charts

More information

Course Title: Microsoft Office ( 2016)

Course Title: Microsoft Office ( 2016) Course Title: Microsoft Office ( 2016) Duration : 2 days This program is designed for executives who are already have knowledge of Microsoft Office, and who would like to work with more very advanced features

More information

Graded Project. Microsoft Excel

Graded Project. Microsoft Excel Graded Project Microsoft Excel INTRODUCTION 1 PROJECT SCENARIO 2 CREATING THE WORKSHEET 2 GRAPHING YOUR RESULTS 4 INSPECTING YOUR COMPLETED FILE 6 PREPARING YOUR FILE FOR SUBMISSION 6 Contents iii Microsoft

More information

Graded Project. Computer Applications

Graded Project. Computer Applications Computer Applications PENN FOSTER, INC. 2016 INTRODUCTION CONTENTS INTRODUCTION 2 INSTRUCTIONS 2 SCORING GUIDELINES 10 SUBMITTING YOUR PROJECT 13 PAGE 1 COMPUTER APPLICATIONS INTRODUCTION This project

More information

3. Demonstrate knowledge of an emergency plan. SE/TE: 25-29, 31-35, 115, , , , 274; Related content found on ,

3. Demonstrate knowledge of an emergency plan. SE/TE: 25-29, 31-35, 115, , , , 274; Related content found on , Course Standards for A. SAFETY The student will be able to: 1. Identify good work attitudes that affect safety on the job. SE/TE: 205-207, 223, 261-265 TE: CD Lesson 11: Teacher s Manual p. 3, Test 11A

More information

Detail Score Report View only questions answered incorrectly Q# Status Topic Type Level Time

Detail Score Report View only questions answered incorrectly Q# Status Topic Type Level Time Test Results for: Lisa Rohde Company Name: All In One Integration Account Test Administrator/Recruiter's Email: DoNotReply@mail.all-in-1.com Test Name: Microsoft Excel 2007 - Normal User Test Date: 2/9/2013

More information

Business Computer Applications (BCIS 1305) Online. Credit: 3 semester credit hours (3 hours lecture)

Business Computer Applications (BCIS 1305) Online. Credit: 3 semester credit hours (3 hours lecture) 1 Business Computer Applications (BCIS 1305) Online Credit: 3 semester credit hours (3 hours lecture) Prerequisite/Co-requisite: Complete the Online Orientation and answer yes to 7+ questions on the Online

More information

Learning Microsoft Office 2010 NASTA Edition, 2011

Learning Microsoft Office 2010 NASTA Edition, 2011 A Correlation of Learning Microsoft Office 2010 To the Arkansas Curriculum Framework for Computerized Business s Computerized Business s Table of Contents Unit 1: Hardware and Software Hours: 3... 3 Unit

More information

Introduction to Excel 2013

Introduction to Excel 2013 Introduction to Excel 2013 Instructions The is composed of separate of parts which test your knowledge and understanding of some of the core concepts addressed in each lesson. Complete each part in the

More information

SLO to ILO Alignment Reports

SLO to ILO Alignment Reports SLO to ILO Alignment Reports CAN - 00 - Institutional Learning Outcomes (ILOs) CAN ILO #1 - Critical Thinking - Select, evaluate, and use information to investigate a point of view, support a conclusion,

More information

FUNDAMENTAL SPREADSHEET APPLICATIONS (230)

FUNDAMENTAL SPREADSHEET APPLICATIONS (230) FUNDAMENTAL SPREADSHEET APPLICATIONS - REGIONAL 2017 PAGE 1 OF 7 Contestant Number: Time: Rank: FUNDAMENTAL SPREADSHEET APPLICATIONS (230) REGIONAL 2017 Job 1: Create Spreadsheet with Formulas (110 points)

More information

Microsoft Excel Chapter 2. Formulas, Functions, and Formatting

Microsoft Excel Chapter 2. Formulas, Functions, and Formatting Microsoft Excel 2010 Chapter 2 Formulas, Functions, and Formatting Objectives Enter formulas using the keyboard Enter formulas using Point mode Apply the AVERAGE, MAX, and MIN functions Verify a formula

More information

Content-Based Assessments

Content-Based Assessments Apply a combination of the Content-Based Assessments GO! Fix It Project 7H Job Portfolio For Project 7H, you will need the following files: p07h_job_portfolio.pptx p07h_resume.docx You will save your files

More information

COURSE SYLLABUS. Credit Hours: Contact Hours Lab Hours 4 4 As needed by student

COURSE SYLLABUS. Credit Hours: Contact Hours Lab Hours 4 4 As needed by student Date Approved: Date Revised: 08/07 COURSE SYLLABUS Syllabus for: INFS 2010 Microcomputer Applications Discipline Number Course Name Former Quarter Course(s): N/A Catalog Description: This course is an

More information

Identifying the main document for form letters Inserting an existing document into an open document

Identifying the main document for form letters Inserting an existing document into an open document Department: Business Unit 1, September Word - Creating a Document with a Table, Chart & Unit 2, October Word - Generating Form letters, mailing labels, Watermark What are the intermediate features of Microsoft

More information

Lesson 14 Final Exam Project Directions CIS105 Survey of Computer Information Systems

Lesson 14 Final Exam Project Directions CIS105 Survey of Computer Information Systems Lesson 14 Final Exam Project Directions CIS105 Survey of Computer Information Systems OVERVIEW For your At-Home Final Exam Part 1: Project, you must complete all four sections using Microsoft Word, PowerPoint,

More information

Microsoft Excel 2013 Table of content

Microsoft Excel 2013 Table of content Microsoft Excel 2013 Table of content Chapter 1. New features in Excel 2013 New Excel Templates New Flash Fill New Pivot Table, Timeline, Slicer and etc New Quick Analysis Chapter 2. Start Working with

More information

Chapter 2. Formulas, Functions, and Formatting

Chapter 2. Formulas, Functions, and Formatting Chapter 2 Formulas, Functions, and Formatting Syntax of List Functions Functions and formulas always start with an equal sign, = Colon means through : List inside of parentheses =AVERAGE(A1:A5) Name of

More information

Introduction to Computing (COSC 1301) Online

Introduction to Computing (COSC 1301) Online Introduction to Computing (COSC 1301) Online Credit: 3 semester credit hours (3 hours lecture) Prerequisite/Co-requisite: Complete the Online Orientation and answer yes to 7+ questions on the Online Learner

More information

Introduction to Computing (COSC 1301) Credit: 3 semester credit hours (3 hours lecture) Prerequisite/Co-requisite: None

Introduction to Computing (COSC 1301) Credit: 3 semester credit hours (3 hours lecture) Prerequisite/Co-requisite: None Introduction to Computing (COSC 1301) Credit: 3 semester credit hours (3 hours lecture) Prerequisite/Co-requisite: None Course Description Overview of computer systems hardware, operating systems, and

More information

Project 4 Financials (Excel)

Project 4 Financials (Excel) Project 4 Financials (Excel) Project Objective To offer an introduction to building spreadsheets, creating charts, and entering functions. Part 1 - Financial Projections One of the most important aspects

More information

North Shore Innovations, Ltd.

North Shore Innovations, Ltd. Access 2007 Access #1: Create Tables 4.00 The Fundamentals Introduction to Databases Starting Access The Getting Started Page and Opening a Database What s New in Access Understanding the Access Program

More information

Contents. Project One. Introduction to Microsoft Windows XP and Office Creating and Editing a Word Document. Microsoft Word 2003

Contents. Project One. Introduction to Microsoft Windows XP and Office Creating and Editing a Word Document. Microsoft Word 2003 FM TBBBB 39909 10/27/06 4:06 PM Page iii Contents FMTOC TBBBB 39909 Page iii 10/20/06 MD Preface To the Student Introduction to Microsoft Windows XP and Office 2003 ix xiv Objectives WIN 4 Introduction

More information

COMPUTER TECHNOLOGY II (251E)

COMPUTER TECHNOLOGY II (251E) DESCRIPTION This course applies advanced concepts and principles using word processing, spreadsheets, databases, and electronic presentation software. Students may have the opportunity to obtain a Microsoft

More information

BIM II IC3 & MOS Certification Pacing Guide

BIM II IC3 & MOS Certification Pacing Guide BIM II IC3 & MOS Certification Pacing Guide 1st 9 Weeks IC3 Certification Computer Fundamentals Mobile Devices Using cell phones, voicemail, SMS, notifications Hardware Device types, storage, networking,

More information

Step 1 Make a folder for chart workbooks in your excel folder, Open Excel and Save your File

Step 1 Make a folder for chart workbooks in your excel folder, Open Excel and Save your File Step 1 Make a folder for chart workbooks in your excel folder, Open Excel and Save your File Open up MS Excel 2010 and save your file as lesson5. In this lesson you will create tables and charts on separate

More information

Science, Technology, Engineering, and Math Revised Summer 2014 Division Implemented Fall 2014 Textbook Update Fall 2017

Science, Technology, Engineering, and Math Revised Summer 2014 Division Implemented Fall 2014 Textbook Update Fall 2017 Butler Community College Karen Waddell Science, Technology, Engineering, and Math Revised Summer 2014 Division Implemented Fall 2014 Textbook Update Fall 2017 COURSE OUTLINE Advanced Computer Applications

More information

Final Graded Project. Advanced PC Applications

Final Graded Project. Advanced PC Applications Final Graded Project Advanced PC Applications INTRODUCTION 1 SCENARIO 1 YOUR TASK 2 PART 1: CREATING YOUR ACCESS DATABASE 2 PART 2: CREATING YOUR EXCEL WORKSHEETS 3 PART 3: CREATING YOUR POWERPOINT PRESENTATION

More information

NATIONAL CERTIFICATE (VOCATIONAL) NQF LEVEL 4 SUPPLEMENTARY EXAMINATION

NATIONAL CERTIFICATE (VOCATIONAL) NQF LEVEL 4 SUPPLEMENTARY EXAMINATION MARKING GUIDELINE NATIONAL CERTIFICATE (VOCATIONAL) NQF LEVEL 4 SUPPLEMENTARY EXAMINATION 2010 OFFICE DATA PROCESSING This marking guideline consists of 12 pages. MARKING GUIDELINE -2- NC1710(E)(F18)V

More information

COMPUTER APPLICATIONS TECHNOLOGY

COMPUTER APPLICATIONS TECHNOLOGY COMPUTER APPLICATIONS TECHNOLOGY Practical Skillsets required per application per grade Taken from CAPS Computer Applications Technology Practical skillsets required per application per grade (according

More information

USING MICROSOFT EXCEL 2016 Guided Project 4-3

USING MICROSOFT EXCEL 2016 Guided Project 4-3 Guided Project 4-3 Clemenson Imaging analyzes expense reports from field representatives as well as patient and image data. To complete the worksheets, you format data as a table and build an advanced

More information

Microsoft Office 2013 Exercise Checklist

Microsoft Office 2013 Exercise Checklist Microsoft Office 0 Exercise Checklist WORD # Exercise (R=Reinforce Your Skills or A=Apply Your Skills) Page # Date Teacher WD0-R0 Working with the Interface WD0-R0 Navigate, Type a Document, and Use Help

More information

Business Office Specialist

Business Office Specialist EXAM INFORMATION Items 49 Points 82 Prerequisites NONE Grade Level 10-12 Course Length ONE SEMESTER Career Cluster BUSINESS MANAGEMENT AND ADMINISTRATION DESCRIPTION This course applies advanced concepts

More information

Computer Technology II

Computer Technology II EXAM INFORMATION Items 49 Points 79 Prerequisites COMPUTER TECHNOLOGY I Grade Level 10-12 Course Length ONE SEMESTER Career Cluster BUSINESS MANAGEMENT AND ADMINISTRATION INFORMATION TECHNOLOGY DESCRIPTION

More information

Create a workbook using the guidelines, concepts, and skills presented in this chapter. Labs are listed in order of increasing difficulty.

Create a workbook using the guidelines, concepts, and skills presented in this chapter. Labs are listed in order of increasing difficulty. What-If Analysis, Charting, and Working with Large Worksheets EX 209 was entered and copied to cells D9, D10, and D11. The current IF functions in cells D8, D9, D10, and D11 are incorrect. Edit and correct

More information

Course Catalog. Instructor-led Classroom Training Specializing in Microsoft Office

Course Catalog. Instructor-led Classroom Training Specializing in Microsoft Office 2018 Course Catalog Instructor-led Classroom Training Specializing in Microsoft Office Lisa McCalpin: MOS Master Owner/Master Instructor 3840 Regal Oaks Drive Suwanee, GA 30024 678-389-1878 officetraininglady@gmail.com

More information

Contents. Group 2 Excel Handouts 2010

Contents. Group 2 Excel Handouts 2010 Contents Styles... 2 Conditional Formatting... 2 Create a New Rule... 4 Format as Table... 5 Create your own New Table Style... 8 Cell Styles... 9 New Cell Style... 10 Merge Styles... 10 Sparklines...

More information

Business Computer Applications (BCIS 1305)

Business Computer Applications (BCIS 1305) Business Computer Applications (BCIS 1305) Credit: 3 semester credit hours (3 hours lecture) Prerequisite/Co-requisite: None Course Description Students will study computer terminology, hardware, and software

More information

Microsoft Excel Chapter 1. Creating a Worksheet and an Embedded Chart

Microsoft Excel Chapter 1. Creating a Worksheet and an Embedded Chart Microsoft Excel 2010 Chapter 1 Creating a Worksheet and an Embedded Chart Objectives Describe the Excel worksheet Enter text and numbers Use the Sum button to sum a range of cells Copy the contents of

More information

Sales Presentation for Matt s Mega Mart. Objectives. Steps: By the end of this lesson, you will be able to:

Sales Presentation for Matt s Mega Mart. Objectives. Steps: By the end of this lesson, you will be able to: Sales Presentation for Matt s Mega Mart Objectives By the end of this lesson, you will be able to: Apply Theme to presentation Export Word outline to PowerPoint Create pivot charts Modify pivot charts

More information

Office Applications II Lesson Objectives

Office Applications II Lesson Objectives Office Applications II Lesson Unit 1: MICROSOFT EXCEL SPREADSHEETS BASICS What is a Spreadsheet and What Are Its Uses? Define spreadsheets Define the Microsoft Excel application List business, consumer,

More information

Getting Acquainted with Office 2007 Table of Contents

Getting Acquainted with Office 2007 Table of Contents Table of Contents Using the New Interface... 1 The Office Button... 1 The Ribbon... 2 Galleries... 2 Microsoft Help with Changes... 2 Viewing Familiar Dialog Boxes... 2 Download Get Started Tabs from Microsoft...

More information

Graded Project. Excel 2016

Graded Project. Excel 2016 Excel 2016 PENN FOSTER, INC. 2016 INTRODUCTION CONTENTS INTRODUCTION 2 INSTRUCTIONS 2 SCORING GUIDELINES 6 SUBMITTING YOUR PROJECT 8 PAGE 1 GRADED PROJECT EXCEL 2016 INTRODUCTION This project requires

More information

MOUNTAIN VIEW SCHOOL DISTRICT

MOUNTAIN VIEW SCHOOL DISTRICT MOUNTAIN VIEW SCHOOL DISTRICT COMPUTERIZED BUSINESS APPLICATIONS Curriculum Content Frameworks 00 Curriculum Content Frameworks COMPUTERIZED BUSINESS APPLICATIONS Grade Levels: 9- Course Code: 90 Prerequisite:

More information

Introduction to Computing (COSC 1301) Credit: 3 semester credit hours (3 hours lecture) Prerequisite/Co-requisite: None

Introduction to Computing (COSC 1301) Credit: 3 semester credit hours (3 hours lecture) Prerequisite/Co-requisite: None Introduction to Computing (COSC 1301) Credit: 3 semester credit hours (3 hours lecture) Prerequisite/Co-requisite: None Course Description Overview of computer systems hardware, operating systems, the

More information

MIS 2223 Bypass Exam Office 2016 Sample Exercises

MIS 2223 Bypass Exam Office 2016 Sample Exercises MIS 2223 Bypass Exam Office 2016 Sample Exercises Assignment One Microsoft Word 2016 Your MIS 2223 instructor would like you to format a short research paper using MLA format, which is standard for research

More information

ADVANCED SPREADSHEET APPLICATIONS (235)

ADVANCED SPREADSHEET APPLICATIONS (235) Page 1 of 7 Contestant Number: Time: Rank: ADVANCED SPREADSHEET APPLICATIONS (235) REGIONAL 2017 Job: Family Budget TOTAL POINTS (375 points) (375 points) Failure to adhere to any of the following rules

More information

MARKING GUIDELINE -1- NC1710(E)(O29)V OFFICE DATA PROCESSING MARKING GUIDELINE NATIONAL CERTIFICATE (VOCATIONAL) NOVEMBER 2009

MARKING GUIDELINE -1- NC1710(E)(O29)V OFFICE DATA PROCESSING MARKING GUIDELINE NATIONAL CERTIFICATE (VOCATIONAL) NOVEMBER 2009 MARKING GUIDELINE -1- NC1710(E)(O29)V MARKING GUIDELINE NATIONAL CERTIFICATE (VOCATIONAL) NOVEMBER 2009 NQF LEVEL 4 This memorandum consists of 17 pages. MARKING GUIDELINE -2- NC1710(E)(O29)V National

More information

SOUTH CAROLINA CORRELATION CURRICULUM FRAMEWORKS

SOUTH CAROLINA CORRELATION CURRICULUM FRAMEWORKS SOUTH CAROLINA CORRELATION CURRICULUM FRAMEWORKS COURSE TITLE: Business Computer Applications 1 and 2 COURSE NUMBER: 5008, 5009 SUBMISSION TITLE,,, Benchmark Series PowerPoint 2003, Benchmark Series Access

More information

Computer Business Office Technology SLO to PLO Alignment(No Results)_February 2017

Computer Business Office Technology SLO to PLO Alignment(No Results)_February 2017 Computer Business Office Technology SLO to PLO Alignment(No Results)_February 2017 CAN Program - Computer Business Office Technology Develop the computer skills and confidence to obtain employment. CAN

More information

Creating a Spreadsheet by Using Excel

Creating a Spreadsheet by Using Excel The Excel window...40 Viewing worksheets...41 Entering data...41 Change the cell data format...42 Select cells...42 Move or copy cells...43 Delete or clear cells...43 Enter a series...44 Find or replace

More information

Office 2010: Transition from Office Contents. Moving to Microsoft Office Microsoft Office 2010 Project Transition from Office 2003

Office 2010: Transition from Office Contents. Moving to Microsoft Office Microsoft Office 2010 Project Transition from Office 2003 Office 2010: Transition from Office 2003 Contents Office 2010: Transition from Office 2003... 1 Moving to Microsoft Office 2010... 1 Universal Features... 2 KeyTips... 2 Backstage View... 2 Quick Access

More information

Table of Contents. Preface... iii COMPUTER BASICS WINDOWS XP

Table of Contents. Preface... iii COMPUTER BASICS WINDOWS XP Table of Contents Preface... iii COMPUTER BASICS Fundamentals of Computer 1 Various Types of Computers 2 Personal Computer 2 Personal Digital Assistant 3 Laptop Computer 3 Tablet PC 3 Main Frame Computer

More information

Basics. Jhan Schmitz SCSH Computer Club January 23, 2014

Basics. Jhan Schmitz SCSH Computer Club January 23, 2014 Jhan Schmitz SCSH Computer Club January 23, 2014 Agenda What is Excel? Versions of Excel Creating and Building a New Excel Workbook: Excel Basic Basics Starting Simply Fahrenheit to Celsius Extending What

More information

Office of Instructional Technology

Office of Instructional Technology Office of Instructional Technology Microsoft Excel 2016 Contact Information: 718-254-8565 ITEC@citytech.cuny.edu Contents Introduction to Excel 2016... 3 Opening Excel 2016... 3 Office 2016 Ribbon... 3

More information

Staff Microsoft Office Training Workshops

Staff Microsoft Office Training Workshops Staff Microsoft Office Training Workshops To see Course Information Hold down the CTRL key on the keyboard & click on the page number Contents Introduction to Office 365... 1 Introduction to Access Database

More information

Course Description: Computer Skills

Course Description: Computer Skills Course Description: Computer Skills - Basic Information: Course Name Course ID Contact Hours (Registered Sessions) Contact Hours (Synchronized Sessions) Mid Term Exam Exam Registered Sessions Work Load

More information

Course Title: PC Packages Credit Units: 02 Course Level: UG Course Code: CSIT115. Course Objectives: Pre-requisites: NIL. Course Contents/Syllabus:

Course Title: PC Packages Credit Units: 02 Course Level: UG Course Code: CSIT115. Course Objectives: Pre-requisites: NIL. Course Contents/Syllabus: Course Title: PC Packages Credit Units: 02 Course Level: UG Course Code: CSIT115 L T P/S SW/FW TOTAL CREDIT 1-2 - 02 Course Objectives: The aim of this course is : To Operate on various applications such

More information

Spreadsheet definition: Starting a New Excel Worksheet: Navigating Through an Excel Worksheet

Spreadsheet definition: Starting a New Excel Worksheet: Navigating Through an Excel Worksheet Copyright 1 99 Spreadsheet definition: A spreadsheet stores and manipulates data that lends itself to being stored in a table type format (e.g. Accounts, Science Experiments, Mathematical Trends, Statistics,

More information

Graded Project. Computer Applications

Graded Project. Computer Applications Graded Project Computer Applications INTRODUCTION 1 SCENARIO 1 YOUR TASK 1 Part 1: Creating Your Memo 2 Part 2: Creating Your Chart 3 Part 3: Creating Your PowerPoint Presentation 5 GRADING 10 Part 1 10

More information

Table of Contents. Word. Using the mouse wheel 39 Moving the insertion point using the keyboard 40 Resume reading 41

Table of Contents. Word. Using the mouse wheel 39 Moving the insertion point using the keyboard 40 Resume reading 41 Table of Contents iii Table of Contents Word Starting Word What is word processing? 2 Starting Word 2 Exploring the Start screen 4 Creating a blank document 4 Exploring the Word document window 5 Exploring

More information

COGNOS BI I) BI introduction Products Introduction Architecture Workflows

COGNOS BI I) BI introduction Products Introduction Architecture Workflows COGNOS BI I) BI introduction Products Architecture Workflows II) Working with Framework Manager (Modeling Tool): Architecture Flow charts Creating Project Creating Data Sources Preparing Relational Metadata

More information

MICROSOFT EXCEL BIS 202. Lesson 1. Prepared By: Amna Alshurooqi Hajar Alshurooqi

MICROSOFT EXCEL BIS 202. Lesson 1. Prepared By: Amna Alshurooqi Hajar Alshurooqi MICROSOFT EXCEL Prepared By: Amna Alshurooqi Hajar Alshurooqi Lesson 1 BIS 202 1. INTRODUCTION Microsoft Excel is a spreadsheet application used to perform financial calculations, statistical analysis,

More information

Microsoft Office Specialist Excel 2016

Microsoft Office Specialist Excel 2016 77-727 Microsoft Office Specialist Excel 2016 For coverage of all objectives, please utilize Shelly Cashman Series Office 365 and Excel 2016: Comprehensive. Domain Obj Number Objective text Module Page

More information

Getting Started with. Office 2008

Getting Started with. Office 2008 Getting Started with Office 2008 Copyright 2010 - Information Technology Services Kennesaw State University This document may be downloaded, printed, or copied, for educational use, without further permission

More information

Formatting Spreadsheets in Microsoft Excel

Formatting Spreadsheets in Microsoft Excel Formatting Spreadsheets in Microsoft Excel This document provides information regarding the formatting options available in Microsoft Excel 2010. Overview of Excel Microsoft Excel 2010 is a powerful tool

More information

M i c r o s o f t E x c e l A d v a n c e d. Microsoft Excel 2010 Advanced

M i c r o s o f t E x c e l A d v a n c e d. Microsoft Excel 2010 Advanced Microsoft Excel 2010 Advanced 0 Working with Rows, Columns, Formulas and Charts Formulas A formula is an equation that performs a calculation. Like a calculator, Excel can execute formulas that add, subtract,

More information

Microsoft Office 2016 elearning

Microsoft Office 2016 elearning Course content and pricing for all Microsoft Office 2016 online learning modules are listed within this document. Microsoft Office 2016 Online Training Courses Access 2016 Introduction/Intermediate/Advanced

More information

M i c r o s o f t E x c e l A d v a n c e d P a r t 3-4. Microsoft Excel Advanced 3-4

M i c r o s o f t E x c e l A d v a n c e d P a r t 3-4. Microsoft Excel Advanced 3-4 Microsoft Excel 2010 Advanced 3-4 0 Absolute references There may be times when you do not want a cell reference to change when copying or filling cells. You can use an absolute reference to keep a row

More information

Starting Excel application

Starting Excel application MICROSOFT EXCEL 1 2 Microsoft Excel: is a special office program used to apply mathematical operations according to reading a cell automatically, just click on it. It is called electronic tables Starting

More information

EXCEL 2010 PROCEDURES

EXCEL 2010 PROCEDURES EXCEL 2010 PROCEDURES Starting Excel 1 Click the Start 2 Click All Programs 3 Click the Microsoft Office folder icon 4 Click Microsoft Excel 2010 Naming and Saving (Ctrl+S) a Workbook 1 Click File 2 Click

More information

Microsoft Certified Application Specialist Exam Objectives Map

Microsoft Certified Application Specialist Exam Objectives Map Microsoft Certified Application Specialist Exam Objectives Map This document lists all Microsoft Certified Application Specialist exam objectives for (Exam 77-605) and provides references to corresponding

More information

3/31/2016. Spreadsheets. Spreadsheets. Spreadsheets and Data Management. Unit 3. Can be used to automatically

3/31/2016. Spreadsheets. Spreadsheets. Spreadsheets and Data Management. Unit 3. Can be used to automatically MICROSOFT EXCEL and Data Management Unit 3 Thursday March 31, 2016 Allow users to perform simple and complex sorting Allow users to perform calculations quickly Organizes and presents figures that can

More information

ADVANCED SPREADSHEET APPLICATIONS -PILOT EVENT-

ADVANCED SPREADSHEET APPLICATIONS -PILOT EVENT- Contestant Number ADVANCED SPREADSHEET APPLICATIONS -PILOT EVENT- Time Rank Regional 2008 TOTAL POINTS (200) Failure to adhere to any of the following rules will result in disqualification: 1. Contestant

More information

Jump Right In! Essential Computer Skills Using Microsoft 2013 By Andrews, Dark, and West

Jump Right In! Essential Computer Skills Using Microsoft 2013 By Andrews, Dark, and West Jump Right In! Essential Computer Skills Using Microsoft 2013 By Andrews, Dark, and West Chapter 10 Managing Numbers and Text Using Excel 1 Objectives Examine the Excel window and tools Enter and format

More information

Content-Based Assessments

Content-Based Assessments GO! Fix It Project 5H Programs For Project 5H, you will need the following file: e05h_programs Lastname_Firstname_5H_Programs Open the file e05h_programs, and then save the file in your Excel Chapter 5

More information

IT Skills. September Marking Scheme

IT Skills. September Marking Scheme IT Skills September 205 Marking Scheme This marking scheme has been prepared as a guide only to markers. This is not a set of model answers, or the exclusive answers to the questions, and there will frequently

More information

TestOut Desktop Pro Plus - English 3.0.x COURSE OUTLINE. Modified

TestOut Desktop Pro Plus - English 3.0.x COURSE OUTLINE. Modified TestOut Desktop Pro Plus - English 3.0.x COURSE OUTLINE Modified 2016-08-19 TestOut Desktop Pro Plus English 3.0.x Videos: 157 (9:14:00) Simulations: 172 Fact Sheets: 111 Exams: 6 CONTENTS: 0.0 GETTING

More information

Microsoft Excel Chapter 1. Creating a Worksheet and a Chart

Microsoft Excel Chapter 1. Creating a Worksheet and a Chart Microsoft Excel 2013 Chapter 1 Creating a Worksheet and a Chart Objectives Describe the Excel worksheet Enter text and numbers Use the Sum button to sum a range of cells Enter a simple function Copy the

More information

Excel Project 1 Creating a Worksheet and an Embedded Chart

Excel Project 1 Creating a Worksheet and an Embedded Chart 7 th grade Business & Computer Science 1 Excel Project 1 Creating a Worksheet and an Embedded Chart What is MS Excel? MS Excel is a powerful spreadsheet program that allows users to organize data, complete

More information

The New York Society Library Presents:

The New York Society Library Presents: The New York Society Library Presents: Introduction to Microsoft Excel (for versions 2003 and earlier) Carolyn Waters Acquisitions & Reference Librarian carolyn@nysoclib.org Index OVERVIEW.... Page 03

More information

EXAMGOOD QUESTION & ANSWER. Accurate study guides High passing rate! Exam Good provides update free of charge in one year!

EXAMGOOD QUESTION & ANSWER. Accurate study guides High passing rate! Exam Good provides update free of charge in one year! EXAMGOOD QUESTION & ANSWER Exam Good provides update free of charge in one year! Accurate study guides High passing rate! http://www.examgood.com Exam : IC3-2 Title : IC3 Key Applications Version : DEMO

More information

Assignment 1 MIS Spreadsheet (Excel)

Assignment 1 MIS Spreadsheet (Excel) Assignment 1 MIS Spreadsheet (Excel) Summary Create a Microsoft Excel file with six worksheets that provides extensive use of Excel capabilities including: importing data, formatting data in tables, summarizing

More information

Customizing the Excel 2013 program window. Getting started with Excel 2013

Customizing the Excel 2013 program window. Getting started with Excel 2013 Customizing the Excel 2013 program window 1 2 Getting started with Excel 2013 Working with data and Excel tables Creating workbooks Modifying workbooks Modifying worksheets Merging and unmerging cells

More information

Radnor Middle School Course Syllabus. Fill in course name: Technology Education Computers Put in course number (4 digits):

Radnor Middle School Course Syllabus. Fill in course name: Technology Education Computers Put in course number (4 digits): Radnor Middle School Course Syllabus Created November 5, 2013: Gail Furman Fill in course name: Technology Education Computers Put in course number (4 digits): Credits: Grades: 7 Weighted: Prerequisite:

More information