NATIONAL SENIOR CERTIFICATE GRADE 11

Size: px
Start display at page:

Download "NATIONAL SENIOR CERTIFICATE GRADE 11"

Transcription

1 NATIONAL SENIOR CERTIFICATE GRADE 11 INFORMATION TECHNOLOGY P1 EXEMPLAR 2007 MARKS: 120 TIME: 3 hours This question paper consists of 9 pages.

2 Information Technology/P1 2 INSTRUCTIONS AND INFORMATION 1. This is a three-hour examination. Because of the nature of this examination it is important to note that you will not be permitted to leave the examination room before the end of the examination session. 2. This question paper consists of THREE questions. Answer ALL the questions. 3. As soon as a disk has been issued, write your name and examination number on the label. The following files have been supplied on the disk: EmpInfo.xls .txt Acronyms.txt 4. Save your work at regular intervals as a precaution against power failures. 5. Read ALL the questions carefully. Do only what is required. 6. At the end of the examination session, you will be required to hand in ONLY the disk given to you by the invigilator. Make sure that ALL the files have been saved on the network as explained to you by the invigilator/teacher. Ensure that ALL files can be read. 7. You may make use of the manuals originally supplied with the hardware and software. You may also use the HELP functions of the software. Java candidates may make use of the Java API files. You may NOT refer to any other resource material. 8. ALL printing of programming questions will take place within an hour of the completion of the examination.

3 Information Technology/P1 3 You have been employed by XYZ Furniture Shop to create a small database to record the personal details of its sales employees. You will also keep track of the sales that each staff employee makes. QUESTION 1: DATABASE 1.1 Create a database called FurnitureDB and then perform the following operations: Import the data from the spreadsheet file called EmpInfo (on exam CD) into a table called EmpTable. The EmpTable should now contain the information about the employees of XYZ Furniture Shop as shown in the table below: Change the field sizes and data types to correspond more appropriately to the data shown in the table. (2) Ensure that the Age field will not assume a value less than 20 and more than 65. (2) Ensure that the EmpCode will allow for TWO characters followed by ONE digit. (2) Set an appropriate primary key for the EmpTable. (1) (2)

4 Information Technology/P The following sales were made by the sales employees, as indicated by the arrows: Bintal Bala Dlamini Sbu Jack Bishu Jack Smith Create a second table called SalesTable using the information in the table above. The field sizes and data types must be appropriate. (3) 1.3 Create a query called AlphaList to display the details of ALL employees in ascending order of LastName and descending order of FirstName. (3) 1.4 Create a query called TotalCost which includes a calculated field to determine the total cost (Quantity * UnitPrice) of each of the sales in the table called SalesTable. Display ALL fields in the query. (2) 1.5 Include an additional foreign field to the SalesTable to provide a relationship between the EmpTable and the SalesTable. Create a one-to-many relationship between the EmpTable and the SalesTable and enforce referential integrity. (4) 1.6 Create a query called FirstSales that displays the LastName and FirstName of all sales employees who have sold 5 or more items in the first half of the year (3) 1.7 Add an additional field called Title to the table called EmpTable. Now create a form called EmpForm that displays ALL the fields. The form should include a combo box for the Title field, which will allow the user to select from the following options: Mr, Mrs or Ms. (4) 1.8 Create a report called EmpReport to show ALL the fields of employees where the FirstName starts with the letter 'J' or 'P'. Also display the average age of these employees at the bottom of the list. (5) [33]

5 Information Technology/P1 5 QUESTION 2: PROGRAMMING The XYZ Furniture Shop has 10 sales employees. Over a certain period only 5 sales employees were able to make sales. The XYZ Furniture Shop has decided to award 2 of its sales employees with a trip to New York. These 2 sales employees must be chosen using the following criteria: The sum of their TWO biggest sale amounts must be more than R5 000,00 (see table in QUESTION 2.3). Their average sales must exceed R2 000,00. It is possible that two employees, or only one employee, or none of the employees will be selected to go on the trip to New York. An employee may only be evaluated once. The process of selection is terminated when the two employees have been selected to go to New York or when all the employees have been evaluated. Write a program/class/class called Competition, that uses methods/procedures and parameter passing to do the following: (In Java, you may also create a driver class called TestCompetition if you choose to.) 2.1 Prompt the user to enter an integer number in the range 1 to 5. (1) 2.2 Write a method/function called getname to enter the name of the employee corresponding to the number obtained in QUESTION 2.1. (Use the data table in QUESTION 2.3.) (4) 2.3 Write a method/function called getarrdata to enter the FOUR best sales figures into an array for the employee selected by the user in QUESTION 2.1 and QUESTION 2.2. Use the data in the table below. Pass the number of the employee as a parameter to the method/function called getarrdata. The four best sales figures for each employee are shown in the table below: 1 Bala Bintal R2 000 R4 000 R3 000 R Sbu Dlamini R3 000 R6 000 R2 000 R Bishu Jack R2 000 R2 000 R2 000 R Smith Jack R1 000 R2 000 R3 000 R Smith Pam R4 000 R5 000 R3 000 R2 000 (6) 2.4 Write a method/procedure called sort that will sort the array of sales figures. You are NOT allowed to use any predefined sort method/procedure that is available in the programming language of choice. (6)

6 Information Technology/P Write a method/procedure called qualify to determine if the employee qualifies to go to New York using the criteria mentioned in the introduction of QUESTION 2, namely: The sum of their two biggest sales amounts must be more than R5 000,00. Their average sales must exceed R2 000,00. The qualify method/procedure must invoke the sort method/procedure you wrote in QUESTION 2.4. The qualify method/procedure must also display the following output: Average sales figure The highest two sales figures The name of the employee A message indicating whether the employee is going to New York or not (12) 2.6 Complete the program/class by invoking the relevant methods or by calling the relevant procedures/functions. Remember that the process of selection must be terminated when the two employees have been selected to go to New York or when all the employees have been evaluated. Assume that the user will enter the number of an employee only once. (15) 2.7 Display the message 'None going to New York' when ALL the employees' numbers have been entered and none meet with the criteria. (2) 2.8 Save a copy of the program/class/classes. (1) 2.9 Change the name of your program/class to CompetitionB and save it. (In Java, if you have created a driver class as well, change the name to TestCompetitionB.) Modify the program/class in such a way that the employee numbers are no longer entered by the user. Instead, the program will randomly generate the numbers in the following way: Generate a random integer number in the range 1 to 5. The user will now be prompted to enter the name and the sales figures of the employee whose number was generated randomly by the program. (The user must still use the data in the table in QUESTION 2.3 as input to test the program.) The program must ensure that the same employee will not be evaluated twice. If a random number has previously been generated, then the program must continue to generate random numbers until there are no previous matches. The rest of the program remains the same according to the specifications stated in QUESTIONS 2.2 to 2.7. (5)

