NATIONAL CERTIFICATE (VOCATIONAL) PRINCIPLES OF COMPUTER PROGRAMMING (Second Paper: Practical) NQF LEVEL 3 NOVEMBER 2009

Size: px
Start display at page:

Download "NATIONAL CERTIFICATE (VOCATIONAL) PRINCIPLES OF COMPUTER PROGRAMMING (Second Paper: Practical) NQF LEVEL 3 NOVEMBER 2009"

Transcription

1 NATIONAL CERTIFICATE (VOCATIONAL) PRINCIPLES OF COMPUTER PROGRAMMING (Second Paper: Practical) NQF LEVEL 3 NOVEMBER 2009 ( ) 27 November (X-Paper) 09:00 13:00 This question paper consists of 15 pages.

2 ( ) -2- NC1900(E)(N27)V TIME: 4 HOURS MARKS: 150 INSTRUCTIONS AND INFORMATION Answer ALL the questions. Read ALL the questions carefully. 3. Number the answers according to the numbering system used in this question paper. INSTRUCTIONS TO CANDIDATES AND LECTURERS Candidates must be seated in the computer laboratory 30 minutes before the start of the examination to ensure that all computers have the appropriate programs. The questions in this question paper will be done on the computer by making use of a database program (MSAccess) and VB.Net 2005 or VB.Net 2005 Express. Candidates must make sure that they print their work immediately after they have completed a question. Ensure that your examination number is printed on each printout. NO QUESTION WITHOUT A PRINTED EXAMINATION NUMBER WILL BE MARKED. In the event of a power failure or a computer or printer breakdown, the invigilator will make the necessary arrangements for students to continue and the actual time lost will be given to them once they resume working. All work on the computer should be saved at regular intervals to prevent loss of work in the event of a power failure. NO additional time may be allowed for such lost work. No candidate may print his/her work for another candidate, or make a memory stick available to another or access other candidates' work on the network. Any attempt to access information from or transfer information to another candidate in whatever manner is a contravention of the examination rules and regulations and will be viewed in an extremely serious light.

3 ( ) -3- NC1900(E)(N27)V All printouts or screen prints done during the session MUST be handed in. Make sure that your examination number appears on all pages. Students may NOT copy the source code of VB.Net to MSWord and then print it from the word processor. Steps to make a SCREEN DUMP: 10.1 Run the solution Hold in the ALT key and press PRINT SCREEN (This will copy the active screen) Open the MSWord program in Windows and PASTE the screen Add your examination number to the top right-hand side of your screen Print from here You are allowed to make use of the Help files on VB.NET. The following files will appear on your hard drive: 12.1 C:\NOV 2009 PRACTICAL\CLASS LIST\ 12.2 C:\NOV 2009 PRACTICAL\ICECREAM\ 12.3 C:\NOV 2009 PRACTICAL\

4 ( ) -4- NC1900(E)(N27)V QUESTION 1: PROGRAMMING VB.NET The following question refers to a VB.Net solution that has been saved on your hard drive. Open the solution CLASS LIST (C:\NOV 2009 PRACTICAL\CLASS LIST) on the hard disk and complete this question by following the instructions below. You are part of a team who works for a company that designs school administration packages. Your job is to add the code to the user interface. Buttons GroupBox Labels ListBox TextBoxes The above list was used to name the controls on the user interface screen. Use this as a reference to complete the program code.

5 ( ) -5- NC1900(E)(N27)V WORKING OF THE PROGRAM EXPLAINED Step 1: Step 2: Step 3: Step 4: Step 5: Step 6: Step 7: Step 8: Amount of students is entered into the Amount Students TextBox, Enter Amount button is clicked and then the Student Detail, GroupBox, with the Student Detail will be enabled. The Student Name and Student Surname are keyed in; the process will use a loop to count how many entries have been made by the user. Click Enter Student button. Key in the next student. When the last student's name is keyed in, the MessagesBox appears. Names and Class of students are written into the ListBox on the right-hand side of the form. Fields are cleared when Clear button is clicked. Program exits when Exit button is clicked. GENERAL HINT: The program should make use of TWO counters.

6 ( ) -6- NC1900(E)(N27)V 1.1 Add your examination number to LABEL 4 on the form and as a comment in your code. HINT: Use the following data in your program. There are FIVE students. Name Surname Jabu Nkosi Busi Mabena Eden Zulu Ernest Botha Suzi Quatro (1) 1.2 Declare the variables and the array. (3) 1.3 The program has to store the NAMES and SURNAMES of the students in an array called AmountArray() of the type string. (3) 1.4 The GroupBox must be enabled when the amount has been keyed in into the txtamount TextBox. (1) 1.5 When the user clicks Enter Amount, the TextBox for the amount has to be cleared. (1) 1.6 Redimension the array to the new size of the amount of students. (1) 1.7 Make use of a counter variable. (2) 1.8 The program has to test if the user keyed in an amount bigger than zero (0). (2) 1.9 When the user clicks the Enter Student button, the Name and Surname have to be entered into the array. (3) 1.10 The TextBox for Name and Surname has to be cleared when the user clicks the Enter Student button. (1) 1.11 Move the focus back to the txtname TextBox. (1) 1.12 When the user has entered the final name, a MessageBox has to appear, saying Limit Reached. (2) 1.13 The names and surnames of the students have to be written to the ListBox from the array using a For - Next loop. (4) 1.14 There should be a space between the Name and the Surname when they are displayed in the ListBox. (1)

7 ( ) -7- NC1900(E)(N27)V 1.15 The names of the students have to be sorted in alphabetical order. Use the ListBox sort method. (2) 1.16 The Clear button has to clear all TextBoxes. Make use of a Procedure. (3) 1.17 The Exit button has to close the program. (1) 1.18 Add descriptive comments to each subprocedure. (4) 1.19 Make a screen dump of the completed form. Make sure that your examination number appears on the form as specified in QUESTION 1.1. (2) 1.20 Print the source code. (2) [40] QUESTION 2: DEBUGGING PROGRAM INSTRUCTIONS You are working as a junior programmer in a company that writes programs for small enterprises. The current project is in its final phase and is handed over to you to complete. Open the solution C:\NOV 2009 PRACTICAL\ICECREAM) on the hard drive. This program calculates and displays incorrect results. It is your job to find these errors in the program. Use the test data below to test the program. The last column shows the output that is expected. TEST DATA Ice-Cream Sales Cold Drink Sales Correct Output 20 3 R R R R80.50

