PROVINCIAL EXAMINATION INFORMATION TECHNOLOGY PAPER 1 JUNE 2015 GRADE 11

Size: px
Start display at page:

Download "PROVINCIAL EXAMINATION INFORMATION TECHNOLOGY PAPER 1 JUNE 2015 GRADE 11"

Transcription

1 PROVINCIAL EXAMINATION INFORMATION TECHNOLOGY PAPER 1 JUNE 2015 GRADE 11 TIME: 3 hours MARKS: 150 Copy Right reserved

2 This question paper consists of 10 pages. Copy Right reserved

3 2 MP/June 2015 INSTRUCTIONS AND INFORMATION 1. This paper is divided into THREE sections. Candidates must answer ALL THREE sections. 2. The duration of this examination is three hours. 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. 3. Make sure that you answer the questions according to the specifications that are given in each question. Marks will be awarded according to the set requirements only 4. Answer only what is asked in each question. For example, if the question does not ask for data validation, then no marks will be awarded for data validation. 5. Your programs must be coded in such a way that they will work with any data and not just the sample data supplied or any data extracts that appear in the question paper. 6. Routines such as search, sort and selection must be developed from first principles. You may not use the built-in features of a programming language for any of these routines. 7. All data structures must be defined by you, the programmer. You may not use components provided within the interface to store and later retrieve data. 8. You must save your work regularly on the disk you have been given, or the disk space allocated to you for this examination session. 9. Make sure that your name and surname appears as a comment in every program that you code as well as on every event indicated. 10. If required, print the programming code of all the programs/classes that you completed. You will be given half an hour printing time after the examination session. 11. At the end of this examination session you must hand in a disk/ CD/ DVD/ flash disk with all your word saved on it OR you must make sure that all your work has been saved on the disk space allocated to you for this examination session. Ensure that all files can be read.

4 3 MP/June 2015 List of folders with files provided in the Data folder: Vraag_Question2: Vraag_Question3: SCENARIO: A few friends want to arrange a LAN evening. You are requested to assist with organising the evening and by writing software to streamline the logistics of the evening. SECTION A QUESTION 1: GENERAL PROGRAMMING SKILLS INSTRUCTIONS: a) Create the project Question1. b) Add your name and surname as a comment in the first line of the main form unit (Question1_U) file. Do the following: Create the graphic user interface (GUI) as shown on the next page. (13) The label of the name (Naam) must be formatted according to the following criteria: Font: Times New Roman Font style: Bold Italic Font size: 20 Colour: Purple