7 Information Technology/P1 7 Sample input and output for QUESTION 2.1 to QUESTION 2.7 (where the user enters the number of the employee): Please enter an employee number: 2 What is the name of employee number 2?: Sbu Dlamini Please enter data for employee number 2 Sales figure 1 please?: Sales figure 2 please?: Sales figure 3 please?: Sales figure 4 please?: Average 3 500,0 Two best sales figures 3 000, ,0 Sbu Dlamini is going to New York Please enter an employee number: 1 What is the name of employee number 1?: Bala Bintal Please enter data for employee number 1 Sales figure 1 please?: Sales figure 2 please?: Sales figure 3 please?: Sales figure 4 please?: Average 2 750,0 Two best sales figures 3 000, ,0 Bala Bintal is going to New York Sample input and output for QUESTION 2.9 (with randomly generated employee numbers): Random Number: 3 What is the name of employee number 3?: Bishu Jack Please enter data for employee number 3 Sales figure 1 please?: Sales figure 2 please?: Sales figure 3 please?: Sales figure 4 please?: Average 1 750,0 Two best sales figures 2 000, ,0 Bishu Jack is not going to New York Random Number: 1 And so on... [52]

8 Information Technology/P1 8 QUESTION 3: PROGRAMMING The XYZ Furniture Shop management team sends out s to their sales employees on a regular basis. The sales employees are complaining about the difficulty they have to read their s because of the number of acronyms the e- mails sometimes contain. The following is an example of an which is stored in the ' .txt' file (on the exam CD): Dear Staff member, Take note that the PC in your office will be upgraded as follows: The RAM will be upgraded to 512 MB. A USB port will be added to the PC. The hard drive will be replaced with an 80 GB hard drive. You may assume that there is only one space between words. Apart from a space, there may be a full stop (. ), a comma (, ) or a colon ( : ) between words. The management team has therefore created a text file called 'Acronyms.txt' (on the exam CD) which contains a list of acronyms together with what each acronym stands for as shown below: USB: Universal Serial Bus ROM: Random Access Memory PC: Personal Computer GUI: Graphical User Interface RAM: Random Access Memory CPU: Central Processing Unit ISP: Internet Service Provider WWW: World Wide Web IP: Internet Protocol DRAM: Dynamic Random Access Memory You are required to write a program/class called Acros with parameter passing to do the following: (In Java, you may also create a driver class called TestAcros if you choose to.) 3.1 Write a method/procedure called readtext to read in data from the text file ' .txt' and to identify and store the acronyms in an array. The method/procedure called readtext invokes/calls a Boolean method/function called testword, that will determine whether a word is an acronym or not. An acronym has the following characteristics: Contains alphabetical characters only (A - Z) Are in capital letters only Contains more than one character (20) 3.2 Write a method/procedure called displayarr to display the acronyms stored in the array. (3)

9 Information Technology/P Write a method/procedure called lookupacr which displays the acronyms in the array and uses the text file 'Acronyms.txt' (on exam CD) to look up and display what each acronym stands for. If the acronym is not found in the text file, then display the acronym and a message 'unknown'. All acronyms NOT found in the 'Acronym.txt' text file, must be stored in a new text file called 'NewAcr.txt'. (12) Sample Input (The ' .txt' textfile) Dear Staff member, Take note that the PC in your office will be upgraded as follows: The RAM will be upgrade to 512 MG. A USB port will be added to the PC. The hard drive will be replaced with an 80 GB hard drive. Sample Output Acronyms in array: PC RAM MG USB PC GB Acronyms with what they stand for: PC: Personal Computer RAM: Random Access Memory MG: Unknown USB: Universal Serial Bus PC: Personal Computer GB: Unknown Sample of contents of the new text file ('NewAcr.txt') for this example: MG GB [35] TOTAL: 120

10 Question Paper Analysis Grid - Grade 11 - LO 1 LO 2 LO 3 LO 4 Question No. AS AS AS AS AS AS AS AS AS AS AS AS AS AS AS AS AS AS AS AS AS AS AS AS AS AS AS AS AS AS AS AS AS AS AS AS AS AS TOTAL Conceptual Knowledge (K) Marks Marks Marks Marks TOTALS ## 31 LO Totals LO % 0.0% 0.0% 0.0% 100.0% 25.6% 2007/03/20 1

11 Question Paper Analysis Grid Taxonomy Knowledge Areas - Grade 11 - Comprehension & Application (C) Analysis & Problem Solving (A) TOTAL Computer Hardware & Devices Networking Principles System Software e-communications Social, ethical, HCI, etc Career Pathing Algorithm Design Data Structures Database Development Management of Information Programming Spreadsheets Testing User Interfaces Website Development TOTAL Question Totals Marks % 24.8% 0.0% ##### #### #### #### #### #### #### #### #### #### #### #### #### #### 2007/03/20 2

NATIONAL SENIOR CERTIFICATE GRADE 12

NATIONAL SENIOR CERTIFICATE GRADE 12 NATIONAL SENIOR CERTIFICATE GRADE 12 INFORMATION TECHNOLOGY P1 NOVEMBER 2008 MARKS: 120 TIME: 3 hours This question paper consists of 32 pages. Information Technology/P1 2 INSTRUCTIONS AND INFORMATION

More information