8 ( ) -8- NC1900(E)(N27)V 2.1 Change the original code so that the output would be the same as in the CORRECT OUTPUT column in the table above. Below is the code from the hard disk. Public Class frmicecream ' Replace this COMMENT with your EXAMNUMBER Private Sub btnenterdata_click(byval sender As System.Object, ByVal e As System.EventArgs) Handles btnenterdata.click ' This program Calculates the Average Dim Icecream As Single Dim Colddrinks As Single Dim Average As Integer Icecream = txticecream.text Colddrinks = txtcolddrinks.text Average = Icecream + Colddrinks / 2 lblanswer.text = " The average = " & Average End Sub End Class (6) 2.2 Add your examination number as a comment. (1) 2.3 Print the source code. Save the solution and use the code for the next question. (1) [8] QUESTION 3 The program now gives the correct output results, but there is still some refining to be done. The program is not user-friendly. This means that the program should cater for mistakes made by the average user. You now have to make the program more user-friendly and stable. You may have to make the user interface (form) bigger to fit the new controls that have to be added. 3.1 The program must have an Exit button that will give the user an option to leave the program. (2) 3.2 After the user has entered the data and the calculation has been done, the data from the two TextBoxes must be cleared. (1) 3.3 The program should warn the user when a value smaller than ONE (1) has been entered in any of the TextBoxes. HINT: Make use of the same Label in which the answer for the calculations is displayed. (6) 3.4 Provide the user with a button to clear ALL the values in the program. (2)

9 ( ) -9- NC1900(E)(N27)V 3.5 To make the code more streamline, you are instructed to make use of a Function to calculate the average. You have to create your own function and it should be called CalcAverage(). (6) 3.6 Make a screen dump of the new user interface. Add your examination number to the name of the form. (2) 3.7 Print the edited source code and save the solution. (1) [20] QUESTION 4 You are given a task by the science teacher at your college to write a complete program which will allow the user to convert degrees Celsius to degrees Fahrenheit or vice versa. Use a function to do the conversions. The conversion formulae are: f = (9/5) * c + 32 for converting Celsius to Fahrenheit C = (f -32) * (5/9) for converting Fahrenheit to Celsius The main program offers the choice between C to F or F to C. 4.1 Make use of TWO GroupBoxes. In GroupBox 1 the user can convert C to F and in GroupBox 2 F to C. (2) 4.2 The user will make use of a button to enable the GroupBox in which the conversion has to be made. (4) 4.3 Provide a Clear button to the form. The Clear button has to disable both of the GroupBoxes. (2) 4.4 Provide an Exit button to the form. (2) 4.5 The user will click on the Calculate button to show the results of the calculations. Only ONE button should be used for both types of conversions. (2) 4.6 Answers have to be displayed as follows, for example: -40 deg C = -40 deg Far 45 deg Far = 7.2 deg C Create the program and convert 56 deg C to deg Fahrenheit. The user should not be allowed to enter values bigger than 200 or smaller than -200 deg. (8) 4.7 Add the needed comments to your code. Your examination number should appear as a comment at the top of your code. (4)

10 ( ) -10- NC1900(E)(N27)V 4.8 Make a screen dump of your program with the above conversion. (1) 4.9 Print the source code. (1) 4.10 An appropriate screen design should be used. Make a screen dump. BELOW IS AN EXAMPLE OF WHAT THE SCREEN SHOULD LOOK LIKE Label for answer. Centre text. (6) [32]

11 ( ) -11- NC1900(E)(N27)V QUESTION 5: ACCESS - DATABASE You are working for a company that sells furniture to wholesalers. Your company needs a database to help with the keeping of stock. Various reports will have to be generated from queries and forms. You have been provided with sample data by your superior to help you to setup and test the database. The database has to consist of TWO (2) tables that are joined (relation). Use the information below to set up to 2 tables using MSAccess. You can use your own field names. The field names have to be descriptive of its content. Save the database as ABC Furniture and your examination number. For both tables you have to decide on the following: Field Name Data type Field size Decide on a primary key for both tables TABLE1 Stock Detail Product name longest name 20 Product code e.g. COU34565 Amount in stock - company keeps maximum of 20 items Re-order level e.g. 3 Date ordered e.g. 23/02/2009 Price Rxxxxx.xx On order Yes/No Create the data structure for Table 1, using the above information and key in the following data and save the table as Stock Detail and your examination number. Product name Product code Amount in stock Reorder level Date ordered Price ASD Fax 230 Fax /12/2008 R N LIM Chair De-Lux Lim /03/2009 R Y EXX DVD Recorder Exx /11/2008 R N HANDY Cam 230 Han /12/2008 R Y Lamp Shade pink Lam /10/2008 R50.00 N Gas Heater 3 burner Gas /10/2008 R N Coffee Table Pine Cof /03/2009 R Y Carpet Persian Red Car /12/2008 R N Cabinet Cab /02/2009 R N On order

12 ( ) -12- NC1900(E)(N27)V TABLE2 Customer Detail Product code e.g. COU34565 Cust ID e.g. BEARS23 Date purchased 24/02/2009 Cost Rxxxxx.xx Create the data structure for Table 2, using the above information and save it as Customer Detail and your examination number 5.1 Set up a one-to-one relationship (join) between the two tables. You must decide which fields will be used to join the two tables. Make a screen dump of the relationship. (1) 5.2 Print the database structure for the following: Stock Detail Customer Detail (7) (6) Use: -> Tools Analyse Documenter Select table and print. 5.3 Print the data of Stock Detail and use landscape orientation. (2) 5.4 Sort the data in ascending order according to the amount of On order and the Amount in stock and print it again. (2)

13 ( ) -13- NC1900(E)(N27)V 5.5 Create a form that you can use to add the new data in the table below. Edit the form to look like the figure below. The clipart can be found in the directory C:\NOV 2009 PRACTICAL\COUCH PICTURE on the hard disk. Insert your examination number as part of the name of the form, make a screen dump and print it. (4) 5.6 Add the following data to the table: Product name Product Amount in Re-order Date Price On code stock level ordered order MAX TV Max /12/2008 R N VCR COMBO Tx5 Vcr /03/2009 R Y MYFY STOVE T45 Myf /11/2008 R N VACUUM F2400 Vac /03/2009 R Y CARPET CHEAP Car /03/2009 R45.00 Y MATTRESS Queen Mat /10/2008 R N WASHING MACH 34 Was /03/2009 R Y TUMBLE WET-DRY Tum /12/2008 R N BOOKSHELF 45 Boo /02/2009 R N Sort the data according to the On order level ascending and print the data. (2) 5.7 Create the following query: Stock items of which there are less than 10 on hand The price is more than R Display ONLY the following fields: Amount in stock, Re-order level, Reorder date, Product name Print the SQL statement. Save the query as Stock_Query1. (6)

