Free Essay

Chapter 9 Review Questions and Answers

In:

Submitted By xixecel
Words 1840
Pages 8
1. a) What is a database?
A database is an organized collection of related data. b) How does an RDBMS store data? An RDBMS stores related data in tables. 2. What is one benefit of dividing data into tables? Dividing data into tables eliminates unnecessary data duplication, or data redundancy. 3. a) What is a database schema? A database schema is a description of the data and the organization of the data into tables in a relational database. b) Explain the considerations for dividing data into related groups. Considerations for dividing data into related groups includes grouping information so that there is little or no data redundancy. However, each table must have data related to at least one other table, which will require data duplication. This is not considered data redundancy. A table with no relationship to any another table does not belong in the database. 4. a) What is a field? A column in a table. Used to store data. b) Explain why a field that stores more than one piece of data is considered poor design. A field that stores more than one piece of data limits the sorting and searching capabilities of the database. 5. List four guidelines to follow when choosing field names. 1. Make field names unique. 2. Choose the shortest possible name that accurately describes the contents of the field. 3. Use complete words instead of numbers or abbreviations. 4. Avoid special characters. 6. List nine types of data that can be stored in a field. Answers will vary. Every answer should include nine of the following: AutoNumber, Text, Number, Date/Time, Currency, Memo, Yes/No, Hyperlink , Attachment, and Lookup. 7. a) What does the size of a field indicate? The size of a field indicates the number of characters or the type of number it can store. b) What field size is used when a field will store numbers with a decimal portion? Single is used to store numbers with a decimal portion. c) What field size is used when a field will store whole numbers? Long Integer is used to store whole numbers.

8. a) What does the format of a field determine? The format of a field determines how the data is displayed. b) List four numeric field formats.
· General Number
· Fixed
· Percent
· Standard c) List three date/time field formats.
· Long
· Medium
· Short d) Do text fields have a field format? Text fields do not have a field format. 9. For each of the field names below, list the most appropriate data type (Text, Number, Date/Time, Currency, Memo, Yes/No, Hyperlink, and AutoNumber) Use each type only once: a) Retail Price Currency b) Order Date Date/Time c) First Name Text d) Product Description Memo e) E-Mail Address Hyperlink f) Record ID AutoNumber g) Delivery Time Date/Time h) Peanut Allergy Yes/No i) Quantity Number 10. a) What is a record? A record is a set of data for the fields in a table. b) Can a table contain duplicate records? Explain. No, because a table has a field that is designated the primary key. The primary key field must contain unique values. c) What is used in a table to ensure that records are unique? To ensure that no two records in a table are the same, one field in each table must be designated the primary key.

11. a) What must be done to designate a primary key? Click anywhere in the primary key field and then click Design > Primary key. b) What is the Required option used for? The Required option is used to ensure that each record has a primary key entry. c) List the steps required to make two fields the primary key of a table. 1. Click the gray box to the left of the first field. 2. Hold down the Ctrl key and then click the gray box to the left of the second field. 3. Click Design > Primary Key. 12. a) What is a form? A form is a database object used for entering records into a table and for viewing existing records. b) List three kinds of forms. Three kinds of forms include simple, split, and multiple items forms. 13. a) Why would a logo be added to a form? A logo would be added to a form to give it a professional appearance and indicate it is an official company form. b) List three types of formatting that can be applied to a form. Three types of formatting that can be applied to a form are bold, font size, and predefined formats. 14. Which view must a form be in to add records? A form must be in Form view to add records. 15. a) Where are the record controls located? The record controls are located at the bottom of a form. b) What are the record controls used for? Record controls are used to display a specific record in a form or for displaying a new, empty record. 16. How does a form make entering records less error-prone? A form can make data entry less error-prone because only one record at a time is displayed. 17. a) What is Datasheet view? Datasheet view displays a table in a datasheet where fields are in columns and records in rows. b) List two reasons for using Datasheet view. Datasheet view is useful for comparing records and if often used when sorting and filtering data. c) List one way to change a column’s width. Answers will vary. Double-click the right column boundary. d) List the steps required to change the order of fields. 1. Point to the bottom border of the field name. 2. Drag the field to the new position. e) List two formats and tell why they can improve the readability of a datasheet. Alternate Fill/Back Color shades every other row making the data easier to read. Bold can be used to make text appear heavier.