NATIONAL SENIOR CERTIFICATE GRADE 12

NATIONAL SENIOR CERTIFICATE GRADE 12 NATIONAL SENIOR CERTIFICATE GRADE 12 INFORMATION TECHNOLOGY P1 NOVEMBER 2017 MARKS: 150 TIME: 3 hours This question paper consists of 18 pages. Information Technology/P1 2 DBE/November 2017 INSTRUCTIONS

More information

NATIONAL SENIOR CERTIFICATE GRADE 12

NATIONAL SENIOR CERTIFICATE GRADE 12 F NATIONAL SENIOR CERTIFICATE GRADE 12 INFORMATION TECHNOLOGY P1 NOVEMBER 2010 MARKS: 120 TIME: 3 hours This question paper consists of 34 pages, 3 annexures and an information sheet. Information Technology/P1

More information

NATIONAL SENIOR CERTIFICATE GRADE 12 INFT.1 INFORMATION TECHNOLOGY P1 FEBRUARY/MARCH 2010

NATIONAL SENIOR CERTIFICATE GRADE 12 INFT.1 INFORMATION TECHNOLOGY P1 FEBRUARY/MARCH 2010 NATIONAL SENIOR CERTIFICATE GRADE 12 INFT.1 INFORMATION TECHNOLOGY P1 FEBRUARY/MARCH 2010 MARKS: 120 TIME: 3 hours This question paper consists of 26 pages, 3 annexures and an information sheet. MORNING

More information

Using Microsoft Access

Using Microsoft Access Using Microsoft Access Creating Queries Norm Downey This PowerPoint uses the Sample Databases on the class website Please download them now 2 1 What is a Query? Queries allow the user to manipulate the

More information

Content-Based Assessments. Mastering Access. For Project 13L, you will need the following file: a13l_lab_administrators

Content-Based Assessments. Mastering Access. For Project 13L, you will need the following file: a13l_lab_administrators CH13_student_cd.qxd 10/17/08 7:17 AM Page 1 Mastering Access Project 13L Lab Administrators In this project, you will apply the skills you practiced from the Objectives in Project 13A. Objectives: 1. Open

More information

Getting Started With the Cisco PAM Desktop Software

Getting Started With the Cisco PAM Desktop Software CHAPTER 3 Getting Started With the Cisco PAM Desktop Software This chapter describes how to install the Cisco PAM desktop client software, log on to Cisco PAM, and begin configuring access control features

More information

Using Microsoft Access

Using Microsoft Access Using Microsoft Access Creating Select Queries Norm Downey Chapter 2 pages 173 193 and Chapter 3 pages 218 249 2 1 This PowerPoint uses the Sample Databases on the class website Please download them now

More information

General ECDL Information

General ECDL Information General ECDL Information The European Computer Driver s Licence (ECDL) consists of seven modules. In order to achieve the full ECDL Certificate candidates must achieve the minimum pass result of 75 or

More information

STIDistrict Query (Basic)

STIDistrict Query (Basic) STIDistrict Query (Basic) Creating a Basic Query To create a basic query in the Query Builder, open the STIDistrict workstation and click on Utilities Query Builder. When the program opens, database objects

More information

MS Access Let s begin by looking at the toolbar and menu of Access.

MS Access Let s begin by looking at the toolbar and menu of Access. MS Access 2003 Access is a database program that allows you to store, retrieve, analyze, and print information. Individuals use databases for various purposes. Businesses use databases to manage customer

More information

BTEC Nationals IT - Unit2 FAQs

BTEC Nationals IT - Unit2 FAQs BTEC Nationals IT - Unit2 FAQs Q1 Q2 I need more clarity on what is required in the design task Is it expected that the race officials are entering times as raw times and then the table is set up so it

More information

Open an existing database Sort records in a table Filter records in a table Create a query Modify a query in Design view

Open an existing database Sort records in a table Filter records in a table Create a query Modify a query in Design view Working with Data Objectives Open an existing database Sort records in a table Filter records in a table Create a query Modify a query in Design view 2 Objectives Relate two tables Create a query using

More information

August/September 2008

August/September 2008 CLASS DISCUSSION AND NOTES August/September 2008 Mon Tue Wed Thu Fri 25 26 27 28 29 Chap. 2 2. Intro. to SQL Sept. 1 2 3 4 5 2B-TPSW, PPR1/Project Team Roles Chap. 3 Rel. 3. Model/ Normalization I. GETTING

More information

NATIONAL SENIOR CERTIFICATE GRADE 12

NATIONAL SENIOR CERTIFICATE GRADE 12 NATIONAL SENIOR CERTIFICATE GRADE 12 INFORMATION TECHNOLOGY P1 EXEMPLAR 2014 MARKS: 150 TIME: 3 hours This question paper consists of 18 pages. Information Technology/P1 2 DBE/2014 INSTRUCTIONS AND INFORMATION

More information

GO! with Microsoft Access 2010 Introductory Gaskin Mclellan Graviett First Edition

GO! with Microsoft Access 2010 Introductory Gaskin Mclellan Graviett First Edition GO! with Microsoft Access 2010 Introductory Gaskin Mclellan Graviett First Edition Pearson Education Limited Edinburgh Gate Harlow Essex CM20 2JE England and Associated Companies throughout the world Visit

More information

Word Module 5: Creating and Formatting Tables

Word Module 5: Creating and Formatting Tables Illustrated Microsoft Office 365 and Office 2016 Intermediate 1st Edition Beskeen Test Bank Full Download: http://testbanklive.com/download/illustrated-microsoft-office-365-and-office-2016-intermediate-1st-edition-beskee

More information

Access Objects. Tables Queries Forms Reports Relationships

Access Objects. Tables Queries Forms Reports Relationships Access Review Access Objects Tables Queries Forms Reports Relationships How Access Saves a Database The Save button in Access differs from the Save button in other Windows programs such as Word and Excel.

More information

UNIVERSITY OF MALTA THE MATRICULATION EXAMINATION ADVANCED LEVEL. COMPUTING May 2016 EXAMINERS REPORT