14 ( ) -14- NC1900(E)(N27)V 5.8 Run the query and print it. (3) 5.9 Create a new form in which the client (code: BEARS23) purchases can be captured. The form should look like the figure below: The client buys two items on 01/03/2009: 1. MYFY STOVE T45 2. BOOKSHELF 45 He buys again two items on 03/03/2009: 1. VACUUM F ASD Fax 230 Save the form as BEARS23 and your examination number. Make a screen dump of the form and print it. (5) 5.10 Print ONLY the data for BEARS23. (2)

15 ( ) -15- NC1900(E)(N27)V Create a corporate report using the Stock_Query Group on the Re-order level of the stock Change the heading of the report to Re-order Report Add your examination number to the top, right-hand side of the report Adjust the alignment of the columns to make the report more readable Sort according to the name of the product The report must be in stepped layout and printed portrait Save the report as your examination number Make a printout of the report. (10) [50] TOTAL: 150

NATIONAL CERTIFICATE (VOCATIONAL) OFFICE DATA PROCESSING NQF LEVEL 3 SUPPLEMENTARY EXAMINATION 2010

NATIONAL CERTIFICATE (VOCATIONAL) OFFICE DATA PROCESSING NQF LEVEL 3 SUPPLEMENTARY EXAMINATION 2010 NATIONAL CERTIFICATE (VOCATIONAL) OFFICE DATA PROCESSING NQF LEVEL 3 SUPPLEMENTARY EXAMINATION 2010 (3061023) 22 February (Y-Paper) 13:00 16:00 INSTRUCTIONS MUST BE HANDED TO INVIGILATORS AND CANDIDATES

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

Level 1 Producing simple databases (7266/ )

Level 1 Producing simple databases (7266/ ) Level 1 Producing simple databases (7266/7267-004) e-quals Assignment guide for Candidates Assignment B (This assignment can be used as evidence of achievement of 7574-119 database software) www.cityandguilds.com/e-quals07

More information

SECONDARY SCHOOL ANNUAL EXAMINATIONS 2008 DIRECTORATE FOR QUALITY AND STANDARDS IN EDUCATION Educational Assessment Unit

SECONDARY SCHOOL ANNUAL EXAMINATIONS 2008 DIRECTORATE FOR QUALITY AND STANDARDS IN EDUCATION Educational Assessment Unit SECONDARY SCHOOL ANNUAL EXAMINATIONS 008 DIRECTORATE FOR QUALITY AND STANDARDS IN EDUCATION Educational Assessment Unit FORM 3 INFORMATION AND COMMUNICATION TECHNOLOGY TIME: h 30 min Name: Class: Answer

More information

MARKING GUIDELINE NATIONAL CERTIFICATE (VOCATIONAL) NOVEMBER EXAMINATION. PRINCIPLES OF COMPUTER PROGRAMMING (First Paper) NQF LEVEL 3

MARKING GUIDELINE NATIONAL CERTIFICATE (VOCATIONAL) NOVEMBER EXAMINATION. PRINCIPLES OF COMPUTER PROGRAMMING (First Paper) NQF LEVEL 3 MARKING GUIDELINE NATIONAL CERTIFICATE (VOCATIONAL) NOVEMBER EXAMINATION (First Paper) NQF LEVEL 3 20 NOVEMBER 2014 This marking guideline consists of 7 pages. MARKING GUIDELINE -2- NC2370(E)(N20)V SECTION

More information

NATIONAL CERTIFICATE (VOCATIONAL) OFFICE DATA PROCESSING NQF LEVEL 4 SUPPLEMENTARY EXAMINATION 2010

NATIONAL CERTIFICATE (VOCATIONAL) OFFICE DATA PROCESSING NQF LEVEL 4 SUPPLEMENTARY EXAMINATION 2010 NATIONAL CERTIFICATE (VOCATIONAL) OFFICE DATA PROCESSING NQF LEVEL 4 SUPPLEMENTARY EXAMINATION 2010 (3061024) 18 February (X-Paper) 09:00 12:00 INSTRUCTIONS MUST BE HANDED TO INVIGILATORS AND CANDIDATES

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

Introduction to Programming. January Examination Paper. Time: 3 hours

Introduction to Programming. January Examination Paper. Time: 3 hours Introduction to Programming January 2016 Examination Paper Answer ALL questions. Produce a Word document using the instructions provided in the Background information section. Time: 3 hours The maximum

More information

GCSE. Business and Communication Systems. Unit 9 Using ICT in Business. Mark Scheme June Version 1: Final Mark Scheme

GCSE. Business and Communication Systems. Unit 9 Using ICT in Business. Mark Scheme June Version 1: Final Mark Scheme GCSE Business and Communication Systems Unit 9 Using ICT in Business Mark Scheme 434 June 205 Version : Final Mark Scheme Mark schemes are prepared by the Principal Examiner and considered, together with

More information

Setting up an Invoice System

Setting up an Invoice System Chapter 2 To fully understand the value of relational databases you need to create a detailed system. In this chapter you will setup an invoicing system for a computer mail order company, PC Direct, which

More information

COP 1170 Introduction to Computer Programming using Visual Basic

COP 1170 Introduction to Computer Programming using Visual Basic Course Justification This course is the first computer programming course in the Computer Information Systems Associate in Arts degree program; is required in the Computer Programming and Analysis, Database

More information

UNIVERSITY OF CAMBRIDGE INTERNATIONAL EXAMINATIONS International General Certificate of Secondary Education

UNIVERSITY OF CAMBRIDGE INTERNATIONAL EXAMINATIONS International General Certificate of Secondary Education UNIVERSITY OF CAMBRIDGE INTERNATIONAL EXAMINATIONS International General Certificate of Secondary Education *0000000000* INFORMATION TECHNOLOGY 0418/02 Paper 2 Practical Test October/November 2008 Additional

More information

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