18. List the similarities between a datasheet and a worksheet. Answers will vary. A datasheet and a worksheet are both organized into rows and columns, both can be sorted and filtered, and both can have formatting applied making the data easier to read. 19. a) What is sorting? Sorting means to place records in a specified order. b) Explain the difference between ascending and descending order. Ascending order places records from lowest to highest and descending order places records from highest to lowest. 20. a) What is filtering? Displaying records based on specified criteria. b) Explain how a filter is different from a sort. A filter displays only certain records that meet a specified criteria, whereas sorting places records in a specified order. 21. a) Why preview a datasheet before printing? To see what the printouts will look like. b) How can more columns be printed on a sheet of paper? More columns can be printed by changing the page orientation to Landscape or by setting the margins to Narrow. c) What are two ways to print only certain records? Select the records before printing or by applying a filter. 22. a) Which view is a table modified from? A table is modified from Design view. b) When a field name is changed, what must be done to update the corresponding form? Nothing. A form automatically updates to reflect new field names. 23. a) List the steps for changing an entry in an existing record. 1. Click the record controls until the appropriate record is selected. 2. Double-click the entry to be changed. 3. Type to replace the existing data. b) Can an existing record be deleted? Explain. Yes. An existing record can be deleted by clicking Home > Delete > Delete Record. 24. Can database data be copied to a worksheet? Explain. Yes database data can be copied to a worksheet by clicking Home > Copy, displaying the Excel worksheet, and then clicking Home > Paste. 25. a) What does “importing data” mean? A file from one application is converted for use by the receiving application. b) Name two file types supported by Access for importing data. Two supported file types are Excel files and Text files.

26. Explain how e-mail can be used to collect data. With this approach, an e-mail message includes a data entry form for the recipient to fill out and return. Responses can be either collected for processing later or automatically processed. When responses are automatically processed, records are added to the database as the e-mails are received. 27. List four ways to populate a database. 1. Type entries. 2. Use copy and paste to transfer data. 3. Import data. 4. Collect data through e-mail. 28. a) Each table in a database is related to another table by one field. True. b) All data in a table must be the same type. False. Data in a table can be a variety of types. c) Lookup fields allow for any type of data. False. Lookup fields allow only specified data that has been retrieved from a field in another table. d) A hyperlink field allows only e-mail entries. False. Hyperlink fields store links to files, e-mail addresses, and Web site addresses. e) Entering 3 in a field formatted as percent displays 30% in the entry box. False. Entering 3 in a field formatted as percent displays 300% in the entry box. f) The primary key in a database is used to prevent duplicate records in a table. True. g) A Last Name field is a good candidate for a primary key field. False. This is a field where entries may not be unique. h) It is not possible to have a multiple-field primary key. False. It is possible to have a multiple-field primary key. i) A form cannot include an graphic. False. A graphic can be added to a form. j) A form cannot include a datasheet. False. A simple form displays a datasheet. k) Adding records is called multiplying the database. False. Adding records is called appending the database. l) Datasheet view displays one record at a time. False. Datasheet view displays a table. m) Records can be sorted in chronological order. True. n) Filtering removes records from a database. False. Filtered records are just hidden from view. o) Changing the print orientation of a datasheet may allow more columns to fit on a sheet of paper. True. p) A form is automatically updated when changes are made to the corresponding table. False. The original form needs to be deleted and a new form created. q) It is not possible to copy text from a Word document and paste it as an entry in a database form. False. It is possible to copy text from a Word document and paste it as an entry in a database form. r) Appended data overwrites existing records in a table. False. Appended data is added to the end of a table. s) E-mail cannot be used to collect data. False. Data can be collected with E-mail.

Similar Documents

Free Essay

Haha