UNIVERSITY OF MALTA THE MATRICULATION EXAMINATION ADVANCED LEVEL. COMPUTING May 2016 EXAMINERS REPORT UNIVERSITY OF MALTA THE MATRICULATION EXAMINATION ADVANCED LEVEL COMPUTING May 2016 EXAMINERS REPORT MATRICULATION AND SECONDARY EDUCATION CERTIFICATE EXAMINATIONS BOARD Computing Advanced Level May 2016

More information

IMPORTANT. Registration Settings: SERIAL NUMBER: COMPUTER ID: REGISTRATION NUMBER:

IMPORTANT. Registration Settings: SERIAL NUMBER: COMPUTER ID: REGISTRATION NUMBER: IMPORTANT Registration Settings: SERIAL NUMBER: COMPUTER ID: REGISTRATION NUMBER: Once you have your TALITY software functioning properly copy your phone system settings onto this page and save it for

More information

Access - Introduction to Queries

Access - Introduction to Queries Access - Introduction to Queries Part of managing a database involves asking questions about the data. A query is an Access object that you can use to ask the question(s). The answer is contained in the

More information

New Perspectives on Access Module 5: Creating Advanced Queries and Enhancing Table Design

New Perspectives on Access Module 5: Creating Advanced Queries and Enhancing Table Design New Perspectives on Access 2016 Module 5: Creating Advanced Queries and Enhancing Table Design 1 Objectives Session 5.1 Review object naming standards Use the Like, In, Not, and & operators in queries

More information

[6] [6] [6] [5] [5] [6] [5] [5]

[6] [6] [6] [5] [5] [6] [5] [5] M.K. Institute of Computer Studies,Bharuch Programming Language-I Programs April/May - 2005. Write a C program to find the factorial of a user inputted number. 2. Write a program to find the sum of 4 digits

More information

Information from Your

Information from Your UNIT 2 PROJECT 12 Retrieving Information from Your Database IN THIS PROJECT, YOU LEARN HOW TO Find Records Sort Records Filter Records Create Select Queries Create Compound Queries and Use Comparison Operators

More information

NATIONAL SENIOR CERTIFICATE GRADE 12

NATIONAL SENIOR CERTIFICATE GRADE 12 NATIONAL SENIOR CERTIFICATE GRADE 12 INFORMATION TECHNOLOGY P1 FEBRUARY/MARCH 2016 MARKS: 150 TIME: 3 hours This question paper consists of 21 pages. Information Technology/P1 2 DBE/Feb. Mar. 2016 INSTRUCTIONS

More information

CS(SG)11FMS NATIONAL QUALIFICATIONS. COMPUTING STUDIES STANDARD GRADE Foundation Level. Marking Guidelines

CS(SG)11FMS NATIONAL QUALIFICATIONS. COMPUTING STUDIES STANDARD GRADE Foundation Level. Marking Guidelines F NATIONAL QUALIFICATIONS Marking Guidelines COMPUTING STUDIES STANDARD GRADE Foundation Level The security of this examination paper requires that it is withdrawn from candidates after the examination

More information

Wrestling Pairings Program 2010

Wrestling Pairings Program 2010 Wrestling Pairings Program 2010 This program assists in setting up Madison style wrestling meets where rosters are combined and wrestlers are matched based on age, weight, experience and skill level. It

More information

Cambridge Ordinary Level 2210 Computer Science June 2016 Principal Examiner Report for Teachers

Cambridge Ordinary Level 2210 Computer Science June 2016 Principal Examiner Report for Teachers COMPUTER SCIENCE Paper 2210/11 Paper 1 Key messages This syllabus has now been running for a few sessions and candidate s work continues to improve. There is a continued move to provide questions where

More information

KULLEĠĠ SAN BENEDITTU Secondary School, Kirkop

KULLEĠĠ SAN BENEDITTU Secondary School, Kirkop KULLEĠĠ SAN BENEDITTU Secondary School, Kirkop Mark HALF YEARLY EXAMINATION 2015/2016 FORM 4 ICT TIME: 1h 30min Page 1 2 3 4 5 6 7 8 9 10 Global Mark Max. Mark 6 8 6 10 6 8 14 16 16 2 100 Mark DO NOT WRITE

More information

Access Intermediate

Access Intermediate Access 2013 - Intermediate 103-134 Advanced Queries Quick Links Overview Pages AC124 AC125 Selecting Fields Pages AC125 AC128 AC129 AC131 AC238 Sorting Results Pages AC131 AC136 Specifying Criteria Pages

More information

Cambridge International General Certificate of Secondary Education 0478 Computer Science June 2016 Principal Examiner Report for Teachers

Cambridge International General Certificate of Secondary Education 0478 Computer Science June 2016 Principal Examiner Report for Teachers COMPUTER SCIENCE Paper 0478/11 Paper 1 Key messages This syllabus has now been running for a few sessions and candidate s work continues to improve. There is a continued move to provide questions where

More information

Human Resource Management System User Guide

Human Resource Management System User Guide 11.0 Human Resource Management System User Guide Unit 0: Introduction Unit 1: HRMS Basics Unit 2: DateTracking Unit 3: Hiring a New Employee Unit 4: Electronic Approvals Unit 5: Maintaining Existing Employees

More information

Tutorial 5 Advanced Queries and Enhancing Table Design

Tutorial 5 Advanced Queries and Enhancing Table Design Tutorial 5 Advanced Queries and Enhancing Table Design (Sessions 1 and 3 only) The Clinic Database Clinic.accdb file for Tutorials 5-8 object names include tags no spaces in field names to promote upsizing

More information

Sorting your Database

Sorting your Database Sue Doogan 10/12/2015 08:41 Sorting your Database You are often asked to put your database into some sort of order, eg alphabetically, numerically or date order. This is easy if you are just being asked

More information

COMM 391 Winter 2014 Term 1

COMM 391 Winter 2014 Term 1 COMM 391 Winter 2014 Term 1 Tutorial 3: Microsoft Access Introducing Tables, Relationships, and Creating Queries The purpose of this tutorial is enable you to 1) explore the tables and relationships in