IMS1906: Business Software Fundamentals Tutorial exercises Week 5: Variables and Constants

IMS1906: Business Software Fundamentals Tutorial exercises Week 5: Variables and Constants IMS1906: Business Software Fundamentals Tutorial exercises Week 5: Variables and Constants These notes are available on the IMS1906 Web site http://www.sims.monash.edu.au Tutorial Sheet 4/Week 5 Please

More information

Portrait Editor. to Portrait Flow

Portrait Editor. to Portrait Flow Portrait Editor to Portrait Flow Portrait Editor is a Walsworth program that allows you to view and edit your portrait images, names and grades based on the photo DVD supplied by your photographer. The

More information

Spreadsheet Processing Techniques the candidate s work, otherwise the Advanced

Spreadsheet Processing Techniques the candidate s work, otherwise the Advanced This paper must be returned with Spreadsheet Processing Techniques the candidate s work, otherwise the Advanced 8970-25-025 (IT-SPT 25) 51181 entry will be void and no result will be issued. Candidate

More information

CALIFORNIA STATE UNIVERSITY, SACRAMENTO College of Business Administration. MIS 15 Introduction to Business Programming. Programming Assignment 3 (P3)

CALIFORNIA STATE UNIVERSITY, SACRAMENTO College of Business Administration. MIS 15 Introduction to Business Programming. Programming Assignment 3 (P3) CALIFORNIA STATE UNIVERSITY, SACRAMENTO College of Business Administration MIS 15 Introduction to Business Programming Programming Assignment 3 (P3) Points: 50 Due Date: Tuesday, May 10 The purpose of

More information

UNIVERSITY OF CAMBRIDGE INTERNATIONAL EXAMINATIONS International General Certificate of Secondary Education

UNIVERSITY OF CAMBRIDGE INTERNATIONAL EXAMINATIONS International General Certificate of Secondary Education UNIVERSITY OF CAMBRIDGE INTERNATIONAL EXAMINATIONS International General Certificate of Secondary Education *0000000000* INFORMATION TECHNOLOGY 0418/02 Paper 2 Practical Test May/June 2008 Additional Materials:

More information

Programming with Visual Studio Higher (v. 2013)

Programming with Visual Studio Higher (v. 2013) Programming with Visual Studio Higher (v. 2013) Contents/Requirements Checklist Multiple selection: using ifs & case While Loops Using arrays Filling arrays Displaying array contents Types of variables:

More information

REGISTRATION OF A SHORT LEARNING PROGRAMME (SLP)