...Date | Week | Topics | 30/11/14-6/12/14 | Week 1 | Ice Breaking & Chapter 1a ( Introduction To Management) & Chapter 1b (Evolutions Of Management Thought)-Ice Breaking Session-Inform about entrance & exit survey-Provide information regarding Lesson Plan, Assessment and Quizzes-Tutorial Activity: * Discuss about 4 process of management that have been practised as a student in their daily life or during an event that they involved. * Share the process by a short and simple presentation. * Answer past year exams question on Ch1 (Quiz 10 minutes)-Students need to draw mind map for Chp 1 on white board and do short review -Blended Learning: Share how a company involved in POLC for an event for the organization | 7/12/14-13/12/14 | Week 2 | Chapter 2 (Planning)-Students need to draw mind map for Chp 2 on white board and do short review -Tutorial Activity: * Answer past year exams question on Ch2(Quiz 10 minutes) * If planning is important, why do some managers choose not do it? Submit a short presentation about planning barriers and the benefit of the planning.-Blended Learning:Students are request to share their planning that they have prepare to study in UiTM | 14/12/14-20/12/14 | Week 3 | Chapter 3 (The Nature Of Decision Making)-Students need to draw mind map for Chp 3on white board and do short review -Tutorial Activity: * Answer past year exams question on Ch3 (Quiz 10 minutes) * Form a group of 4 persons. Students need to discuss their...

Words: 1251 - Pages: 6

Free Essay

Weeklz Cond

...Accounting for Decision Making Weekly Content Reviews Purpose of Reviews: * Worth 20% of your asssessment in this course. * To assist you to keep up with the weekly work. * To encourage you to engage with your textbook and other resources. This is intended to assist students in reading critically, which should help with all your courses at university. * To expose you to more accounting information than will be covered in the lecture. * To challenge you. New material is presented in the reviews in order to expose you to as much information as possible about accounting. General Instructions: 1. There are 11 Reviews in total for the semester. Each review relates to the lecture topic of that same number. So, Review 1 is based on Lecture 1 topic etc. 2. Questions in each review will be based on both material covered in the lecture, and additional material covered in the textbook but not covered in the lecture. 3. Each review is available for 13 days at a time. The schedule is available below. 4. Reviews can NOT (under any circumstances) be completed after the scheduled closing date. 5. For each Review, you are permitted three (3) attempts during the period the review is available. Only your best score on each review will count towards your final grade in the course. 6. Your best 8 scores from the 11 review topics will determine your mark for this asessment. Note: If you complete all 11 reviews, the lowest 3 scores will not be included...

Words: 556 - Pages: 3

Premium Essay

Acct 562 Week 4 Midterm Exam Answers

...ACCT 562 Week 4 Midterm Exam Answers https://homeworklance.com/downloads/acct-562-week-4-midterm-exam-answers/ ACCT 562 Week 4 Midterm Exam Answers Page: 1 2 1. Question : (TCO D) The review team should be aware of various management and operational techniques, which includes all of the following except: Mental Models Spirituality Greenfielding 2. Question : (TCO F) Manually altering entries in an organization‘s books in order to conceal fraud is called: Shrinkage Forced reconciliation Padding the books Instructor Explanation:Wells, Chapter 9 3. Question : (TCO F) During an interview, when an interviewee repeatedly fiddles with a pen or picks lint from her clothing, he/she is giving non¬verbal clues called: Signals Manipulators Exemplifiers Instructor Explanation:Wells, Chapter 15 4. Question : (TCO F) When the subject of an investigation has been accused of misconduct, establishing a morally acceptable rationalization might allow the accused to reconcile his actions with his conscience. Which of the following is not an example of an acceptable rationalization? The accused felt that he needed to get back at someone in the organization. The accused engaged in the misconduct for the benefit of others. The accused has personal demons that can’t be overcome. Instructor Explanation:Wells, Chapter 15 5. Question : (TCO F) In one of the case studies in the Wells textbook (page 49), Brian Lee, a top¬notch plastic surgeon, collected payments from...

Words: 1055 - Pages: 5

Free Essay

Network