More information

Microsoft Access XP (2002) - Advanced Queries

Microsoft Access XP (2002) - Advanced Queries Microsoft Access XP (2002) - Advanced Queries Group/Summary Operations Change Join Properties Not Equal Query Parameter Queries Working with Text IIF Queries Expression Builder Backing up Tables Action

More information

2) SQL includes a data definition language, a data manipulation language, and SQL/Persistent stored modules. Answer: TRUE Diff: 2 Page Ref: 36

2) SQL includes a data definition language, a data manipulation language, and SQL/Persistent stored modules. Answer: TRUE Diff: 2 Page Ref: 36 Database Processing, 12e (Kroenke/Auer) Chapter 2: Introduction to Structured Query Language (SQL) 1) SQL stands for Standard Query Language. Diff: 1 Page Ref: 32 2) SQL includes a data definition language,

More information

King Fahd University of Petroleum and Minerals

King Fahd University of Petroleum and Minerals 1 King Fahd University of Petroleum and Minerals Information and Computer Science Department ICS 334: Database Systems Semester 041 Major Exam 1 18% ID: Name: Section: Grades Section Max Scored A 5 B 25

More information

Desktop User Guide May 2014

Desktop User Guide May 2014 Desktop User Guide May 2014 Table of Contents Software Environment... 1 Logging into the SaaS environment... 1 Logging off the Hosted Desktop... 6 Directories... 7 Wizmo AdminSet... 8 Shadowing a User...

More information

Full file at

Full file at David Kroenke's Database Processing: Fundamentals, Design and Implementation (10 th Edition) CHAPTER TWO INTRODUCTION TO STRUCTURED QUERY LANGUAGE (SQL) True-False Questions 1. SQL stands for Standard

More information

As your databases continue to evolve, you will need to incorporate advanced queries and reports. This chapter addresses how to create and use action

As your databases continue to evolve, you will need to incorporate advanced queries and reports. This chapter addresses how to create and use action As your databases continue to evolve, you will need to incorporate advanced queries and reports. This chapter addresses how to create and use action queries and how to create queries that perform more

More information

REPORT ON CANDIDATES WORK IN THE SECONDARY EDUCATION CERTIFICATE EXAMINATION JANUARY 2010 INFORMATION TECHNOLOGY TECHNICAL PROFICIENCY EXAMINATION

REPORT ON CANDIDATES WORK IN THE SECONDARY EDUCATION CERTIFICATE EXAMINATION JANUARY 2010 INFORMATION TECHNOLOGY TECHNICAL PROFICIENCY EXAMINATION CARIBBEAN EXAMINATIONS COUNCIL HEADQUARTERS REPORT ON CANDIDATES WORK IN THE SECONDARY EDUCATION CERTIFICATE EXAMINATION JANUARY 2010 INFORMATION TECHNOLOGY TECHNICAL PROFICIENCY EXAMINATION Copyright

More information

SEE GRADING CRITERIA AT THE BOTTOM. Database Tables Lookup Wizard Relationships Forms Queries Reports

SEE GRADING CRITERIA AT THE BOTTOM. Database Tables Lookup Wizard Relationships Forms Queries Reports Microsoft Office 2007 PDF Picture Tutorial Series Databases Tables, Forms, Queries, Lookup Wizard, Relationships August 2010 by Floyd Jay Winters and Julie Manchester winterf@scf.edu SEE GRADING CRITERIA

More information

Database Systems: Design, Implementation, and Management Tenth Edition. Chapter 7 Introduction to Structured Query Language (SQL)

Database Systems: Design, Implementation, and Management Tenth Edition. Chapter 7 Introduction to Structured Query Language (SQL) Database Systems: Design, Implementation, and Management Tenth Edition Chapter 7 Introduction to Structured Query Language (SQL) Objectives In this chapter, students will learn: The basic commands and

More information

CS 4400 Introduction to Database Systems 2002 Spring Term Project (Section A)

CS 4400 Introduction to Database Systems 2002 Spring Term Project (Section A) CS 4400 Introduction to Database Systems 2002 Spring Term Project (Section A) Last updated 1/15/2002, 9:30pm In this term project, you are asked to design a small database system, create and populate this

More information

Managing Data. When records in a file need to be accessed there are three ways of doing it;

Managing Data. When records in a file need to be accessed there are three ways of doing it; File Access Managing Data When records in a file need to be accessed there are three ways of doing it; a) Serial Access This means...start at the beginning of the file and access each record in turn until

More information

Copyright 2009 Labyrinth Learning Not for Sale or Classroom Use LESSON 1. Designing a Relational Database

Copyright 2009 Labyrinth Learning Not for Sale or Classroom Use LESSON 1. Designing a Relational Database LESSON 1 By now, you should have a good understanding of the basic features of a database. As you move forward in your study of Access, it is important to get a better idea of what makes Access a relational

More information

National 5 Computing Science Software Design & Development

National 5 Computing Science Software Design & Development National 5 Computing Science Software Design & Development 1 Stages of Development 2 Analysis 3 Design 4 Implementation 5 Testing 6 Documentation 7 Evaluation 8 Maintenance 9 Data Types & Structures 10

More information

Learn about the Display options Complete Review Questions and Activities Complete Training Survey

Learn about the Display options Complete Review Questions and Activities Complete Training Survey Intended Audience: Staff members who will be using the AdHoc reporting tools to query the Campus database. Description: To learn filter and report design capabilities available in Campus. Time: 3 hours

More information

PowerPoint Presentation to Accompany GO! All In One. Chapter 13

PowerPoint Presentation to Accompany GO! All In One. Chapter 13 PowerPoint Presentation to Accompany GO! Chapter 13 Create, Query, and Sort an Access Database; Create Forms and Reports 2013 Pearson Education, Inc. Publishing as Prentice Hall 1 Objectives Identify Good

More information

COGSCREEN-AE2 DISCLOSURE 9/16/2016