REGISTRATION OF A SHORT LEARNING PROGRAMME (SLP) REGISTRATION OF A SHORT LEARNING PROGRAMME (SLP) 1. Registration number:... 2. Short Learning Programme Name: Basic Computer Literacy Short Course X Skills Programme (Non-credit bearing and not linked

More information

Using Reports. Access 2013 Unit D. Property of Cengage Learning. Unit Objectives. Files You Will Need

Using Reports. Access 2013 Unit D. Property of Cengage Learning. Unit Objectives. Files You Will Need Unit D CASE Samantha Hooper, a tour developer at Quest Specialty Travel, asks you to produce some reports to help her share and analyze data. A report is an Access object that creates a professional looking

More information

*M29890A0120* M29890A W850/U4385/ /3/3/ Turn over

*M29890A0120* M29890A W850/U4385/ /3/3/ Turn over Centre No. Candidate No. Surname Signature Paper Reference(s) 4385/1F London Examinations IGCSE Information and Communication Technology Paper 1F Foundation Tier Friday 16 November 2007 Morning Time: 1

More information

Herefordshire College of Technology Centre Edexcel BTEC Level 3 Extended Diploma in Information Technology (Assignment 1 of 3)

Herefordshire College of Technology Centre Edexcel BTEC Level 3 Extended Diploma in Information Technology (Assignment 1 of 3) Student: Candidate Number: Assessor: Len Shand Herefordshire College of Technology Centre 24150 Edexcel BTEC Level 3 Extended Diploma in Information Technology (Assignment 1 of 3) Course: Unit: Title:

More information

BSc (Hons) Computer Science with. Network Security. BSc (Hons) Business Information Systems. Examinations for 2018 / Semester 1

BSc (Hons) Computer Science with. Network Security. BSc (Hons) Business Information Systems. Examinations for 2018 / Semester 1 BSc (Hons) Computer Science with Network Security BSc (Hons) Business Information Systems Cohort: BCNS/17A/FT Examinations for 2018 / Semester 1 Resit Examinations for BIS/16B/FT, BCNS/15A/FT, BCNS/15B/FT,

More information

National Quali cations 2017

National Quali cations 2017 H FOR X716/76/01 OFFICIAL USE National Quali cations 017 Mark Computing Science TUESDAY, 16 MAY 1:00 PM 3:00 PM *X7167601* Fill in these boxes and read what is printed below. Full name of centre Town Forename(s)

More information

UNIVERSITY OF CAMBRIDGE INTERNATIONAL EXAMINATIONS International General Certificate of Secondary Education

UNIVERSITY OF CAMBRIDGE INTERNATIONAL EXAMINATIONS International General Certificate of Secondary Education *6043272089* UNIVERSITY OF CAMBRIDGE INTERNATIONAL EXAMINATIONS International General Certificate of Secondary Education INFORMATION AND COMMUNICATION TECHNOLOGY 0417/02 Paper 2 Practical Test October/November

More information

Operate a Database Application

Operate a Database Application ICA10105 Certificate I in Information Technology ICAU1131B Operate a Database Application (35hrs) ICAU1131B: Operate a Database Application Description This unit defines the competency required to operate

More information

Content-Based Assessments

Content-Based Assessments Apply a combination of the Content-Based Assessments GO! Fix It Project 3H Resume Workshops For Project 3H, you will need the following file: a03h_resume_workshops Lastname_Firstname_3H_Resume_Workshops

More information

Learning VB.Net. Tutorial 17 Classes

Learning VB.Net. Tutorial 17 Classes Learning VB.Net Tutorial 17 Classes Hello everyone welcome to vb.net tutorials. These are going to be very basic tutorials about using the language to create simple applications, hope you enjoy it. If

More information

Guide to results Vocational Awards and Certificates Level 1/Level 2

Guide to results Vocational Awards and Certificates Level 1/Level 2 Guide to results Vocational Awards and Certificates / January and June 2018 This document provides an overview of results for Vocational Award and Certificates (Level 1/) qualifications. It gives details

More information

Level 3 Creating an event driven computer program using Visual Basic ( / )

Level 3 Creating an event driven computer program using Visual Basic ( / ) Level 3 Creating an event driven computer program using Visual Basic (7540-036/7630-317) Assignment guide for Candidates Assignment A www.cityandguilds.com September 2017 Version 2.0 About City & Guilds

More information

P>80 A P>70 && P<80 B P<70 C 12. Calculate employee salary according to following condition

P>80 A P>70 && P<80 B P<70 C 12. Calculate employee salary according to following condition 1. Write a JAVA SCRIPT program to convert temperature Celsius to Fahrenheit AND Fahrenheit to Celsius and implement any three properties on Label. 2. Write a JAVA SCRIPT program to convert liter to gallons

More information

Seat No. Total No. of Questions : 6] [Total No. of Printed Pages : 2 [4189]-101. P. G. D. C. M. (Semester - I) Examination

Seat No. Total No. of Questions : 6] [Total No. of Printed Pages : 2 [4189]-101. P. G. D. C. M. (Semester - I) Examination Seat No. Total No. of Questions : 6] [Total No. of Printed Pages : 2 [4189]-101 P. G. D. C. M. (Semester - I) Examination - 2012 ELEMENTS OF INFORMATION TECHNOLOGY AND OFFICE AUTOMATION (2008 Pattern)

More information

UNIVERSITY OF CAMBRIDGE INTERNATIONAL EXAMINATIONS International General Certificate of Secondary Education

UNIVERSITY OF CAMBRIDGE INTERNATIONAL EXAMINATIONS International General Certificate of Secondary Education *8366735912* UNIVERSITY OF CAMBRIDGE INTERNATIONAL EXAMINATIONS International General Certificate of Secondary Education INFORMATION AND COMMUNICATION TECHNOLOGY 0417/22 Paper 2 Practical Test May/June

More information

F453. COMPUTING Advanced Computing Theory ADVANCED GCE. Thursday 23 June 2011 Morning

F453. COMPUTING Advanced Computing Theory ADVANCED GCE. Thursday 23 June 2011 Morning ADVANCED GCE COMPUTING Advanced Computing Theory F453 *F430360611* Candidates answer on the question paper. OCR supplied materials: None Other materials required: None Thursday 23 June 2011 Morning Duration:

More information

COMP3 (JUN13COMP301) General Certificate of Education Advanced Level Examination June 2013

COMP3 (JUN13COMP301) General Certificate of Education Advanced Level Examination June 2013 Centre Number Surname Candidate Number For Examiner s Use Other Names Candidate Signature Examiner s Initials Computing General Certificate of Education Advanced Level Examination June 2013 COMP3 Question

More information

Key Skills IT Level 3 AFFORDABLE ARTWORK. Classroom Activity MY SKETCHES

Key Skills IT Level 3 AFFORDABLE ARTWORK. Classroom Activity MY SKETCHES Key Skills IT Level 3 AFFORDABLE ARTWORK Classroom Activity MY SKETCHES This activity uses the QCA data files to support the scenario Art : Article.txt, Pictures.txt, Arts.jpg and News.jpg Try to complete

More information

Chapter. Web Applications

Chapter. Web Applications Chapter Web Applications 144 Essential Visual Basic.NET fast Introduction Earlier versions of Visual Basic were excellent for creating applications which ran on a Windows PC, but increasingly there is

More information

ICAU1128B: Operate a Personal Computer Student Handbook

ICAU1128B: Operate a Personal Computer Student Handbook ICA20105 Certificate II in Information Technology ICAU1128B: Operate a Personal Computer Student Handbook Modification History Competency Handbooks ICA20105: Cert II in Information Technology: ICAU1128B

More information

Lab 3 The High-Low Game

Lab 3 The High-Low Game Lab 3 The High-Low Game LAB GOALS To develop a simple windows-based game named High-Low using VB.Net. You will use: Buttons, Textboxes, Labels, Dim, integer, arithmetic operations, conditionals [if-then-else],

More information

UNIVERSITY OF CAMBRIDGE INTERNATIONAL EXAMINATIONS International General Certificate of Secondary Education

UNIVERSITY OF CAMBRIDGE INTERNATIONAL EXAMINATIONS International General Certificate of Secondary Education *0000000000* UNIVERSITY OF CAMBRIDGE INTERNATIONAL EXAMINATIONS International General Certificate of Secondary Education INFORMATION TECHNOLOGY 0418/03 Paper 3 Practical Test October/November 2008 2 hours

More information

Maybank2u.com Online Stocks User Guide

Maybank2u.com Online Stocks User Guide I INTRODUCTION...1 UNIVERSAL FEATURES...2 CALENDAR FEATURE...2 SEARCH FEATURE...2 RESET BUTTON...2 PRINT BUTTON...2 BACK BUTTON...2 EXIT BUTTON...2 HOME...3 LIVE QUOTES...5 SCREEN INTRODUCTION...5 SCREEN

More information

Decision Structures. Start. Do I have a test in morning? Study for test. Watch TV tonight. Stop

Decision Structures. Start. Do I have a test in morning? Study for test. Watch TV tonight. Stop Decision Structures In the programs created thus far, Visual Basic reads and processes each of the procedure instructions in turn, one after the other. This is known as sequential processing or as the

More information

Level 2 Creating an event driven computer program using VisualBasic.Net ( )

Level 2 Creating an event driven computer program using VisualBasic.Net ( ) Level 2 Creating an event driven computer program using VisualBasic.Net (7540-009) Assignment guide for Candidates Assignment B www.cityandguilds.com October 2017 Version 1.0 About City & Guilds City &

More information

Information and Communication Technology Level 2

Information and Communication Technology Level 2 Write your name here Surname Other names Pearson Edexcel Functional Skills Centre Number Candidate Number Information and Communication Technology Level 2 17 21 March 2014 COVER SHEET Paper Reference FST02/01

More information

Tutorial 03 understanding controls : buttons, text boxes

Tutorial 03 understanding controls : buttons, text boxes Learning VB.Net Tutorial 03 understanding controls : buttons, text boxes Hello everyone welcome to vb.net tutorials. These are going to be very basic tutorials about using the language to create simple

More information

IN COLLABORATION WITH IVTB. Diploma in Information Technology. Examinations for / Semester 2

IN COLLABORATION WITH IVTB. Diploma in Information Technology. Examinations for / Semester 2 IN COLLABORATION WITH IVTB Diploma in Information Technology DIP/03/Full Time Examinations for 2004 2005 / Semester 2 MODULE: VISUAL PROGRAMMING MODULE CODE: BISE070 Duration: 2 Hours + 10 Minutes (Reading

More information

VEDATRAK CRM 3.0. User Guide

VEDATRAK CRM 3.0. User Guide VEDATRAK CRM 3.0 User Guide 2 (C) 2006-2012 SUI SOLUTIONS Ltd. All rights reserved. 3 Contents Overview...9 System Requirements...12 Installation Notes...13 Vedatrak Basics...14 User Roles...14 System

More information

DBMS Questions for IBPS Bank Exam

DBMS Questions for IBPS Bank Exam DBMS Questions for IBPS Bank Exam DBMS Questions for IBPS Bank Exam - In this article, we provided the study material of DBMS for the IBPS exam.you can answer the question based on topic. Candidate those

More information

UNIVERSITY OF CAMBRIDGE INTERNATIONAL EXAMINATIONS International General Certificate of Secondary Education

UNIVERSITY OF CAMBRIDGE INTERNATIONAL EXAMINATIONS International General Certificate of Secondary Education *0000000000* UNIVERSITY OF CAMBRIDGE INTERNATIONAL EXAMINATIONS International General Certificate of Secondary Education INFORMATION AND COMMUNICATION TECHNOLOGY 0417/03 Paper 3 Practical Test October/November

More information

HKTA TANG HIN MEMORIAL SECONDARY SCHOOL SECONDARY 3 COMPUTER LITERACY. Name: ( ) Class: Date: Databases and Microsoft Access

HKTA TANG HIN MEMORIAL SECONDARY SCHOOL SECONDARY 3 COMPUTER LITERACY. Name: ( ) Class: Date: Databases and Microsoft Access Databases and Microsoft Access Introduction to Databases A well-designed database enables huge data storage and efficient data retrieval. Term Database Table Record Field Primary key Index Meaning A organized

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

Mathematics (JUN10MD0101) General Certificate of Education Advanced Subsidiary Examination June Unit Decision TOTAL

Mathematics (JUN10MD0101) General Certificate of Education Advanced Subsidiary Examination June Unit Decision TOTAL Centre Number Candidate Number For Examiner s Use Surname Other Names Candidate Signature Examiner s Initials Mathematics Unit Decision 1 Wednesday 9 June 2010 General Certificate of Education Advanced

More information

UNIVERSITY OF CAMBRIDGE INTERNATIONAL EXAMINATIONS International General Certificate of Secondary Education. Paper 1 October/November hours

UNIVERSITY OF CAMBRIDGE INTERNATIONAL EXAMINATIONS International General Certificate of Secondary Education. Paper 1 October/November hours www.xtremepapers.com UNIVERSITY OF CAMBRIDGE INTERNATIONAL EXAMINATIONS International General Certificate of Secondary Education *5892256458* INFORMATION AND COMMUNICATION TECHNOLOGY 047/0 Paper October/November

More information

Examiners Report. January Pearson Edexcel Functional Skills ICT Level 1 (FST01)

Examiners Report. January Pearson Edexcel Functional Skills ICT Level 1 (FST01) Examiners Report January 2015 Pearson Edexcel Functional Skills ICT Level 1 (FST01) Edexcel and BTEC Qualifications Edexcel and BTEC qualifications are awarded by Pearson, the UK s largest awarding body.

More information

To enter the number in decimals Label 1 To show total. Text:...

To enter the number in decimals Label 1 To show total. Text:... Visual Basic tutorial - currency converter We will use visual studio to create a currency converter where we can convert a UK currency pound to other currencies. This is the interface for the application.

More information

UNIVERSITY OF CAMBRIDGE INTERNATIONAL EXAMINATIONS International General Certificate of Secondary Education *1943050649* INFORMATION AND COMMUNICATION TECHNOLOGY 0417/21 Paper 2 Practical Test May/June

More information

APPLY INPUT METHODS A,C,H

APPLY INPUT METHODS A,C,H APPLY INPUT METHODS A,C,H GOAL: Students will demonstrate proper keyboarding techniques and will create a table with various levels of headings and enhancement features comparing and contrasting ergonomic

More information

Using Microsoft Access

Using Microsoft Access Using Microsoft Access USING MICROSOFT ACCESS 1 Interfaces 2 Basic Macros 2 Exercise 1. Creating a Test Macro 2 Exercise 2. Creating a Macro with Multiple Steps 3 Exercise 3. Using Sub Macros 5 Expressions

More information

National Quali cations 2016

National Quali cations 2016 H FOR X76/76/0 OFFICIAL USE National Quali cations 06 Mark Computing Science FRIDAY, 7 MAY :00 PM 3:00 PM *X76760* Fill in these boxes and read what is printed below. Full name of centre Town Forename(s)

More information

MARKING GUIDELINE NATIONAL CERTIFICATE (VOCATIONAL) NQF LEVEL 4 NOVEMBER EXAMINATION. COMPUTER PROGRAMMING (First Paper) (Theory) 15 NOVEMBER 2013

MARKING GUIDELINE NATIONAL CERTIFICATE (VOCATIONAL) NQF LEVEL 4 NOVEMBER EXAMINATION. COMPUTER PROGRAMMING (First Paper) (Theory) 15 NOVEMBER 2013 MARKING GUIDELINE NATIONAL CERTIFICATE (VOCATIONAL) NQF LEVEL 4 NOVEMBER EXAMINATION COMPUTER PROGRAMMING (First Paper) (Theory) 15 NOVEMBER 2013 This marking guideline consists of 7 pages. MARKING GUIDELINE

More information

CONTENT. 1.0 Introduction Downloading and installing the software Running the software Using the software 7

CONTENT. 1.0 Introduction Downloading and installing the software Running the software Using the software 7 2 CONTENT Page 1.0 Introduction 1 2.0 Downloading and installing the software 2 3.0 Running the software 6 4.0 Using the software 7 5.0 Populating Records for Mathematics 9 6.0 Printing Reports 12 7.0

More information

UNIVERSITY OF CAMBRIDGE INTERNATIONAL EXAMINATIONS International General Certificate of Secondary Education

UNIVERSITY OF CAMBRIDGE INTERNATIONAL EXAMINATIONS International General Certificate of Secondary Education www.xtremepapers.com UNIVERSITY OF CAMBRIDGE INTERNATIONAL EXAMINATIONS International General Certificate of Secondary Education *2361514415* INFORMATION AND COMMUNICATION TECHNOLOGY 0417/21 Paper 2 Practical

More information

UNIVERSITY OF CAMBRIDGE INTERNATIONAL EXAMINATIONS International General Certificate of Secondary Education

UNIVERSITY OF CAMBRIDGE INTERNATIONAL EXAMINATIONS International General Certificate of Secondary Education *1280859186* UNIVERSITY OF CAMBRIDGE INTERNATIONAL EXAMINATIONS International General Certificate of Secondary Education INFORMATION AND COMMUNICATION TECHNOLOGY 0417/02 Paper 2 Practical Test May/June

More information

Cambridge International Examinations Cambridge International General Certificate of Secondary Education

Cambridge International Examinations Cambridge International General Certificate of Secondary Education Cambridge International Examinations Cambridge International General Certificate of Secondary Education *5134089268* INFORMATION AND COMMUNICATION TECHNOLOGY 0417/21 Paper 2 Practical Test February/March

More information

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

Cambridge International General Certificate of Secondary Education 0478 Computer Science June 2015 Principal Examiner Report for Teachers COMPUTER SCIENCE Paper 0478/11 Paper 1 Key Messages This is a new syllabus and the standard of candidates work was mostly very good. There is a continued move to provide questions where candidates have

More information

London Examinations IGCSE

London Examinations IGCSE Centre No. Candidate No. Surname Signature Initial(s) Paper Reference(s) 4385/1F London Examinations IGCSE Information and Communication Technology Paper 1F Foundation Tier Monday 14 May 2007 Morning Time:

More information

Chapter 2 Exploration of a Visual Basic.Net Application

Chapter 2 Exploration of a Visual Basic.Net Application Chapter 2 Exploration of a Visual Basic.Net Application We will discuss in this chapter the structure of a typical Visual Basic.Net application and provide you with a simple project that describes the

More information

Visual C# Program: Temperature Conversion Program

Visual C# Program: Temperature Conversion Program C h a p t e r 4B Addendum Visual C# Program: Temperature Conversion Program In this chapter, you will learn how to use the following Visual C# Application functions to World Class standards: Writing a

More information

OSR Administration 3.7 User Guide. Updated:

OSR Administration 3.7 User Guide. Updated: OSR Administration 3.7 User Guide Updated: 2013-01-31 Copyright OneStop Reporting AS www.onestopreporting.com Table of Contents Introduction... 1 Who should read this manual... 1 What s included in this

More information

Thursday 19 June 2014 Morning

Thursday 19 June 2014 Morning F Thursday 19 June 2014 Morning GCSE METHODS IN MATHEMATICS B392/01 Methods in Mathematics 2 (Foundation Tier) *3053239230* Candidates answer on the Question Paper. OCR supplied materials: None Other materials

More information

Principal Examiner Feedback. November Functional Skills ICT Level 2 (FST02)

Principal Examiner Feedback. November Functional Skills ICT Level 2 (FST02) Principal Examiner Feedback November 2012 Functional Skills ICT Level 2 (FST02) Edexcel and BTEC Qualifications Edexcel and BTEC qualifications come from Pearson, the world s leading learning company.

More information

Sales Order Processing

Sales Order Processing Windows Print Management System Sales Order Processing Sales Order Processing Contents Sales Order Processing Contents Sales Order Processing Contents... 1.1 Introduction to SOP... 2.1 Stock Type... 3.1

More information

External Data Connector for SharePoint

External Data Connector for SharePoint External Data Connector for SharePoint Last Updated: July 2017 Copyright 2014-2017 Vyapin Software Systems Private Limited. All rights reserved. This document is being furnished by Vyapin Software Systems

More information

NATIONAL SPORTS SCHOOL ST BENEDICT COLLEGE

NATIONAL SPORTS SCHOOL ST BENEDICT COLLEGE NATIONAL SPORTS SCHOOL ST BENEDICT COLLEGE Mark HALF-YEARLY EXAMINATION 2013/14 Levels 5-6-7-8 FORM 2 ICT TIME: 1h 30min Question 1 2 3 4 5 6 7 8 9 10 11 12 Global Mark Max. Mark 8 6 13 3 5 3 26 9 5 7

More information

Reinventing Computer Literacy: IC 3 and ICDL Paths to Certification

Reinventing Computer Literacy: IC 3 and ICDL Paths to Certification Reinventing Computer Literacy: IC 3 and ICDL Paths to Certification Computer Literacy is being debated, redefined, and reinvented. Antiquated computer literacy definitions and practices are being scrutinized

More information

Code No. 90 Please check that this question paper contains 6 printed pages. Code number given on the right hand side of the question paper should be written on the title page of the answer-book by the

More information

SESSION ENDING EXAMINATION CLASS XI SUBJECT : INFORMATICS PRACTICES (065) Time Allowed : 3 Hrs. Max Marks : 70

SESSION ENDING EXAMINATION CLASS XI SUBJECT : INFORMATICS PRACTICES (065) Time Allowed : 3 Hrs. Max Marks : 70 SESSION ENDING EXAMINATION CLASS XI SUBJECT : INFORMATICS PRACTICES (065) Time Allowed : 3 Hrs. Max Marks : 70 Note : 1-This question paper is divided into three sections. 2- Section-A and Section-B are

More information

Senior Software Engineering Project CSSP Project CEN April 5, Adam Cox Tass Oscar

Senior Software Engineering Project CSSP Project CEN April 5, Adam Cox Tass Oscar Senior Software Engineering Project CSSP Project CEN 4935 April 5, 2006 Adam Cox Tass Oscar 1. Introduction One of the ways in which social worker professionals and students evaluate their clients is with

More information

Text Processing (Business Professional)

Text Processing (Business Professional) Unit Title: Mailmerge OCR unit number: 06994 Level: 2 Credit value: 5 Guided learning hours: 50 Unit reference number: F/505/7091 Unit aim Text Processing (Business Professional) This unit aims to equip

More information

This page intentionally left blank

This page intentionally left blank This page intentionally left blank Starting Out With Visual Basic: International Edition Table of Contents Cover Contents Preface Chapter 1 Introduction to Programming and Visual Basic 1.1 Computer Systems:

More information

VARIABLES. 1. STRINGS Data with letters and/or characters 2. INTEGERS Numbers without decimals 3. FLOATING POINT NUMBERS Numbers with decimals

VARIABLES. 1. STRINGS Data with letters and/or characters 2. INTEGERS Numbers without decimals 3. FLOATING POINT NUMBERS Numbers with decimals VARIABLES WHAT IS A VARIABLE? A variable is a storage location in the computer s memory, used for holding information while the program is running. The information that is stored in a variable may change,

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

San Diego Elementary PowerTeacher: Seating Charts Quick Reference Card

San Diego Elementary PowerTeacher: Seating Charts Quick Reference Card Quick Reference Card PowerTeacher: Seating Charts Use PowerTeacher seating charts to help manage your classroom, take attendance, and select students randomly to promote class participation. Create as

More information

Information and Communication Technology Level 1

Information and Communication Technology Level 1 Write your name here Surname Other names Pearson Edexcel Functional Skills Centre Number Candidate Number Information and Communication Technology Level 1 9 13 January 2017 COVER SHEET Paper Reference

More information

Cambridge International Examinations Cambridge International Advanced Subsidiary and Advanced Level

Cambridge International Examinations Cambridge International Advanced Subsidiary and Advanced Level Cambridge International Examinations Cambridge International Advanced Subsidiary and Advanced Level COMPUTER SCIENCE 9608/21 Paper 2 Fundamental Problem-solving and Programming Skills October/November

More information

Cambridge International Examinations Cambridge International General Certificate of Secondary Education

Cambridge International Examinations Cambridge International General Certificate of Secondary Education Cambridge International Examinations Cambridge International General Certificate of Secondary Education *0848946524* INFORMATION AND COMMUNICATION TECHNOLOGY 0417/21 Paper 2 Document Production, Data Manipulation

More information

11-3 Managing Electronic Records

11-3 Managing Electronic Records 11-3 Managing Electronic Records Outcomes 11-3a Create and access electronic records. 11-3b Apply procedures for managing electronic records. 11-3c Manage records in a database. Electronic Records An electronic

More information

S.2 Computer Literacy Question-Answer Book

S.2 Computer Literacy Question-Answer Book S.2 C.L. Half-yearly Examination (2012-13) 1 12-13 S.2 C.L. Question- Answer Book Hong Kong Taoist Association Tang Hin Memorial Secondary School 2012-2013 Half-yearly Examination S.2 Computer Literacy

More information

Input Process Output. Activity Input Process Output. Select a drink according the button pressed

Input Process Output. Activity Input Process Output. Select a drink according the button pressed CH/NSS ICT/Feb., 2013 INTRODUCTION TO INFORMATION PROCESSING Input-Process-Output Cycle (Ch. 1.1) The process of a computer task can be divided into three stages: Input Process Output Examples: Activity

More information

Course/Faculty Scheduler

Course/Faculty Scheduler Computer Science and Systems Analysis Computer Science and Systems Analysis Technical Reports Miami University Year 1995 Course/Faculty Scheduler Steven Schwartz Miami University, commons-admin@lib.muohio.edu

More information

LEVEL 1 FUNCTIONAL SKILLS

LEVEL 1 FUNCTIONAL SKILLS OXFORD CAMBRIDGE AND RSA EXAMINATIONS LEVEL 1 FUNCTIONAL SKILLS INFORMATION AND COMMUNICATION TECHNOLOGY 09876 ON DEMAND PAPER A8 TASK AND ANSWER BOOKLET INSTRUCTIONS Fill in all the boxes below. Use BLOCK

More information

ADVANCED COMPUTER APPLICATIONS MICROSOFT WORD UNIT NAME:

ADVANCED COMPUTER APPLICATIONS MICROSOFT WORD UNIT NAME: ADVANCED COMPUTER APPLICATIONS MICROSOFT WORD UNIT NAME: Advanced Computer Applications Microsoft Word Review Chapters 1-3 Project 1 Flyers In the Lab 2 page WD 60-61 Photography Contest Cases and Places

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

Cambridge International Examinations Cambridge International General Certificate of Secondary Education

Cambridge International Examinations Cambridge International General Certificate of Secondary Education Cambridge International Examinations Cambridge International General Certificate of Secondary Education *4650180015* INFORMATION AND COMMUNICATION TECHNOLOGY 0417/22 Paper 2 Practical Test May/June 2015

More information

Objectives. After completing this topic, the students will: Understand of the concept of polymorphism Know on How to implement 2 types of polymorphism

Objectives. After completing this topic, the students will: Understand of the concept of polymorphism Know on How to implement 2 types of polymorphism Polymorphism Objectives After completing this topic, the students will: Understand of the concept of polymorphism Know on How to implement 2 types of polymorphism Definition Polymorphism provides the ability

More information

VISUAL BASIC PROGRAMMING (44) Technical Task KEY. Regional 2013 TOTAL POINTS (485)

VISUAL BASIC PROGRAMMING (44) Technical Task KEY. Regional 2013 TOTAL POINTS (485) 5 Pages VISUAL BASIC PROGRAMMING (44) Technical Task KEY Regional 2013 TOTAL POINTS (485) Graders: Please double-check and verify all scores! Property of Business Professionals of America. May be reproduced

More information

FOUNDATION. OCR Nationals in ICT. Unit 1 ICT Skills for Business. Bristnall Hall Technology College

FOUNDATION. OCR Nationals in ICT. Unit 1 ICT Skills for Business. Bristnall Hall Technology College FAIRTRADE FOUNDATION OCR Nationals in ICT Unit 1 ICT Skills for Business Bristnall Hall Technology College General Information for Candidates Q Do I have to pass this assignment? A Yes. You must pass this

More information

Customize. Building a Customer Portal Using Business Portal. Microsoft Dynamics GP. White Paper

Customize. Building a Customer Portal Using Business Portal. Microsoft Dynamics GP. White Paper Customize Microsoft Dynamics GP Building a Customer Portal Using Business Portal White Paper Helps you implement a customer portal and create web pages and web parts specifically designed for your customers.

More information

1. Create your First VB.Net Program Hello World

1. Create your First VB.Net Program Hello World 1. Create your First VB.Net Program Hello World 1. Open Microsoft Visual Studio and start a new project by select File New Project. 2. Select Windows Forms Application and name it as HelloWorld. Copyright

More information