...following exercises and questions from Routers and Routing Basics: CCNA 3 Labs and Study Guide: Vocabulary Exercise: Matching on page 3 VLSM Subnetting a Subnet Exercises on pages 9-11 VLSM Addressing Design Scenarios 1-6 on pages 15-20 Summary Route Exercises on pages 21-24 Concept Questions on pages 25-27 VLSM Case Study on page 27 Internet Research on page 29 (Use the ITT Tech Virtual Library.) • Complete Chapter 9 Review Questions 2-7, 10, 14, 20-22 on pages 258-259 of Introduction to Telecommunications. Submit your written answers to your instructor at the beginning of Unit 2. . Assignment 1.2: Virtual Labs • Complete Virtual Labs 6, 7, and 8 from the CCNA 640-802 CCNA Simulator, which you can find by clicking through these paths: ICND1 Troubleshooting Scenarios Lab 6: IP Addressing and Routing. ICND1 Troubleshooting Scenarios ICND1 Part 4: Troubleshooting Labs Lab 7: IP Routing I ICND 2 Troubleshooting Scenarios Lab 13: IP Routing II Submit your written answers to your instructor at the beginning of Unit 2. ©ITT Educational Services, Inc: Date: 03/13/09 Network Technology and Service Integration Unit 2 Homework The following homework is designed to cover the course objectives for this unit. Assignment 2.1: Textbook/Workbook Assignments • Complete the following exercises and questions from Routers and Routing Basics: CCNA 3 Labs and Study Guide: Vocabulary Exercise: Matching on page 70 Vocabulary Exercise: Completion on page 71 Concept Questions on page 72 Build the SPF...

Words: 2825 - Pages: 12

Premium Essay

Om Preston

...Queen’s University Belfast Queen’s University Management School. MGT2005 OPERATIONS MANAGEMENT Semester 2, 2012 “You don’t have to change. . . Survival is not mandatory.” (Professor William E. Deming) Course Co-ordinator: Dr Yu Xiong Introduction to Operations Management Operations Management (OM) is a functional field of management encompassing the design, operation and improvement of the processes and systems employed in the creation and delivery of an organisation's products and services. Essentially, operations management is concerned with explaining how factories and services work. Managing operations well requires both strategic and tactical skills and is critical to every type of organization, for it is only through effective and efficient utilization of resources that an organization can be successful in the long run. A few common threads pervade the material we cover in this course:  First, decision making in operations is highly context dependent. Recognising this is half the battle in managing an operation.  The variety of operational contexts obscures the link between particular operational decisions and overall firm profitability. Making this link transparent is essential to making better operational decisions.  Variability exists in any operation, and this variability needs to be managed  Integration, both across functional areas within a firm, and across firms in the value creation and delivery network, is crucial for superior firm performance...

Words: 3366 - Pages: 14

Free Essay

Acc 380 Week 5 Dq 2 Cash Flows

...the answers on the following questions: Explain the process by which you completed the final statements. Offer your opinion and analysis of the data in answer to the question: "What is the financial health of Lee College?" Business - Accounting Accounting and Financial Reporting . From Chapter 1 complete Exercise 1-6 and Exercise 1-9. From chapter 2 complete Exercise 2-2 and post the answers to the discussion board. Do not forget to show all necessary steps and explain how you attained the outcome. Respond to at least two of your classmates’ postings. GASB, CAFR ISSUES and Budgetary Comparison Schedule . From Chapter 2 complete Exercise 2-3 and from Chapter 3 complete Exercise 3-5 and Exercise 3-10 and post the answers to the discussion board. Do not forget to show all necessary steps and explain how you attained the outcome. Respond to at least two of your classmates’ postings. Government-Wide Statements Budgetary Comparison Schedule . Complete the following activities and submit your answers to your instructor in a Word document formatted to proper APA specifications. Include any relevant supporting computations and explanations. Review the financial information pertaining to the City of Northern Pines in problem 2-8 on pages 52 and 53 of your text. Prepare, in good form, a Statement of Activities for the city of Northern Pines for the year ended June 30, 2012. Northern Pines has no component units. Part Two: Review the...

Words: 377 - Pages: 2

Premium Essay

Jjjj