COGSCREEN-AE2 DISCLOSURE 9/16/2016 COGSCREEN-AE2 PRESENTED BY: GARY KAY, PH.D., PRESIDENT JON VIELHABER, CHIEF PROGRAMMER DAVID MCLAUGHLIN, RESEARCH ASSOCIATE KEVINBRINKLEY, WEBSITE DESIGNER COGSCREEN, LLC ST PETERSBURG, FLORIDA DISCLOSURE

More information

COMPUTER SCIENCE Paper 2 (PRACTICAL)

COMPUTER SCIENCE Paper 2 (PRACTICAL) COMPUTER SCIENCE Paper 2 (PRACTICAL) (Maximum Marks: 30) (Time allowed: Three hours) (Candidates are allowed additional 15 minutes for only reading the paper. They must NOT start writing during this time.)

More information

GRADE 12 SEPTEMBER 2012 COMPUTER APPLICATIONS TECHNOLOGY P1

GRADE 12 SEPTEMBER 2012 COMPUTER APPLICATIONS TECHNOLOGY P1 Province of the EASTERN CAPE EDUCATION NATIONAL SENIOR CERTIFICATE GRADE 12 SEPTEMBER 2012 COMPUTER APPLICATIONS TECHNOLOGY P1 MARKS: 200 TIME: 3 hours *CATDM1* This question paper consists of 16 pages.

More information

[CS(SG)06FMS] NATIONAL QUALIFICATIONS. COMPUTING STUDIES STANDARD GRADE Foundation Level. Marking Guidelines

[CS(SG)06FMS] NATIONAL QUALIFICATIONS. COMPUTING STUDIES STANDARD GRADE Foundation Level. Marking Guidelines F [CS(SG)06FMS] NATIONAL QUALIFICATIONS Marking Guidelines COMPUTING STUDIES STANDARD GRADE Foundation Level This paper must be withdrawn from candidates after any follow-up discussion of marks/grades

More information

Access Intermediate

Access Intermediate Access 2010 - Intermediate 103-134 Advanced Queries Quick Links Overview Pages AC116 AC117 Selecting Fields Pages AC118 AC119 AC122 Sorting Results Pages AC125 AC126 Specifying Criteria Pages AC132 AC134

More information

ICDL & OOo BASE. Module Five. Databases

ICDL & OOo BASE. Module Five. Databases ICDL & OOo BASE Module Five Databases BASE Module Goals taken from the Module 5 ICDL Syllabus Module 5 Database requires the candidate to understand some of the main concepts of databases and demonstrates

More information

GIRLS SECONDARY, L-IMRIEĦEL HALF YEARLY EXAMINATIONS 2015/2016

GIRLS SECONDARY, L-IMRIEĦEL HALF YEARLY EXAMINATIONS 2015/2016 GIRLS SECONDARY, L-IMRIEĦEL HALF YEARLY EXAMINATIONS 2015/2016 FORM: 3 Computing Time: 1½ Hr. Name: Class: Instructions: 1. Answer all the questions in the space provided on this paper. 2. Calculators

More information

isystoc User Guide

isystoc User Guide isystoc 4.3.1 User Guide Table of Contents isystoc 4.3.1 User Guide...4 About isystoc...5 Logging into isystoc...6 Automatic Logout / Refresh...7 isystoc Icons...8 Using isystoc...9 Search Options...10

More information

Cambridge Ordinary Level 2210 Computer Science November 2016 Principal Examiner Report for Teachers

Cambridge Ordinary Level 2210 Computer Science November 2016 Principal Examiner Report for Teachers COMPUTER SCIENCE Paper 2210/12 Paper 1 Key messages If a candidate writes the answer to a question on an additional page they must indicate very clearly to the Examiner where the revised answer can be

More information

6. Under which of the following categories is a laptop computer classified? (1) Microcomputer (2) Minicomputer (3) Mainframe (4) Supercomputer

6. Under which of the following categories is a laptop computer classified? (1) Microcomputer (2) Minicomputer (3) Mainframe (4) Supercomputer General Certificate of Education (Ord.Level) Examination 2007 Information & Communication Technology I One hour Note: Answer all questions. In each of the questions 1 to 40 pick one of the alternatives

More information

Marks Management & ScanExam Introduction

Marks Management & ScanExam Introduction Marks Management & ScanExam Introduction 1. Install Marks Management Software (MMS) and ScanExam First uninstall your old version of MMS. Then, use a web browser to visit ssnds.uwo.ca/softwaredownloads.html

More information

Level 6 Relational Database Unit 3 Relational Database Development Environment National Council for Vocational Awards C30147 RELATIONAL DATABASE

Level 6 Relational Database Unit 3 Relational Database Development Environment National Council for Vocational Awards C30147 RELATIONAL DATABASE C30147 RELATIONAL DATABASE Level 6 Relational Database Unit 3 Relational Database Development Environment National Council for Vocational Awards This module has been developed to further the learner s

More information

Microsoft Access 2007 Module 2

Microsoft Access 2007 Module 2 Microsoft Access 007 Module http://pds.hccfl.edu/pds Microsoft Access 007: Module August 007 007 Hillsborough Community College - Professional Development and Web Services Hillsborough Community College

More information

2. This Question Booklet contains nine questions. Answer any SIX questions.

2. This Question Booklet contains nine questions. Answer any SIX questions. PROGRESSIVE COMPREHENSIVE HIGH SCHOOL (PCHS) MANKON, BAMENDA 14 FEBRUARY 2014 ADVANCED LEVEL Subject/Code: Computer Science 795 Paper N Paper 2 Examiner DZEUGANG Placide TIME ALLOWED: 2 hours INSTRUCTIONS

More information

CS(SG)09GMS. COMPUTING STUDIES STANDARD GRADE General Level NATIONAL QUALIFICATIONS. Marking Guidelines Perfect Papers All rights reserved

CS(SG)09GMS. COMPUTING STUDIES STANDARD GRADE General Level NATIONAL QUALIFICATIONS. Marking Guidelines Perfect Papers All rights reserved G NATIONAL QUALIFICATIONS Marking Guidelines COMPUTING STUDIES STANDARD GRADE General Level This paper must be withdrawn from candidates any follow-up discussion of marks/grades awarded. This is to ensure