5 4 MP/June 2015 Each player must indicate what size of pizza they would like and whether a player would like to order a cold drink or NOT. The amount that each player will have to contribute is the average of the price of all the eats and the cost of the new game that will be bought. Remember to include VAT of 14% in the total price. The price of the game must be set at the OI for the textbox. The computer program must determine and display the average cost. Complete the code for each section of QUESTION 1 from QUESTION 1.1 to QUESTION 1.3 as stated below. 1.1 Button [Vertoon/ Show] (31) Get the data from the relevant components: o Name o Level at which the person participates ('combo box'). o The size of the pizza that the person wants to order ('radio group'). o If the person would like a cold drink or not ( checkbox'). Display the player s information in columns in the Rich Edit. An example of the output is shown on the next page.

6 Take the following into account: 5 MP/June 2015 o The prices of pizzas is as follow: L pizzas cost R83.00 M pizzas cost R S pizzas cost R45.50 o The price for a cold drink is R o If the player order a cold drink it must be indicated with a Ja/Yes else with a Nee/No. Example of output: 1.2 Button [Bereken koste/ Calculate cost] (7) Determine the amount that each player has to pay. Format the amount as currency 1.3 Button [Reset] (4) Clear the following components: the edit boxes, the radio group and the checkbox. Place the focus of the cursor in the (Name) name edit. Save your program. A hard copy of the code may be required. TOTAL SECTION A: 55

7 SECTION B 6 MP/June 2015 QUESTION 2: The organiser of the games evening asked you to write a computer program to generate a login password for each player. Create a computer program to generate a password for each player. INSTRUCTIONS: The project Vraag_Question 2 is given in the Vraag_Question 2-file. Add your name and surname as a comment in the first line of the main form unit (Vraag_Question 2_U) Do the following: Compile and run the program. The program does not have any functionality at the moment. An example of the interface is shown below: Complete the code for the program as specified below: o The user must enter his/her name and surname in as a single string and his /her birth date in the format YYYY/MM/DD o The password consists of the surname, name, month and the day of the date of birth concatenated; the coding must adhere to the following specifications: Separate the name and surname; you may accept that the user has only one name without any spaces. The surname must be converted into Capital letters, all vowels must be deleted and all spaces must be replaced with #. E.g. van der Walt will be changed to VN#DR#WLT.

8 7 MP/June 2015 The name must be changed into small letters and must be written from back to front (last letter first etc.). E.g. If the name is Johan it has to change to: nahoj. o Validation the date, the day, the month and the year completely. You may accept that the player s birth dates are between 1994 and If the date is valid, the first three characters of the month must be used in the password. E.g. If the birth date is 1997/02/28, then the Month is shown as Feb. If the date is invalid the word ERROR must be used as the month. The day is a numbers copied from the date of birth. An example of a valid password derived from the following test data is shown: Name and Surname: Johan van der Walt Date of Birth: 1997/02/28 VN#DR#WLTnahojFeb28 An example of an invalid password derived from the following test data is shown: Name and Surname: Johan van der Walt Date of Birth: 1997/02/31 VN#DR#WLTnahojERROR Display the name and surname; date of birth and the password in columns on the RichEdit. Enter headings for the columns. An example of the output is shown on the next page:

9 8 MP/June 2015 Ensure that your name and surname is entered as comment in the first line of your program. Save all the files. Print the program code if required. TOTAL SECTION B: 55

10 SECTION C 9 MP/June 2015 QUESTION 3 At the end of the games evening winners have to be announced. Each of the top three gamers receives a prize. Write code to determine the winners and the prizes that will be handed out. A text file and an uncompleted program are given to determine the results. An example of the data in the text file Uitslae_Results.txt is given. Name; score1; score2; score3; score4 Johan;34;54;65;1 Kevishin;54;67;12;98 Nellie;34;76;56;54 Sam;45;45;34;43 Divan;76;54;23;98 Monja;44;55;66;77 INSTRUCTIONS: The project Vraag_Question 3 is in the Vraag_Question 3 folder. Enter your name and surname as comment in the first line of the main form. (Vraag_Question 3_U) Do the following: 3.1 Button [Kry Data _Get Data] (30) Extract the data from the text file and place the names of the players in an array, arrname. Determine the average score of each player for the four games and place these averages into an array, arravg. Display the names and the averages. 3.2 Button [Verwerk data_ Process data] (10) Sort the arrays according to the averages in descending order (form big too small). Allocate the prizes to the three top contestants. (The prizes are given in an array as part of the coding). Display the names and the prizes of the winners.

11 10 MP/June 2015 Example of the output: Ensure that your name and surname is entered as comment in the first line of your program. Save all the files. Print the program code if required. TOTAL SECTION C: 40 TOTAL : 150

12 PROVINCIAL EXAMINATION INFORMATION TECHNOLOGY PAPER 1 MEMORANDUM JUNE 2015 GRADE 11 This paper consists of 6 pages 1

13 AFDELING A / SECTION A GUI 13 private icountplayers : integer; rcostperplayer, rtotcost, rprizegame : double; procedure TForm1.btnBerekenClick(Sender: TObject); rtotcost := rtotcost + rprizegame; rtotcost := rtotcost + rtotcost*0.14; rcostperplayer := rtotcost/ icountplayers; redafvoer.lines.add('cost per player: ' + FloatToStrF(rCostPerPlayer,ffCurrency,8,2)); procedure TForm1.btnVertoonClick(Sender: TObject); var sname, slevel, sbeverage : string; isize : integer; csize : char; rpizzaprice, rbeverageprize : double; sname := edtnaam.text; inc(icountplayers); rcostperplayer := 0; slevel := Vlak_Level.Items[Vlak_Level.ItemIndex]; isize := rgppizza.itemindex; case isize of 0 : rpizzaprice := 45.5; 1 : rpizzaprice := 60.25; 2 : rpizzaprice := 83; rbeverageprize := 0; sbeverage := 'Nee/No'; if chbkoeldrank.checked then rbeverageprize := 15.99; sbeverage := 'Ja/Yes'; rtotcost := rtotcost + rpizzaprice + rbeverageprize; redafvoer.lines.add(sname + #9 + slevel+ #9 + FloatToStrF(rPizzaPrice,ffCurrency,8,2) + #9 + sbeverage); procedure TForm1.FormShow(Sender: TObject); icountplayers := 0; rtotcost := 0; rprizegame := StrToFloat(copy(edtPrys.Text,2)); redafvoer.paragraph.tabcount := 4; redafvoer.paragraph.tab[0] := 100; redafvoer.paragraph.tab[1] := 200; redafvoer.paragraph.tab[2] := 300; redafvoer.paragraph.tab[3] := 400; procedure TForm1.BitBtn1Click(Sender: TObject); edtnaam.text := ''; chbkoeldrank.checked := false; rgppizza.itemindex := -1; edtnaam.setfocus; 4 TOTAAL /TOTAL 55 2

14 AFDELING B / SECTION B 2. procedure TForm1.btnKodeer_EncryptClick(Sender: TObject); var sname, ssurname, sdob,snamesurname, spassword:string; newsurname1,newsurname2, newsurname3, smonth, sabrmonth, sday, syear: string; ispace, len, i,iyear, imonth, icode, icode2,iday, idays: Integer; monthflag, dayflag, yearflag: boolean; // Input data snamesurname := edtnaamvan_namesurname.text; sdob := edtgeboortedatum_dateofbirth.text; len := Length(sNameSurname); ispace := Pos(' ',snamesurname); sname := Copy(sNameSurname,1,iSpace-1); ssurname := Copy(sNameSurname,iSpace+1); ssurname := UpperCase(sSurname); newsurname1 := ''; newsurname2 := ''; // Change surname for i := 1 to Length(sSurname) do if not(ssurname[i] in ['A','E','I','O','U']) then newsurname1 := newsurname1 + ssurname[i] ; for i := 1 to Length(newSurname1) do if (newsurname1[i] = ' ') then newsurname2 := newsurname2 + '#' ; end else newsurname2 := newsurname2 + newsurname1[i] ; // Draai naam om newsurname3 := ''; for i := Length(sName) downto 1 do newsurname3 := newsurname3 + sname[i];

15 // Get the month of DOB and validate monthflag := false; dayflag := false; yearflag := false; sabrmonth := 'ERROR'; smonth := Copy(sDOB,6,2); Val(sMonth,iMonth,icode); sday := Copy(sDOB,9,2); Val(sDay,iDays,icode2); iyear := StrToInt(Copy(sDOB,1,4)); if (icode = 0) AND (icode2 = 0) then if (iyear >= 1995) AND (iyear <= 2000) then yearflag := true; case imonth of 4,6,9,11 : if idays <= 30 then dayflag := true; 1,3,5,7,8,10,12 : if idays <= 31 then dayflag := true; 2 : if IsLeapYear(iYear) then if idays <= 29 then dayflag := true end else if idays <= 28 then dayflag := true; // end case if (imonth in [1..12]) then monthflag := true; // end if if monthflag AND dayflag AND yearflag then case imonth of 1: sabrmonth := 'Jan'; 2: sabrmonth := 'Feb'; 3: sabrmonth := 'Mar'; 4: sabrmonth := 'Apr'; 5: sabrmonth := 'May'; 6: sabrmonth := 'Jun'; 7: sabrmonth := 'Jul'; 8: sabrmonth := 'Aug'; 9: sabrmonth := 'Sep'; 10: sabrmonth := 'Oct'; 11: sabrmonth := 'Nov'; 12: sabrmonth := 'Dec'; spassword := newsurname2 + newsurname3 + sabrmonth + IntToStr(iDays); end else spassword := newsurname2 + newsurname3 + sabrmonth; redtafvoer_output.lines.add(snamesurname+ #9+ sdob + #9+sPassWord); procedure TForm1.FormActivate(Sender: TObject); redtafvoer_output.paragraph.tabcount := 3; redtafvoer_output.paragraph.tab[0] := 100; redtafvoer_output.paragraph.tab[1] := 200; redtafvoer_output.paragraph.tab[2] := 300; // Clear output redtafvoer_output.clear; redtafvoer_output.lines.add('naam en Van' + #9+ 'Geboortedatum' + #9+'Wagwoord'); 28 3 TOTAAL /TOTAL 55 4

16 AFDELING C / SECTION C private tdata : TextFile; sline : string; arrname : array[1..30] of string; arravg : array [1..30] of double; icount : integer; procedure TVraag_Question_3.btnGetDataClick(Sender: TObject); var ip, ipos, i, itot : integer; AssignFile(tData,'Uitslae_Results.txt'); try Reset(tData); Except ShowMessage('File not found'); Exit; memafvoer.lines.add(''); memafvoer.lines.add('deelnemers'); memafvoer.lines.add('naam'+#9+'gemiddeld'); memafvoer.lines.add('~~~~'+#9+'~~~~~~~~~'); while NOT EOF(tData) do inc(icount); Readln(tData, sline); ipos := pos(';',sline); arrname[icount] := copy(sline,1,ipos-1); delete(sline,1,ipos); itot := 0; for I := 1 to 3 do ipos := pos(';',sline); ip := StrToInt(copy(sLine,1,iPos-1)); itot := itot + ip; delete(sline,1,ipos); itot := itot + StrToInt(sLine); arravg[icount] := itot /4 ; for I := 1 to icount do memafvoer.lines.add(arrname[i]+ #9+FloatToStrf(arrAvg[i],ffFixed,8,1 )); memafvoer.lines.add(''); memafvoer.lines.add(''); procedure TVraag_Question_3.btnProcessClick(Sender: TObject); var i, j : integer; stemp : string; rtemp : double; memafvoer.lines.add('wenners'); memafvoer.lines.add('naam'+#9+'prys'); memafvoer.lines.add('~~~~'+#9+'~~~~'); for I := 1 to icount-1 do for j := 1 to icount do if arravg[i] > arravg[j] then stemp := arrname[i]; arrname[i] := arrname[j]; arrname[j] := stemp; rtemp := arravg[i]; arravg[i] := arravg[j]; arravg[j] := rtemp; for I := 1 to 3 do memafvoer.lines.add(arrname[i]+ #9 +arrprizes[i]); procedure TVraag_Question_3.FormShow(Sender: TObject); icount := 0; TOTAAL / TOTAL GROOTTOTAAL / GRAND TOTAL

PROVINSIALE EKSAMENS INLIGTINGTEGNOLOGIE VRAESTEL 1 JUNIE 2015 GRAAD 11

PROVINSIALE EKSAMENS INLIGTINGTEGNOLOGIE VRAESTEL 1 JUNIE 2015 GRAAD 11 PROVINSIALE EKSAMENS INLIGTINGTEGNOLOGIE VRAESTEL 1 JUNIE 2015 GRAAD 11 TYD: 3 URE PUNTE: 150 Hierdie vraestel bestaan uit 10 bladsye Inligtingstegnologie/V1 2 MP/Junie 2015 INSTRUKSIES EN INLIGTING 1.

More information

GRADE 11 NOVEMBER 2012 INFORMATION TECHNOLOGY P1 INLIGTINGSTEGNOLOGIE V1 MEMORANDUM

GRADE 11 NOVEMBER 2012 INFORMATION TECHNOLOGY P1 INLIGTINGSTEGNOLOGIE V1 MEMORANDUM Province of the EASTERN CAPE EDUCATION NATIONAL SENIOR CERTIFICATE GRADE 11 NOVEMBER 2012 INFORMATION TECHNOLOGY P1 INLIGTINGSTEGNOLOGIE V1 MEMORANDUM MARKS/PUNTE: 120 This memorandum consists of 10 pages.

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

GRADE/GRAAD 11 NOVEMBER 2013 INFORMATION TECHNOLOGY P1 INLIGTINGSTEGNOLOGIE V1 MEMORANDUM

GRADE/GRAAD 11 NOVEMBER 2013 INFORMATION TECHNOLOGY P1 INLIGTINGSTEGNOLOGIE V1 MEMORANDUM NATIONAL SENIOR CERTIFICATE NASIONALE SENIOR SERTIFIKAAT GRADE/GRAAD 11 NOVEMBER 2013 INFORMATION TECHNOLOGY P1 INLIGTINGSTEGNOLOGIE V1 MEMORANDUM MARKS/PUNTE: 150 This memorandum consists of 6 pages.

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

ICT PROFESSIONAL MICROSOFT OFFICE SCHEDULE MIDRAND

ICT PROFESSIONAL MICROSOFT OFFICE SCHEDULE MIDRAND ICT PROFESSIONAL MICROSOFT OFFICE SCHEDULE MIDRAND BYTES PEOPLE SOLUTIONS Bytes Business Park 241 3rd Road Halfway Gardens Midrand Tel: +27 (11) 205-7000 Fax: +27 (11) 205-7110 Email: gauteng.sales@bytes.co.za

More information

Kenora Public Library. Computer Training. Introduction to Excel

Kenora Public Library. Computer Training. Introduction to Excel Kenora Public Library Computer Training Introduction to Excel Page 2 Introduction: Spreadsheet programs allow users to develop a number of documents that can be used to store data, perform calculations,

More information

ADVANCED SPREADSHEET APPLICATIONS (07)

ADVANCED SPREADSHEET APPLICATIONS (07) (07) CONTESTANT ID# START TIME END TIME Financial Services Events Sponsored by the American Institute of Certified Public Accounts TOTAL POINTS (300) Failure to adhere to any of the following rules will

More information

Fluidity Trader Historical Data for Ensign Software Playback

Fluidity Trader Historical Data for Ensign Software Playback Fluidity Trader Historical Data for Ensign Software Playback This support document will walk you through the steps of obtaining historical data for esignal into your Ensign Software program so that you

More information

GRADE 12 SEPTEMBER 2012 INFORMATION TECHNOLOGY P1 MEMORANDUM

GRADE 12 SEPTEMBER 2012 INFORMATION TECHNOLOGY P1 MEMORANDUM Province of the EASTERN CAPE EDUCATION NATIONAL SENIOR CERTIFICATE GRADE 12 SEPTEMBER 2012 INFORMATION TECHNOLOGY P1 MEMORANDUM MARKS: 120 This memorandum consists of 11 pages. 2 INFORMATION TECHNOLOGY

More information

Asks for clarification of whether a GOP must communicate to a TOP that a generator is in manual mode (no AVR) during start up or shut down.

Asks for clarification of whether a GOP must communicate to a TOP that a generator is in manual mode (no AVR) during start up or shut down. # Name Duration 1 Project 2011-INT-02 Interpretation of VAR-002 for Constellation Power Gen 185 days Jan Feb Mar Apr May Jun Jul Aug Sep O 2012 2 Start Date for this Plan 0 days 3 A - ASSEMBLE SDT 6 days

More information

ECSE 321 Assignment 2

ECSE 321 Assignment 2 ECSE 321 Assignment 2 Instructions: This assignment is worth a total of 40 marks. The assignment is due by noon (12pm) on Friday, April 5th 2013. The preferred method of submission is to submit a written

More information

NATIONAL SENIOR CERTIFICATE GRADE12

NATIONAL SENIOR CERTIFICATE GRADE12 NATIONAL SENIOR CERTIFICATE GRADE12 INFORMATION TECHNOLOGY P1 NOVEMBER 2017 MARKING GUIDELINES MARKS: 150 These marking guidelines consist of 26 pages. Information Technology/P1 2 DBE/November 2017 GENERAL

More information

COURSE LISTING. Courses Listed. Training for Database & Technology with Modeling in SAP HANA. 20 November 2017 (12:10 GMT) Beginner.

COURSE LISTING. Courses Listed. Training for Database & Technology with Modeling in SAP HANA. 20 November 2017 (12:10 GMT) Beginner. Training for Database & Technology with Modeling in SAP HANA Courses Listed Beginner HA100 - SAP HANA Introduction Advanced HA300 - SAP HANA Certification Exam C_HANAIMP_13 - SAP Certified Application

More information

DATE OF BIRTH SORTING (DBSORT)

DATE OF BIRTH SORTING (DBSORT) DATE OF BIRTH SORTING (DBSORT) Release 3.1 December 1997 - ii - DBSORT Table of Contents 1 Changes Since Last Release... 1 2 Purpose... 3 3 Limitations... 5 3.1 Command Line Parameters... 5 4 Input...

More information

This report is based on sampled data. Jun 1 Jul 6 Aug 10 Sep 14 Oct 19 Nov 23 Dec 28 Feb 1 Mar 8 Apr 12 May 17 Ju

This report is based on sampled data. Jun 1 Jul 6 Aug 10 Sep 14 Oct 19 Nov 23 Dec 28 Feb 1 Mar 8 Apr 12 May 17 Ju 0 - Total Traffic Content View Query This report is based on sampled data. Jun 1, 2009 - Jun 25, 2010 Comparing to: Site 300 Unique Pageviews 300 150 150 0 0 Jun 1 Jul 6 Aug 10 Sep 14 Oct 19 Nov 23 Dec

More information

NATIONAL SENIOR CERTIFICATE GRADE12

NATIONAL SENIOR CERTIFICATE GRADE12 NATIONAL SENIOR CERTIFICATE GRADE12 INFORMATION TECHNOLOGY P1 FEBRUARY/MARCH 2018 MARKING GUIDELINES MARKS: 150 These marking guidelines consist of 21 pages. Information Technology/P1 2 DBE/Feb. Mar. 2018

More information

A MEMBER OF THE TEXAS A&M UNIVERSITY SYSTEM. Texas AgriLife Research Texas AgriLife Extension Service. Pathway Net Guide REVISED 2/29/08

A MEMBER OF THE TEXAS A&M UNIVERSITY SYSTEM. Texas AgriLife Research Texas AgriLife Extension Service. Pathway Net Guide REVISED 2/29/08 A MEMBER OF THE TEXAS A&M UNIVERSITY SYSTEM Texas AgriLife Research Texas AgriLife Extension Service Pathway Net Guide REVISED 2/29/08 1 TABLE OF CONTENTS Logging On Page 3 Viewing Transactions Page 6

More information

CS Programming I: Arrays

CS Programming I: Arrays CS 200 - Programming I: Arrays Marc Renault Department of Computer Sciences University of Wisconsin Madison Fall 2017 TopHat Sec 3 (PM) Join Code: 719946 TopHat Sec 4 (AM) Join Code: 891624 Array Basics

More information

For the mobile people of. Oulu

For the mobile people of. Oulu For the mobile people of Oulu 1 Case panoulu and Competence Oulu 400 - Topics Competence Oulu 400 project panoulu - shortly Framework: planning the expansion of panoulu 2 Competence Oulu 400 Competence

More information

Lecture 10: Boolean Expressions

Lecture 10: Boolean Expressions Lecture 10: Boolean Expressions CS1068+ Introductory Programming in Python Dr Kieran T. Herley Department of Computer Science University College Cork 2017-2018 KH (12/10/17) Lecture 10: Boolean Expressions

More information

DAS LRS Monthly Service Report

DAS LRS Monthly Service Report DAS LRS Monthly Service Report Customer Service Manager : Diploma Aggregation Service : Daniel Ward Project/document reference : DAS LRS 2010-12 Issue : 1.0 Issue date : 17 th January 2011 Reporting Period

More information

FREQUENTLY ASKED QUESTIONS

FREQUENTLY ASKED QUESTIONS DISTRICT 7030 WEBSITE FREQUENTLY ASKED QUESTIONS NB: THIS WILL BE REGULARLY UPDATED FOR YOUR INFORMATION. 1. This website works better with the following browsers: Internet Explorer (IE) and Google Chrome.

More information

CIMA Asia. Interactive Timetable Live Online

CIMA Asia. Interactive Timetable Live Online CIMA Asia Interactive Timetable 2017 2018 Live Online Version 1 Information last updated 09 October 2017 Please note: Information and dates in this timetable are subject to change. CIMA Cert BA Course

More information

Data Types. 9. Types. a collection of values and the definition of one or more operations that can be performed on those values

Data Types. 9. Types. a collection of values and the definition of one or more operations that can be performed on those values Data Types 1 data type: a collection of values and the definition of one or more operations that can be performed on those values C++ includes a variety of built-in or base data types: short, int, long,

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

New Concept for Article 36 Networking and Management of the List

New Concept for Article 36 Networking and Management of the List New Concept for Article 36 Networking and Management of the List Kerstin Gross-Helmert, AFSCO 28 th Meeting of the Focal Point Network EFSA, MTG SEAT 00/M08-09 THE PRESENTATION Why a new concept? What

More information

If Case Loop Next Exit

If Case Loop Next Exit If Case Loop Next Exit If statement If_statement ::= if condition then sequence of sequential statements {elsif condition then sequence of sequential statements} [else sequence of sequential statements]

More information

COURSE DESIGN DISTANCE LEARNING COURSE. Certified Trainer for Financial Cooperatives (CTFC)

COURSE DESIGN DISTANCE LEARNING COURSE. Certified Trainer for Financial Cooperatives (CTFC) COURSE DESIGN DISTANCE LEARNING COURSE Certified Trainer for Financial Cooperatives (CTFC) CENTRE FOR PROFESSIONAL EXCELLENCE IN COOPERATIVES (C-PEC) BANKERS INSTITUTE OF RURAL DEVELOPMENT (BIRD) LUCKNOW

More information

INFORMATION AND COMMUNICATION TECHNOLOGY UNIT

INFORMATION AND COMMUNICATION TECHNOLOGY UNIT Surname Other Names Centre Number 0 Candidate Number GCSE 4331/01 INFORMATION AND COMMUNICATION TECHNOLOGY UNIT 1: Understanding ICT (Short Course) Information and Communication Technology UNIT 1: Understanding

More information

COURSE LISTING. Courses Listed. with SAP Hybris Marketing Cloud. 24 January 2018 (23:53 GMT) HY760 - SAP Hybris Marketing Cloud

COURSE LISTING. Courses Listed. with SAP Hybris Marketing Cloud. 24 January 2018 (23:53 GMT) HY760 - SAP Hybris Marketing Cloud with SAP Hybris Marketing Cloud Courses Listed HY760 - SAP Hybris Marketing Cloud C_HYMC_1702 - SAP Certified Technology Associate - SAP Hybris Marketing Cloud (1702) Implementation Page 1 of 12 All available

More information

PROFESSIONAL CERTIFICATES AND SHORT COURSES: MICROSOFT OFFICE. PCS.uah.edu/PDSolutions

PROFESSIONAL CERTIFICATES AND SHORT COURSES: MICROSOFT OFFICE. PCS.uah.edu/PDSolutions PROFESSIONAL CERTIFICATES AND SHORT COURSES: MICROSOFT OFFICE PCS.uah.edu/PDSolutions 256.824.4430 THE VALUE OF MICROSOFT TRAINING Today s professional workforce is expected to possess intermediate to

More information

I.A.C. - Italian Activity Contest.

I.A.C. - Italian Activity Contest. I.A.C. - Italian Activity Contest. RULES FOR 2017 I.A.C. EDITION. Scope: Main goal of the I.A.C. - Italian Activity Contest is to promote, encourage and support the use of the HAM bands from 50 MHz to

More information

CMIS 102 Hands-On Lab

CMIS 102 Hands-On Lab CMIS 10 Hands-On Lab Week 8 Overview This hands-on lab allows you to follow and experiment with the critical steps of developing a program including the program description, analysis, test plan, and implementation

More information

The CPA Exam and Requirements. Adapted and modified from material originally created by David Reinus.

The CPA Exam and Requirements. Adapted and modified from material originally created by David Reinus. The CPA Exam and Requirements Adapted and modified from material originally created by David Reinus. An extra $1,024,870 with a CPA license. Education Exam Experience Every state is unique Step 1 Step

More information

High Performance Computing

High Performance Computing High Performance Computing MPI and C-Language Seminars 2009 Photo Credit: NOAA (IBM Hardware) High Performance Computing - Seminar Plan Seminar Plan for Weeks 1-5 Week 1 - Introduction, Data Types, Control

More information

Funcom Multiplayer Online Games - FTP Site Statistics. Top 20 Directories Sorted by Disk Space

Funcom Multiplayer Online Games - FTP Site Statistics. Top 20 Directories Sorted by Disk Space Property Value FTP Server ftp.funcom.com Description Funcom Multiplayer Online Games Country United States Scan Date 13/Jul/2014 Total Dirs 186 Total Files 1,556 Total Data 67.25 GB Top 20 Directories

More information

CIMA Asia. Interactive Timetable Live Online

CIMA Asia. Interactive Timetable Live Online CIMA Asia Interactive Timetable 2018 Live Online Information version 8 last updated 04/05/18 Please note information and dates are subject to change. Premium Learning Partner 2018 CIMA Cert BA Course Overview

More information

Section 1.2: What is a Function? y = 4x

Section 1.2: What is a Function? y = 4x Section 1.2: What is a Function? y = 4x y is the dependent variable because it depends on what x is. x is the independent variable because any value can be chosen to replace x. Domain: a set of values

More information

Withdrawal of Text Processing (Business Professional)

Withdrawal of Text Processing (Business Professional) Withdrawal of Text Processing (Business Professional) OCR constantly reviews the uptake and performance of all its qualifications. As a regulated awarding body, we have a responsibility to remove qualifications

More information

Exam 2 ITEC 120 Principles of Computer Science I Spring: 2017

Exam 2 ITEC 120 Principles of Computer Science I Spring: 2017 Exam 2 ITEC 120 Principles of Computer Science I Spring: 2017 I will abide by the Radford University Honor Code. Name Signature On this exam, you may NOT use already written methods such as Character class

More information

GWDG Software Archive - FTP Site Statistics. Top 20 Directories Sorted by Disk Space

GWDG Software Archive - FTP Site Statistics. Top 20 Directories Sorted by Disk Space GWDG Software Archive - FTP Site Statistics Property Value FTP Server ftp5.gwdg.de Description GWDG Software Archive Country Germany Scan Date 18/Jan/2016 Total Dirs 1,068,408 Total Files 30,248,505 Total

More information

The CPA Exam and Requirements. Adapted and modified from material originally created by David Reinus.

The CPA Exam and Requirements. Adapted and modified from material originally created by David Reinus. The CPA Exam and Requirements Adapted and modified from material originally created by David Reinus. An extra $1,024,870 with a CPA license. Education Exam Experience Every state is unique Step 5 Step

More information

Macomnet Telecommunications - FTP Site Statistics. Top 20 Directories Sorted by Disk Space

Macomnet Telecommunications - FTP Site Statistics. Top 20 Directories Sorted by Disk Space Macomnet Telecommunications - FTP Site Statistics Property Value FTP Server mirror.macomnet.net Description Macomnet Telecommunications Country Russia Scan Date 19/Apr/2015 Total Dirs 19,599 Total Files

More information

Quatius Corporation - FTP Site Statistics. Top 20 Directories Sorted by Disk Space

Quatius Corporation - FTP Site Statistics. Top 20 Directories Sorted by Disk Space Property Value FTP Server ftp.quatius.com.au Description Quatius Corporation Country Australia Scan Date 03/Sep/2015 Total Dirs 133 Total Files 771 Total Data 9.61 GB Top 20 Directories Sorted by Disk

More information

Maintenance Coordinator SQL SERVERS EXPRESS REVISIONS 8x

Maintenance Coordinator SQL SERVERS EXPRESS REVISIONS 8x Current Patch: 8.0.2.5 IMPORTANT NOTE: At many times patches are added to the download without any notification. Also note that there may be fixes not recorded here. How to install update To install an

More information

COURSE LISTING. Courses Listed. Training for Cloud with SAP Cloud Platform in Development. 23 November 2017 (08:12 GMT) Beginner.

COURSE LISTING. Courses Listed. Training for Cloud with SAP Cloud Platform in Development. 23 November 2017 (08:12 GMT) Beginner. Training for Cloud with SAP Cloud Platform in Development Courses Listed Beginner CLD100 - Cloud for SAP Intermediate CP100 - SAP Cloud Platform Certification Exam C_CP_11 - SAP Certified Development Associate

More information

Freedom of Information Act 2000 reference number RFI

Freedom of Information Act 2000 reference number RFI P. Norris By email to: xxxxxxxxxxxxxxxxxxxxxx@xxxxxxxxxxxxxx.xxm 02 November 2011 Dear P. Norris Freedom of Information Act 2000 reference number RFI20111218 Thank you for your request under the Freedom

More information

The Hong Kong Polytechnic University Faculty of Engineering

The Hong Kong Polytechnic University Faculty of Engineering The Hong Kong Polytechnic University Faculty of Engineering Programme(s) : BEng(Hons) in Transportation Systems Engineering (41481, 41481SY) BSc(Hons) in Internet and Multimedia Technologies (42477) Higher

More information

COURSE LISTING. Courses Listed. Training for Database & Technology with Development in SAP Cloud Platform. 1 December 2017 (22:41 GMT) Beginner

COURSE LISTING. Courses Listed. Training for Database & Technology with Development in SAP Cloud Platform. 1 December 2017 (22:41 GMT) Beginner Training for Database & Technology with Development in SAP Cloud Platform Courses Listed Beginner CLD100 - Cloud for SAP Intermediate CP100 - SAP Cloud Platform Certification Exam C_CP_11 - SAP Certified

More information

Omega Engineering Software Archive - FTP Site Statistics. Top 20 Directories Sorted by Disk Space

Omega Engineering Software Archive - FTP Site Statistics. Top 20 Directories Sorted by Disk Space Omega Engineering Software Archive - FTP Site Statistics Property Value FTP Server ftp.omega.com Description Omega Engineering Software Archive Country United States Scan Date 14/Apr/2015 Total Dirs 460

More information

Automatic Renewal Using DIY Technology to Create an Improved Patron Experience

Automatic Renewal Using DIY Technology to Create an Improved Patron Experience Using DIY Technology to Create an Improved Patron Experience Samantha Jekot-Graham, Patron Experience Lead Phil Feilmeyer, System Integration What is automatic renewal? A service that automatically renews

More information

HPE Security Data Security. HPE SecureData. Product Lifecycle Status. End of Support Dates. Date: April 20, 2017 Version:

HPE Security Data Security. HPE SecureData. Product Lifecycle Status. End of Support Dates. Date: April 20, 2017 Version: HPE Security Data Security HPE SecureData Product Lifecycle Status End of Support Dates Date: April 20, 2017 Version: 1704-1 Table of Contents Table of Contents... 2 Introduction... 3 HPE SecureData Appliance...

More information

Introduction to Computer Programming for Non-Majors

Introduction to Computer Programming for Non-Majors Introduction to Computer Programming for Non-Majors CSC 2301, Fall 2015 Chapter 5 Part 1 The Department of Computer Science Objectives To understand the string data type and how strings are represented

More information

Conditional Formatting

Conditional Formatting Microsoft Excel 2013: Part 5 Conditional Formatting, Viewing, Sorting, Filtering Data, Tables and Creating Custom Lists Conditional Formatting This command can give you a visual analysis of your raw data

More information

Wisdom Master Pro (v2.0) User Guide for Students

Wisdom Master Pro (v2.0) User Guide for Students (v2.0) User Guide for Students e-campus Homepage 4 Log in to e-campus 6 Personal Area 6 I. My Courses... 6 II. My Portal... 12 III. My Profile... 16 IV. My Assignments... 18 V. My Tests... 19 VI. My Learning...

More information

software.sci.utah.edu (Select Visitors)

software.sci.utah.edu (Select Visitors) software.sci.utah.edu (Select Visitors) Web Log Analysis Yearly Report 2002 Report Range: 02/01/2002 00:00:0-12/31/2002 23:59:59 www.webtrends.com Table of Contents Top Visitors...3 Top Visitors Over Time...5

More information

Fill in your name, date of birth and registration number in the box below. SAMPLE

Fill in your name, date of birth and registration number in the box below. SAMPLE Functional Skills ICT Level 2 Sample Paper Fill in your name, date of birth and registration number in the box below. Surname: Gateway Qualifications registration number: Centre Name: Other Names DOB:

More information

Coaching emerit Certified Event Find out what level you are ready for and what you need to JHB

Coaching emerit Certified Event Find out what level you are ready for and what you need to JHB For more information on these courses, please visit www.exsaacademy.co.za/courses or contact 011 467 6771 or e-mail: info@exsaacademy.co.za DATE NAME OF COURSE COURSE OUTLINE WHERE DURATION MARCH 07-Mar

More information

ARRL RADIOGRAM A How To

ARRL RADIOGRAM A How To ARRL RADIOGRAM A How To EmComm East 2011 By John KB2SCS kb2scs@arrl.net With excerpts from the W3YVQ.v1.04-5/02 PSCM APP.-B NTS MPG-MESSAGE FORMAT ARRL publication FSD-3 (5/05) What we will learn today:

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

DXC FISS Logon Instructions and Password Requirements

DXC FISS Logon Instructions and Password Requirements DXC FISS Logon Instructions and Password Requirements Before accessing the FISS System, you must first connect through your Network Service Vendor. Then you will see the Centers For Medicare & Medicaid

More information

Annex A to the DVD-R Disc and DVD-RW Disc Patent License Agreement Essential Sony Patents relevant to DVD-RW Disc

Annex A to the DVD-R Disc and DVD-RW Disc Patent License Agreement Essential Sony Patents relevant to DVD-RW Disc Annex A to the DVD-R Disc and DVD-RW Disc Patent License Agreement Essential Sony Patents relevant to DVD-RW Disc AT-EP S95P0391 1103087.1 09-Feb-01 1126619 8/16 Modulation AT-EP S95P0391 1120568.9 29-Aug-01

More information

Grade 4 Mathematics Pacing Guide

Grade 4 Mathematics Pacing Guide Jul 2014 ~ August 2014 ~ Sep 2014 1 2 3 4 5 6 7 8 9 10 11 12 14 15 16 17 Routines 19 Routines 20 Routines BOY 22 BOY 23 24 11 12 14 29 15 30 31 Notes: Found Online @ wwweverydaymathonlinecom 1 More Calendars

More information

PowerSchool Parent Portal. Instructions

PowerSchool Parent Portal. Instructions PowerSchool Parent Portal Instructions What is the parent portal? Can view grades and attendance. Can view detailed assignment information if teachers utilize the teachers grade book. Can setup automatic

More information

SCHEDULED PROGRAMMES/COURSES APRIL 2017 MARCH 2018 (MIND KINGSTON / MANDEVILLE CAMPUSES & MONTEGO BAY)

SCHEDULED PROGRAMMES/COURSES APRIL 2017 MARCH 2018 (MIND KINGSTON / MANDEVILLE CAMPUSES & MONTEGO BAY) SCHEDULED PROGRAMMES/ IL CH 2 SCHEDULED PROGRAMMES/ IL CH Award Categories Certificate Advanced Records (Modules 1 5)** Auditing Fundamentals Level 1: Modules 1 4 (NEW) Budget Preparation & Effective Corporate

More information

DO NOT MAKE ANY CHANGES TO ANY FORMATING. (Font is Verdana ) UPLOAD IT ON MBAFOCUS IN PDF FORMAT.

DO NOT MAKE ANY CHANGES TO ANY FORMATING. (Font is Verdana ) UPLOAD IT ON MBAFOCUS IN PDF FORMAT. HEC MBA CV Career Center The document attached will provide you with the template and format required for your HEC CV. The template is filled with instructions and other place-holding information. You

More information

9713 APPLIED INFORMATION AND COMMUNICATION 9713/02 Paper 2 (Practical Test A), maximum raw mark 120

9713 APPLIED INFORMATION AND COMMUNICATION 9713/02 Paper 2 (Practical Test A), maximum raw mark 120 UNIVERSITY OF CAMBRIDGE INTERNATIONAL EXAMINATIONS GCE Advanced Subsidiary Level and GCE Advanced Level MARK SCHEME for the May/June 2009 question paper for the guidance of teachers 9713 APPLIED INFORMATION

More information

Figure 1 - The password is 'Smith'

Figure 1 - The password is 'Smith' Using the Puppy School Booking system Setting up... 1 Your profile... 3 Add New... 4 New Venue... 6 New Course... 7 New Booking... 7 View & Edit... 8 View Venues... 10 Edit Venue... 10 View Courses...

More information

CHRIS Introduction Guide

CHRIS Introduction Guide 1 Introduction... 3 1.1 The Login screen... 3 1.2 The itrent Home page... 5 1.2.1 Out of Office... 8 1.2.2 Default User Preferences... 9 1.2.3 Bookmarks... 10 1.3 The itrent Screen... 11 The Control Bar...

More information

Interim Report Technical Support for Integrated Library Systems Comparison of Open Source and Proprietary Software

Interim Report Technical Support for Integrated Library Systems Comparison of Open Source and Proprietary Software Interim Report Technical Support for Integrated Library Systems Comparison of Open Source and Proprietary Software Vandana Singh Assistant Professor, School of Information Science, University of Tennessee,

More information

Essentials. Week by. Week. All About Data. Algebra Alley

Essentials. Week by. Week. All About Data. Algebra Alley > Week by Week MATHEMATICS Essentials Algebra Alley Jack has 0 nickels and some quarters. If the value of the coins is $.00, how many quarters does he have? (.0) What s The Problem? Pebble Pebble! A pebble

More information

Mpoli Archive - FTP Site Statistics. Top 20 Directories Sorted by Disk Space

Mpoli Archive - FTP Site Statistics. Top 20 Directories Sorted by Disk Space Mpoli Archive - FTP Site Statistics Property Value FTP Server ftp.mpoli.fi Description Mpoli Archive Country Finland Scan Date 01/Nov/2015 Total Dirs 52,408 Total Files 311,725 Total Data 28.53 GB Top

More information

Instructor training course schedule v3 Confirmed courses due completion by 31 st July 2019

Instructor training course schedule v3 Confirmed courses due completion by 31 st July 2019 Confirmed courses due completion by 31 st July 2019 Courses: 2 Orientation 2 IoT Fundamentals 2 Networking Essentials 2 Cybersecurity Essentials 2 IT Essentials: PC Hardware and Software 2 CCNA Routing

More information

History. used in early Mac development notable systems in Pascal Skype TeX embedded systems

History. used in early Mac development notable systems in Pascal Skype TeX embedded systems Overview The Pascal Programming Language (with material from tutorialspoint.com) Background & History Features Hello, world! General Syntax Variables/Data Types Operators Conditional Statements Functions

More information

Previous Intranet Initial intranet created in 2002 Created solely by Information Systems Very utilitarian i Created to permit people to access forms r

Previous Intranet Initial intranet created in 2002 Created solely by Information Systems Very utilitarian i Created to permit people to access forms r ACHIEVA Cafe Steve McDonell Previous Intranet Initial intranet created in 2002 Created solely by Information Systems Very utilitarian i Created to permit people to access forms remotely Not much content

More information

SCHEDULED PROGRAMMES/COURSES APRIL 2018 MARCH 2019 (MIND KINGSTON / MANDEVILLE CAMPUSES & MONTEGO BAY)

SCHEDULED PROGRAMMES/COURSES APRIL 2018 MARCH 2019 (MIND KINGSTON / MANDEVILLE CAMPUSES & MONTEGO BAY) SCHEDULED PROGRAMMES/ IL CH 2 SCHEDULED PROGRAMMES/ IL CH Award Categories Certificate Advanced Records : Modules 1 5** Audit Fundamentals: Modules 1 4 Budget Preparation & Effective Corporate Governance

More information

Polycom Advantage Service Endpoint Utilization Report

Polycom Advantage Service Endpoint Utilization Report Polycom Advantage Service Endpoint Utilization Report ABC Company 9/1/2018-9/30/2018 Polycom, Inc. All rights reserved. SAMPLE REPORT d This report is for demonstration purposes only. Any resemblance to

More information

How It All Stacks Up - or - Bar Charts with Plotly. ISC1057 Janet Peterson and John Burkardt Computational Thinking Fall Semester 2016

How It All Stacks Up - or - Bar Charts with Plotly. ISC1057 Janet Peterson and John Burkardt Computational Thinking Fall Semester 2016 * How It All Stacks Up - or - Bar Charts with Plotly ISC1057 Janet Peterson and John Burkardt Computational Thinking Fall Semester 2016 In a game of poker, players bet by tossing chips into the center

More information

Typically, Associations will have access to all the modes and clubs will have access to Organisation, Competition, Participation and Websites.

Typically, Associations will have access to all the modes and clubs will have access to Organisation, Competition, Participation and Websites. Adding & Deleting Users in MyNetball The first step in the process to have a new committee member added as an IT user in MyNetball is to complete the IT user agreement form. The link below will direct

More information

Math Computer Price Project

Math Computer Price Project Math 113 - Computer Price Project This is a semester long project involving many of the aspects of Statistics. It can also serve as an example for the project that students will have to perform during

More information

What you learned so far. Loops & Arrays efficiency for statements while statements. Assignment Plan. Required Reading. Objective 2/3/2018

What you learned so far. Loops & Arrays efficiency for statements while statements. Assignment Plan. Required Reading. Objective 2/3/2018 Loops & Arrays efficiency for statements while statements Hye-Chung Kum Population Informatics Research Group http://pinformatics.org/ License: Data Science in the Health Domain by Hye-Chung Kum is licensed

More information

Eindhoven University of Technology - FTP Site Statistics. Top 20 Directories Sorted by Disk Space

Eindhoven University of Technology - FTP Site Statistics. Top 20 Directories Sorted by Disk Space Eindhoven University of Technology - FTP Site Statistics Property Value FTP Server ftp.tue.nl Description Eindhoven University of Technology Country Netherlands Scan Date 10/May/2014 Total Dirs 129 Total

More information

CSE 341 Section Handout #6 Cheat Sheet

CSE 341 Section Handout #6 Cheat Sheet Cheat Sheet Types numbers: integers (3, 802), reals (3.4), rationals (3/4), complex (2+3.4i) symbols: x, y, hello, r2d2 booleans: #t, #f strings: "hello", "how are you?" lists: (list 3 4 5) (list 98.5

More information

Polycom Advantage Service Endpoint Utilization Report

Polycom Advantage Service Endpoint Utilization Report Polycom Advantage Service Endpoint Utilization Report ABC Company 3/1/2016-3/31/2016 Polycom, Inc. All rights reserved. SAMPLE REPORT d This report is for demonstration purposes only. Any resemblance to

More information

Programming for Engineers Structures, Unions

Programming for Engineers Structures, Unions Programming for Engineers Structures, Unions ICEN 200 Spring 2017 Prof. Dola Saha 1 Structure Ø Collections of related variables under one name. Ø Variables of may be of different data types. Ø struct

More information

CSE 100: HASHING, BOGGLE

CSE 100: HASHING, BOGGLE CSE 100: HASHING, BOGGLE Probability of Collisions If you have a hash table with M slots and N keys to insert in it, then the probability of at least 1 collision is: 2 The Birthday Collision Paradox 1

More information

All King County Summary Report

All King County Summary Report September, 2016 MTD MARKET UPDATE Data Current Through: September, 2016 18,000 16,000 14,000 12,000 10,000 8,000 6,000 4,000 2,000 0 Active, Pending, & Months Supply of Inventory 15,438 14,537 6.6 6.7

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

YOUR BUSINESS Networking Lunch & Vendor Fair

YOUR BUSINESS Networking Lunch & Vendor Fair 10th Annual YOUR BUSINESS Networking Lunch & Vendor Fair THURSDAY, FEBRUARY 8, 2018 9:30 AM - 2 PM OPEN TO THE PUBLIC - Tell your Customers! The Center for Visual & Performing Arts, 1040 Ridge Rd., Munster

More information

AVM Networks - FTP Site Statistics. Top 20 Directories Sorted by Disk Space

AVM Networks - FTP Site Statistics. Top 20 Directories Sorted by Disk Space Property Value FTP Server ftp.avm.de Description AVM Networks Country Germany Scan Date 12/May/2014 Total Dirs 2,056 Total Files 2,698 Total Data 39.66 GB Top 20 Directories Sorted by Disk Space Name Dirs

More information

Caribbean Secondary Education Examination

Caribbean Secondary Education Examination FORM TP22230 Test Code 012299020 Mock Exam (March) 2013 CARIBBEAN EXAMINATIONS COUNCIL Caribbean Secondary Education Examination INFORMATION TECHNOLOGY PAPER 2 2 Hours March 2013 (a.m.) I N S T R U C T

More information

Statistical Charts and Graphs. June 1, 2012

Statistical Charts and Graphs. June 1, 2012 Statistical Charts and Graphs June 1, 212 Part 1 The Collections Titles Held by Helen Hall Library Titles Held Music, 84 Serials, 1462 MRDFs, 5 Maps, 6 eaudiobooks, 3623 Audiobooks, 361 ebooks, 1118 CDs,

More information

Obtaining and Managing IP Addresses. Xavier Le Bris IP Resource Analyst - Trainer

Obtaining and Managing IP Addresses. Xavier Le Bris IP Resource Analyst - Trainer Obtaining and Managing IP Addresses Xavier Le Bris IP Resource Analyst - Trainer In This Talk 2 Getting IPv4 and IPv6 IPv4 Transfers Protecting Your Resources The RIPE Policy Development Process (PDP)

More information

Creating User-Friendly Databases

Creating User-Friendly Databases Creating User-Friendly Databases Chapter 8 Databases are often created by a small number of people then used by a larger number of others. Often these people do not know how to use all the features of

More information

BANGLADESH UNIVERSITY OF PROFESSIONALS ACADEMIC CALENDAR FOR MPhil AND PHD PROGRAM 2014 (4 TH BATCH) PART I (COURSE WORK)

BANGLADESH UNIVERSITY OF PROFESSIONALS ACADEMIC CALENDAR FOR MPhil AND PHD PROGRAM 2014 (4 TH BATCH) PART I (COURSE WORK) BANGLADESH UNIVERSITY OF PROFESSIONALS ACADEMIC CALENDAR FOR MPhil AND PHD PROGRAM 2014 (4 TH BATCH) DAY Soci-Economic and Political History of Bangladesh PART I (COURSE WORK) 1 ST SEMESTER 2 ND SEMESTER

More information

Arrays: The How and the Why of it All Jane Stroupe

Arrays: The How and the Why of it All Jane Stroupe Arrays: The How and the Why of it All Jane Stroupe When you need to join data sets, do you even ask yourself Why don t I just use an array? Perhaps because arrays are a mystery or perhaps because you have

More information

Lecture 16. Reading: Weiss Ch. 5 CSE 100, UCSD: LEC 16. Page 1 of 40

Lecture 16. Reading: Weiss Ch. 5 CSE 100, UCSD: LEC 16. Page 1 of 40 Lecture 16 Hashing Hash table and hash function design Hash functions for integers and strings Collision resolution strategies: linear probing, double hashing, random hashing, separate chaining Hash table

More information

Designing Adhoc Reports

Designing Adhoc Reports Designing Adhoc Reports Intellicus Web-based Reporting Suite Version 4.5 Enterprise Professional Smart Developer Smart Viewer Intellicus Technologies info@intellicus.com www.intellicus.com Copyright 2009

More information

Definition: Data Type A data type is a collection of values and the definition of one or more operations on those values.

Definition: Data Type A data type is a collection of values and the definition of one or more operations on those values. Data Types 1 Definition: Data Type A data type is a collection of values and the definition of one or more operations on those values. Base Data Types All the values of the type are ordered and atomic.

More information