...Break-Down Multiple choice * 120 points possible * 40 questions * ~1.5 minutes per question Short answer * 30 points possible * 6 questions * ~3 minutes per question Exam is worth a total of 150 points Chapter Break-Down Chapter 1 * 1 MC question * 3 total points (2% of the exam) Chapter 2 * 3 MC questions * 9 total points (6% of the exam) Chapter 3 * 5 MC questions * 1 Short answer question * 20 total points (~13% of the exam) Chapter 4 * 5 MC questions * 1Short answer question * 20 total points (~13% of the exam) Chapter 5 * 6 MC questions * 18 total points (12% of the exam) Chapter 6 * 5 MC questions * 1 Short answer question * 20 total points (~13% of the exam) Chapter 7 * 5 MC questions * 1 Short answer question * 20 total points (~13% of the exam) Chapter 8 * 6 MC questions * 1 Short answer question * 23 total points (~15% of the exam) Chapter 9 * 4 MC questions * 12 total points (8% of the exam) Current Events * 1 Short answer question * 5 total points (~3% of the exam) Important Topics (This is intended to help guide the focus of your review for the exam, however, it is not intended to be sufficiently detailed to the exact exam questions. Note: many of the topics listed are broad and cover a variety of more specific points. Thus, not everything can or will be tested.) Chapter 1 * What is an audit * Fundamental Concepts in...

Words: 440 - Pages: 2

Premium Essay

Study Habits

...DEVELOPING EFFECTIVE STUDY HABITS Mayland Community College S.O.A.R. Program Revised April 2002 GET THE STUDY HABIT Did you ever stop to wonder what sets apart the really successful students from the average ones? Why do some students who appear to study all the time just get by, while others who don’t appear to put in as much time and effort do well? Is it all related to IQ and genetics or are some other factors involved? The truth is that success in school is not so much determined by sheer intelligence as knowing how to study. Studying is a skill. Being successful in school requires a high level of study skills. Students must first learn these skills, practice them and develop effective study habits in order to be successful. Very often the study habits and practices developed and used in high school do not work for students in college. Good study habits include many different skills: time management, selfdiscipline, concentration, memorization, organization, and effort. Desire to succeed is important, too. In this module you will discover your areas of strength and identify your weaknesses pertaining to studying. You will learn about your preferred learning channel, tips to organize your studies, and ways to help you remember what you study. The skills you will learn about in this module can be applied in other areas of your life as well: your job, your career, or any activity that requires thought, planning, information processing, and selfdiscipline. You’ll find...

Words: 4204 - Pages: 17

Premium Essay

Grand Canyon Bus 340 All Modules 1- 8 Assignment (2014)

...Assignment Problems: Chapters 1, 2, and 4 Details: Using the Module 1 readings, course website links, the GCU Library, the Internet, and/or other sources of literature as needed, complete the following problems: Chapter 1 – Online Research: Common Law Chapter 2 – Problems and Problem Cases: Problem 6 Chapter 4 – Problems and Problem Cases: Problems 4 and 7 Responses should not typically exceed 200 words for each problem and should contain citations from relevant sources if applicable. Complete the problems for each chapter first by stating the question(s) you are addressing, then by stating your responses. All problems and answers should be turned in on the same page/document. Prepare this assignment according to the APA guidelines found in the GCU APA Style Guide, located in the Student Success Center. An abstract is not required. BUS 340 Module 2 Assignment Problems: Chapters 5 and 6 Details: Using the Module 2 readings, course website links, the GCU Library, the Internet, and/or other sources of literature as needed, complete the following problems: Chapter 5 – Problems and Problem Cases: Problem 13 Chapter 6 – Problems and Problem Cases: Problem 11 Responses should not typically exceed 200 words for each problem and should contain citations from relevant sources if applicable. Complete the problems for each chapter first by stating the question(s) you are addressing, then by stating your responses. All problems and answers should be turned in...

Words: 1087 - Pages: 5

Premium Essay

Mba5501 Syllabus