More information

European Computer Driving Licence

European Computer Driving Licence European Computer Driving Licence E C D L S y l l a b u s 5. 0 Module 5 Using Databases ECDL Syllabus 5 Courseware Module 5 Contents UNDERSTANDING DATABASES... 1 KEY CONCEPTS... 1 DATABASE ORGANIZATION...

More information

Team Access User Guide. Revision 1.0

Team Access User Guide. Revision 1.0 Revision 1.0 December 8, 2016 Notices The Team Access User Guide is confidential and is only for the use of SUBWAY franchisees, Development Agents, Field Consultants, and Operations Technology Leaders

More information

MRIEHEL SECONDARY SCHOOL HALF-YEARLY EXAMINATIONS 2016~17. Year 9 Computing Time: 1hr 30mins

MRIEHEL SECONDARY SCHOOL HALF-YEARLY EXAMINATIONS 2016~17. Year 9 Computing Time: 1hr 30mins MRIEHEL SECONDARY SCHOOL HALF-YEARLY EXAMINATIONS 2016~17 Year 9 Computing Time: 1hr 30mins Name: Class: Please read the following instructions carefully: 1. Answer ALL the questions in the space provided

More information

EGCI 321: Database Systems. Dr. Tanasanee Phienthrakul

EGCI 321: Database Systems. Dr. Tanasanee Phienthrakul 1 EGCI 321: Database Systems Dr. Tanasanee Phienthrakul 2 Chapter 10 Data Definition Language (DDL) 3 Basic SQL SQL language Considered one of the major reasons for the commercial success of relational

More information

Databases, Part II: Retrieving Information

Databases, Part II: Retrieving Information Databases, Part II: Retrieving Information In this section you will learn about how information can be retrieved via queries. Online MS-Office information source: https://support.office.com/ Reminder:

More information

NATIONAL SENIOR CERTIFICATE GRADE 12

NATIONAL SENIOR CERTIFICATE GRADE 12 NATIONAL SENIOR CERTIFICATE GRADE 12 INFORMATION TECHNOLOGY P2 NOVEMBER 2017 MARKS: 150 TIME: 3 hours This question paper consists of 17 pages. Information Technology/P2 2 DBE/November 2017 INSTRUCTIONS

More information

NATIONAL SENIOR CERTIFICATE GRADE 12

NATIONAL SENIOR CERTIFICATE GRADE 12 NATIONAL SENIOR CERTIFICATE GRADE 12 COMPUTER APPLICATIONS TECHNOLOGY P1 FEBRUARY/MARCH 2013 MARKS: 200 TIME: 3 hours This question paper consists of 18 pages and a separate information sheet. Computer

More information

Bulk Certification Verification Guide

Bulk Certification Verification Guide Bulk Certification Verification Guide Last update: August 2017 Table of Contents Purpose 2 Process 2 Input File Structure 2 Saving your Input File 3 Creating a PTCB Account 4 Logging into Your PTCB Account

More information

Getting Started with Commercial Services

Getting Started with Commercial Services Getting Started with Commercial Services USER GUIDE For informational purposes only, not considered an advertisement. WELCOME TO M&T BANK S COMMERCIAL SERVICES M&T Bank s Commercial Services system provides

More information

Introduction to CFCM Exam

Introduction to CFCM Exam Introduction to CFCM Exam Breakout Session # D04 Jack R. Hott, Life Time CPCM & CFCM, Fellow Manager, Contract Compliance, Fluor Government Group Michael Thacker Business Services Senior Subcontract Administrator,

More information

Level 3 Integrating applications to create advanced presentations (7266/ )

Level 3 Integrating applications to create advanced presentations (7266/ ) Level 3 Integrating applications to create advanced presentations (7266/7267-045) e-quals Assignment guide for Candidates Assignment A www.cityandguilds.com/e-quals07 March 2009 Version 3.0 About City

More information

Read all instructions carefully before completing the application

Read all instructions carefully before completing the application COMPLETING THE ONLINE APPLICATION Read all instructions carefully before completing the application Selection Criteria KAUST will only consider applicants with an overall GPA of at least 3.0 on a 4.0 scale

More information

Test Bank for Database Processing Fundamentals Design and Implementation 13th Edition by Kroenke

Test Bank for Database Processing Fundamentals Design and Implementation 13th Edition by Kroenke Test Bank for Database Processing Fundamentals Design and Implementation 13th Edition by Kroenke Link full download: https://testbankservice.com/download/test-bank-fordatabase-processing-fundamentals-design-and-implementation-13th-edition-bykroenke

More information

BANNER 9 QUICK NAVIGATION GUIDE

BANNER 9 QUICK NAVIGATION GUIDE MARCH 2017 Application Navigator Application Navigator provides a single interface to seamlessly navigate between Banner 9 JAVA pages and Banner 8 Oracle forms. It is a tool that allows you to go back

More information

Microsoft MOS- Using Microsoft Office Access Download Full Version :

Microsoft MOS- Using Microsoft Office Access Download Full Version : Microsoft 77-605 MOS- Using Microsoft Office Access 2007 Download Full Version : http://killexams.com/pass4sure/exam-detail/77-605 QUESTION: 120 Peter works as a Database Designer for AccessSoft Inc. The

More information

SUMMER EXAMINATIONS 2013

SUMMER EXAMINATIONS 2013 SUMMER EXAMINATIONS 2013 CSY202913N MODULE TITLE Database Technology 1 LEVEL TIME ALLOWED Five Two Hours Instructions to students: Enter your student number not your name on all answer booklets. You are

More information

King Abdulaziz University Faculty of Computing and Information Technology Computer Science Department

King Abdulaziz University Faculty of Computing and Information Technology Computer Science Department King Abdulaziz University Faculty of Computing and Information Technology Computer Science Department CPCS204, 2 nd Term 2014 Program 5: FCITbook Assigned: Thursday, May 1 st, 2014 Due: Thursday, May 15

More information

Cambridge International Examinations Cambridge Ordinary Level

Cambridge International Examinations Cambridge Ordinary Level Cambridge International Examinations Cambridge Ordinary Level *4357963448* COMPUTER SCIENCE 2210/21 Paper 2 Problem-solving and Programming May/June 2015 1 hour 45 minutes Candidates answer on the Question

More information

Pervasive.SQL - Configuration & Performance Settings

Pervasive.SQL - Configuration & Performance Settings Pervasive.SQL - Configuration & Performance Settings Neil Hughes Support4Omega Ltd. 19th June 2005 1 Introduction Although one of Pervasive.SQL s advantages is its ability to be installed and run straight

More information

Access 2007: Advanced Instructor s Edition

Access 2007: Advanced Instructor s Edition Access 2007: Advanced Instructor s Edition ILT Series COPYRIGHT Axzo Press. All rights reserved. No part of this work may be reproduced, transcribed, or used in any form or by any means graphic, electronic,

More information

Chapter 2. DB2 concepts

Chapter 2. DB2 concepts 4960ch02qxd 10/6/2000 7:20 AM Page 37 DB2 concepts Chapter 2 Structured query language 38 DB2 data structures 40 Enforcing business rules 49 DB2 system structures 52 Application processes and transactions

More information

Chapter 5: Hierarchical Form Lab

Chapter 5: Hierarchical Form Lab Chapter 5: Hierarchical Form Lab Learning Objectives This chapter demonstrates Access 2013 features for hierarchical forms that are more complex than the single table forms you developed in Chapter 4.

More information

Lab Determining Data Storage Capacity

Lab Determining Data Storage Capacity Lab 1.3.2 Determining Data Storage Capacity Objectives Determine the amount of RAM (in MB) installed in a PC. Determine the size of the hard disk drive (in GB) installed in a PC. Determine the used and

More information

M I C R O S O F T A C C E S S : P A R T 2 G E T T I N G I N F O R M A T I O N O U T O F Y O U R D A T A

M I C R O S O F T A C C E S S : P A R T 2 G E T T I N G I N F O R M A T I O N O U T O F Y O U R D A T A M I C R O S O F T A C C E S S 2 0 1 3 : P A R T 2 G E T T I N G I N F O R M A T I O N O U T O F Y O U R D A T A Michael J. Walk ALC Instructor michael@jwalkonline.org www.jwalkonline.org/main @MichaelJWalk

More information

BANNER 9 QUICK NAVIGATION GUIDE

BANNER 9 QUICK NAVIGATION GUIDE Application Navigator Application Navigator provides a single interface to navigate the Banner 9 JAVA pages. It is a tool that allows you to go back and forth between the current Banner forms and the new

More information

Entry Level 2 (Premiere) Syllabus Guide

Entry Level 2 (Premiere) Syllabus Guide Entry Level 2 (Premiere) Syllabus Guide Guitar Bass Drums 2014-2018 www.rockschool.co.uk v1.0 Table of Contents Exam Overview... 3 Examination Structure... 3 Examination Timings... 3 Free Choice Pieces...

More information

When you pass Exam : Access 2010, you complete the requirements for the Microsoft Office Specialist (MOS) - Access 2010 certification.

When you pass Exam : Access 2010, you complete the requirements for the Microsoft Office Specialist (MOS) - Access 2010 certification. Appendix 1 Microsoft Office Specialist: Access Certification Introduction The candidates for Microsoft Office Specialist certification should have core-level knowledge of Microsoft Office Access 2010.

More information

Business and Communication Systems

Business and Communication Systems General Certificate of Secondary Education June 2015 Business and Communication Systems 413009 Unit 9 Using ICT in Business Controlled Test To be conducted between 4 May 2015 and 8 May 2015 For this paper

More information

Creating and using Moodle Rubrics

Creating and using Moodle Rubrics Creating and using Moodle Rubrics Rubrics are marking methods that allow staff to ensure that consistent grading practices are followed, especially when grading as a team. They comprise a set of criteria

More information

WORKING WITH LOOKUP TABLES

WORKING WITH LOOKUP TABLES Excel Chapter 5 - Tables Name WORKING WITH LOOKUP TABLES 1. Open the file Communication Data from the class website. Add your name to the spreadsheet header. 2. Rename Sheet 1 Data. 3. Highlight the data

More information

Answer any four from (a) to (g) questions : (4 x 2=8)

Answer any four from (a) to (g) questions : (4 x 2=8) SAMPLE PAPER Class XI Annual Examination 2014-15 Subject - Informatics Practices Max. Marks : 70 Time : 3 Hrs. Note : Read the instructions carefully before answering Q.1 Answer the following questions

More information

Cambridge Assessment International Education Cambridge International General Certificate of Secondary Education. Published

Cambridge Assessment International Education Cambridge International General Certificate of Secondary Education. Published Cambridge Assessment International Education Cambridge International General Certificate of Secondary Education COMPUTER SCIENCE 0478/21 Paper 2 MARK SCHEME Maximum Mark: 50 Published This mark scheme

More information

CONCEPTS OF MANAGEMENT COMPUTING

CONCEPTS OF MANAGEMENT COMPUTING CONBUS1 JUNE 2012 EXAMINATION DATE: 11 JUNE 2012 TIME: 14H00 17H00 TOTAL: 100 MARKS DURATION: 3 HOURS PASS MARK: 40% (BUS-EDP) CONCEPTS OF MANAGEMENT COMPUTING THIS EXAMINATION PAPER CONSISTS OF 4 SECTIONS:

More information

Microsoft Access XP (2002) Queries

Microsoft Access XP (2002) Queries Microsoft Access XP (2002) Queries Column Display & Sorting Simple Queries And & Or Conditions Ranges Wild Cards Blanks Calculations Multi-table Queries Table of Contents INTRODUCTION TO ACCESS QUERIES...

More information

Microsoft Office Excel 2007

Microsoft Office Excel 2007 Microsoft Office Excel 2007 Data Processing in Spreadsheets 1/28/2009 Microsoft Excel 1 Use Excel s functions! A function is a predefined (built-in) formula for commonly used calculations. Each Excel function

More information