...MBA 5501, Advanced Marketing Course Syllabus Course Description An overview of advanced topics in marketing planning, strategy, analysis, and control. Emphasis on consumer needs and analysis, market position, competition, and public policy environment related to marketing activities. Prerequisites None Course Textbook Kotler, P., & Keller, K. L. (2012). Marketing management (14th ed.). Upper Saddle River, NJ: Prentice Hall. Course Learning Objectives Upon completion of this course, students should be able to: 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. Explain both the Marketing Concept and the Holistic Marketing Concept. Analyze the macroenvironments as related to the marketing process. Illustrate the use of marketing research and the forecasting of demand. Describe the development of customer value, satisfaction, and loyalty. Explain the use of customer relationship management in cultivating customer relationship. Illustrate the consumer buying process and the organizational buying process. Illustrate market segmentation, market targeting, and brand equity. Describe positioning and differentiation strategies. Illustrate the development of product strategy and explain competitive strategies. Explain the marketing strategies for service companies. Identify and explain the various pricing strategies. Describe the management of the retail and wholesale business. Classify the management of advertising, sales promotion, events, and public relations. Identify...

Words: 3472 - Pages: 14

Premium Essay

Grand Canyon Bus 340 All Modules 1- 8 Assignment (2014)

...Assignment Problems: Chapters 1, 2, and 4 Details: Using the Module 1 readings, course website links, the GCU Library, the Internet, and/or other sources of literature as needed, complete the following problems: Chapter 1 – Online Research: Common Law Chapter 2 – Problems and Problem Cases: Problem 6 Chapter 4 – Problems and Problem Cases: Problems 4 and 7 Responses should not typically exceed 200 words for each problem and should contain citations from relevant sources if applicable. Complete the problems for each chapter first by stating the question(s) you are addressing, then by stating your responses. All problems and answers should be turned in on the same page/document. Prepare this assignment according to the APA guidelines found in the GCU APA Style Guide, located in the Student Success Center. An abstract is not required. BUS 340 Module 2 Assignment Problems: Chapters 5 and 6 Details: Using the Module 2 readings, course website links, the GCU Library, the Internet, and/or other sources of literature as needed, complete the following problems: Chapter 5 – Problems and Problem Cases: Problem 13 Chapter 6 – Problems and Problem Cases: Problem 11 Responses should not typically exceed 200 words for each problem and should contain citations from relevant sources if applicable. Complete the problems for each chapter first by stating the question(s) you are addressing, then by stating your responses. All problems and answers should be turned in...

Words: 1086 - Pages: 5

Premium Essay

Gfgdgd

...MBA 6053, Economics for Managers Course Syllabus Course Description Review of managerial economics and problems encountered in firm management. Examines changing economic environment, business trends and fluctuations, and introduces forecasting techniques. Prerequisites None Course Textbook Keat, P., & Young, P. (2009). Managerial economics (6th ed.). Upper Saddle River, NJ: Prentice Hall. Course Learning Objectives Upon completion of this course, students should be able to: 1. Discuss managerial economics and its relationship to microeconomics and other related fields of study such as finance, marketing, and statistics. 2. Decide economic goals for the firm and develop optimal decisions that will bring the firm closest to those goals. 3. Define supply, demand, and equilibrium price. 4. Apply the concepts of price elasticity, cross-elasticity, and income elasticity. 5. Specify the components of a regression model that can be used to estimate a demand equation. 6. Define production function, and explain the difference between a short-run and a long-run production function. 7. Distinguish between economic cost and accounting cost. 8. Describe the key characteristics of the four basic market types used in economic analysis. 9. Cite the main differences between monopolistic competition and oligopoly. 10. Analyze the practice of cartel pricing. 11. Illustrate game theory, and explain how it helps better understand mutually interdependent management decisions. 12. Define...

Words: 1441 - Pages: 6

Premium Essay

International Business

...LL.M INTERNATIONAL BUSINESS TRANSACTIONS LAW 5901 Kazakhstan Institute of Management, Economics, and Strategic Research School of Law REQUIRED TEXT: International Business and Trade [4th ed.] Ricky W. Griffen, Michael W. Pustay COURSE MATERIALS: http://www.eilfe.com/online-courses/kimep.html International Business Transactions REQUIRED TEXT: International Business and Trade [4th ed.] Ricky W. Griffen, Michael W. Pustay COURSE MATERIALS: http://www.eilfe.com/online-courses/kimep.html International Business Transactions KIMEP SUMMER I 2010 COURSE NUMBER: LAW5901 COURSE NAME: INTERNATIONAL BUSINESS TRANSACTIONS CLASS TIME: MTWTHF 20:15 – 21:45, HALL, NEW BUILDING FINAL EXAM: WEEK SIX; Time and date TBA KIMEP SUMMER I 2010 COURSE NUMBER: LAW5901 COURSE NAME: INTERNATIONAL BUSINESS TRANSACTIONS CLASS TIME: MTWTHF 20:15 – 21:45, HALL, NEW BUILDING FINAL EXAM: WEEK SIX; Time and date TBA Instructor: Prof. Dr. John JA Burke BA, JD, Ph.D. E-Mail: jburke@kimep.kz Office: 119, New Building Hours: Appointment Only Instructor: Prof. Dr. John JA Burke BA, JD, Ph.D. E-Mail: jburke@kimep.kz Office: 119, New Building Hours: Appointment Only INTRODUCTION AND OVERVIEW Joseph E. Stiglizt, the winner of the 2001 Nobel Prize in Economics, states, “We have a process of “globalisation” analogous to the earlier processes in which national...

Words: 2119 - Pages: 9

Premium Essay

Work Scheme

...Skills • Read through Chapter 1 • Distribute log books and explain • Show sample portfolio and discuss • Discuss opportunities for collecting different types of evidence Housekeeping – Windows • Use slides to explain basic principles • Work through activity in Chapter 2 • Complete sample test questions and discuss Word Processing • Use slides to explain basic principles • Work through activity in Chapter 3 • Complete sample test questions and discuss Spreadsheets • Use slides to explain facilities • Work through activity in Chapter 4 • Complete sample test questions and discuss Databases • Use slides to explain facilities • Work through activity in Chapter 5 • Complete sample test questions and discuss Research Techniques • Use slides to explain facilities • Work through activity in Chapter 6 • Complete sample test questions and discuss Health & Safety • Use slides to explain basic principles • Work through Chapter 7 • Complete sample test questions and discuss Legislation • Go through chapter 7 plus additional information on sample cases • Use slides to discuss: o Copyright o Data Protection Act o Computer Misuse Act • Complete sample test questions and discuss Sample test paper • Use sample paper in Appendix B or from the Payne-Gallway web site (to be marked by teacher/lecturer from answers provided on web 2&3 To demonstrate the importance of good housekeeping routines To introduce word processing techniques 4&5 6&7 To introduce spreadsheet techniques 8&9 To introduce database...

Words: 817 - Pages: 4

Premium Essay

Good

...Econ 251 7:30 a.m. in EE 129 1:30 and 3 p.m. in CL50 224 Spring 2012 Instructor: Dr. Kelly Blanchard Office: KRAN 477 Office Phone: 494-7956 Office Hours: Tuesdays and Wednesdays 9-11 a.m. and by appointment Email: khb@purdue.edu Teaching Assistants: Curtis Ball (ball10@purdue.edu) KRAN B024E T/Th 11:30-1:30 p.m. 496-1664 Ross Winegar (rwinegar@purdue.edu) KRAN 487 W/Th 3-5 p.m. Weekly Review Session: Thursdays 6-7 p.m. in KRAN G9 Exam Review Sessions: Friday, February 10 from 6-7 p.m. in WTHR 200 and Monday, March 26 from 6-7 p.m. in WTHR 200 Administrative Assistant: Bree Miller KRAN 443 496-7964 (9 a.m. – 1 p.m. M-Th) bree2@purdue.edu Course Web Site(s): blackboard.purdue.edu (for accessing grades and course information or postings) www.pearsonmylabandmastering.com (for e-text, online homework, study guide) Course Overview: Econ 251 is intended to introduce you to microeconomic theory and its application in everyday life. The course will explain how individual consumers and producers together determine the prices and quantities of goods available in the marketplace. We will investigate the underlying incentives of consumers to buy goods and of firms to produce products that satisfy consumer demand. In addition, we'll look at how government can help or hinder market efficiency. The textbook for the course is Microeconomics for Economics 251, published by Pearson Custom Publishing (ISBN: 1256128546). The publisher has created an online resource site...

Words: 1729 - Pages: 7