NOT FOR USE AS AN EXAM SAMPLE COPY - CS(H)15A. National Qualifications. Computing Science D D M M Y Y. Mark. Total marks 90

Size: px
Start display at page:

Download "NOT FOR USE AS AN EXAM SAMPLE COPY - CS(H)15A. National Qualifications. Computing Science D D M M Y Y. Mark. Total marks 90"

Transcription

1 FOR OFFICIAL USE National Qualifications Mark CS(H)15A Computing Science Duration 2 hours Fill in these boxes and read what is printed below. Full name of centre Town Forenames(s) Surname Number of seat Date of birth Day Month Year Scottish candidate number D D M M Y Y Total marks 90 SECTION 1 20 marks Attempt ALL questions. SECTION 2 70 marks Attempt ALL questions. Show all workings. Write your answers clearly in the spaces provided in this booklet. Additional space for answers is provided at the end of this booklet. If you use this space you must clearly identify the question number you are attempting. Use blue or black ink. Before leaving the examination room you must give this booklet to the invigilator. If you do not, you may lose all marks for this paper Perfect Papers All rights reserved

2 SECTION 1 20 marks Attempt ALL questions 1. Paul has typed this line of code in his program. Line 201: echo "Your value is ". $score When the code is translated his translation software displays this message: Error found on Line 201: incomplete statement, end of line found - ; expected State the type of programming error that Paul has made Programs make use of parameter passing. Explain the difference between passing a parameter by reference and passing a parameter by value A section of code has been written which examines an array of fifty values. Line 1 SET top TO values[1] 2 FOR index FROM 2 TO 50 3 IF values[index] > top THEN 4 top = values[index] 5 END IF 6 END FOR (a) State the name of the standard algorithm which is shown above. 1 Page two

3 3. (b) When this program is run, the value for top is held in a register. Other than storing a piece of data, state another item that a register could hold Explain the term function This image of a cat is stored in 256 shades of grey. Explain how this image would be stored as a bit-mapped graphic In the design of electronic documents it is important to separate the formatting of the document from the structure of the document. Explain how this is achieved in web page design. 2 Page three

4 7. A sports shop has a database. A table in the database is shown below. item_code category qty_in_stock sale_price description XT3 Training Skipping Rope FG5 Equipment Cross trainer FG5 Training Cross-trainer XT3 Hiking Hiking Boots TR6 Hiking Hiking Boots State a suitable compound primary key for this table Explain how usability testing would be used in the design of a new mobile phone interface Describe a typical phishing attempt (a) State the meaning of the term open source. 1 (b) Other than cost of licensing, state an advantage of using open source software rather than proprietary software. 1 Page four

5 SECTION 2 70 marks Attempt ALL questions 11. A program has been written to find the location of a requested value in a list, however the program does not return the correct location. The algorithm responsible is shown below. Line 1 SET dataset TO [72,34,19,73,52,28] 2 SET location TO 99 3 SET find TO 72 4 FOR counter = 1 TO 6 5 IF dataset[counter] = find THEN 6 SET counter TO location 7 END IF 8 END FOR (a) Line 1 shows the use of a 1-D array to store the list of values, rather than eight individual variables. State two advantages of using a 1-D array to store the list of values. 2 (b) A trace table is being used to record the changes to variables when stepping through the code. (Line 5 does not change a variable s value and so it not included.) Line dataset find location counter 1 [72,34,19,73,52,28] (i) Complete the information in the table above, recording the value assigned to the variable for line 2, 3, 4 and 6. 3 Page five

6 11. (b) (continued) (ii) Explain why the location is never correctly given. 2 (iii) Describe how the algorithm should be corrected. 2 (c) (i) The program is halted at line 4 to allow it to be debugged. State the feature of the software development environment that allows a program s execution to be halted. 1 (ii) Describe how halting the execution of the program will assist with finding errors in the program. 2 Page six

7 12. Gordon is a computing science teacher and is creating a program that delivers a multiple-choice test to his pupils. The test will contain thirty questions and each question has only one correct answer. The test is created in a text file and a sample from the file is shown below: question_text option_a option_b option_c option_d answer What are web pages HTML CSS Java C++ A written with? What is used to view a web page? media player text editor browser debugger C (a) Gordon creates a record data structure for each question. (i) Define a suitable record for a question. 3 (ii) Declare a variable that can store the thirty questions. 2 (b) When running the program an error occurs when reading the file. State one example of an execution error that could occur when reading the text file. 1 Page seven

8 12. (continued) (c) When a pupil uses the program his/her answers are stored in a 1-D array called pupil_answers. pupil_answers A C B Using pseudocode or a language with which you are familiar, write an algorithm for a subroutine that will: Initialise the value for the variable mark calculate the mark from the answers given display the mark on screen. Your algorithm should make use of the variable from (a)(ii). 4 Page eight

9 13. A function is being developed to calculate information about visits to Edinburgh Castle on particular days depending on the weather. (a) The function will make use of formal and actual parameters. Explain each of these terms. 2 (b) Explain how a method is different from a function. 2 Page nine

10 13. (continued) (c) Visitor statistics are recorded for the previous 28 days. For each day, the statistics include the number of visitors on that day and the number of hours of sunshine. Some of the data is shown below: Day Visitors Hours of sunshine The number of visitors for each day is held in an array called visitors and the number of hours of sunshine in sunhours. Using pseudocode or a language with which you are familiar, write an algorithm to count the number of days where the visitor count was greater than 5000 and there were 6 or more hours of sunshine and write this number of days to a text file called sunnydays. 5 Page ten

11 13. (continued) (d) An upgrade is made to the program that the visitor calculator function is part of. When the upgrade is completed it is tested using a virtual machine. Describe two other reasons why a user would use a virtual machine rather than a real computer system. 2 (e) The upgrade was created using Aglie methodologies. Describe two key features of Agile methodologies for software development. 2 Page eleven

12 14. GameOn is an online service which allows computer gamers to record and stream their computer game play in real time to others. The service uses a dynamic database-driven website to display the range of channels and video streams available to viewers. Details of each channel and video are held in a relational database. (a) (i) From the information in the above screenshot, identify two database tables that would be stored in the relational database. 2 (ii) For one of these tables identify three possible attributes and complete the following data dictionary. Table name: Fieldname Type Size 3 Page twelve

13 Question 14. (continued) (b) The GameOn web site is hosted in the public cloud. Explain two advantages of using a public cloud to deploy a site of this kind. 2 (c) Some changes are required to the layout of the site and some new CSS rules are required. Class Font Size (px) Colour (Hex) Style.headings Verdana 14 #FF3399 italic Create a CSS rule using the information in the table above. 3 (d) Compression techniques are applied to the videos on the site. Explain the impact on a stored video of using a lossy compression technique. 2 Page thirteen

14 15. Krazy Karts is a company which organises go-kart driver training and races. Customers can book a course of training sessions with a trainer. At the end of each session each customer in the session races against the others and the trainer records the finishing positions each week. All the information for the company is held in a database with the following tables and fields. Customer League CustomerCourse Course Customer No Customer Name Address LeagueTitle LeagueContact League Gender LeagueTitle*) Date Course Code* Position Customer No* Course Code Course Title Trainer (a) Using the information above create an entity relationship diagram of the Krazy Karts database system. 4 Page fourteen

15 Question 15 (continued) (b) The following report is produced for the system. Customer No: 621 Customer Name: C. Burton Date Course Code Course Title Position 17/02/2014 C cc Karts 4 25/02/2014 C cc Karts 8 05/03/2014 C cc Karts 1 12/03/2014 C cc Karts 3 Describe how the company would use the database software to produce this report. 5 (c) The following form is used to enter the details of customers enrolling. Customer No 123 Customer Name Address Gender League Title* C. Burton 3 Whinfell Lane, Glasgow, G4 6TY c.burton@fre .com Male Super Karts Describe two ways of improving the usability of this form. 2 Page fifteen

16 Question 15 (continued) (d) Explain how the Communications Act (2003) applies to Krazy Karts when they use to market their service to customers. 2 (e) Krazy Karts are environmentally friendly and use lifetime carbon footprint when considering their impact on the environment. Describe what is meant by lifetime carbon footprint in relation to computer systems. 2 Page sixteen

17 16. A web developer has been asked to maintain the web site of a company. (a) The website has been attacked a number of times. On investigation, the web developer finds that the data submitted to the site from web forms is only validated at the client-side. (i) Explain why this allows the site to be attacked. 2 (ii) Explain why server-side validation of online form data would be effective protection against attack. 2 (b) The web developer has been asked to update the web site so that it is displayed correctly on mobile, tablet and desktop computers. The web developer did this using a single cascading style sheet (CSS). Explain how CSS was used to ensure that the site displayed correctly on each device. 2 Page seventeen

18 Question 16 (continued) (c) The web developer has also been asked to ensure that the site is optimised for web search. The following extract of code is from one of the site pages. <html> <head> <title>company Page 1</title> </head> <body> <div class="logoheading"> <img src="mainlogo.png" /> </div> Describe two ways that the web developer could improve this page to ensure it is optimised for web search. 2 (d) For security the company makes use of a digital certificate on their web site. Explain how the use of a digital certificate would reassure users when using a web site. 2 [END OF QUESTION PAPER] Page eighteen

19 [B ADDITIONAL SPACE FOR ANSWERS Page nineteen

20 ADDITIONAL SPACE FOR ANSWERS Page twenty

CS(H)15AMS Computing Science

CS(H)15AMS Computing Science National Qualifications CS(H)15AMS Computing Science Marking Instructions 2014 Perfect Papers All rights reserved Perfect Papers General Marking Principles for Higher Computing Science This information

More information

CS(N5)16A Computing Science

CS(N5)16A Computing Science FOR OFFICIAL USE National Qualifications Mark CS(N5)16A Computing Science Duration 1 hour and 30 mins Fill in these boxes and read what is printed below. Full name of centre Town Forenames(s) Surname Number

More information

CS(AH)17 Computing Science

CS(AH)17 Computing Science FOR OFFICIAL USE National Qualifications Mark CS(AH)17 Computing Science Duration 2 hours Fill in these boxes and read what is printed below. Full name of centre Town Forenames(s) Surname Number of seat

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

CS(AH)16 Computing Science

CS(AH)16 Computing Science FOR OFFICIAL USE National Qualifications Mark CS(AH)16 Computing Science Duration 2 hours Fill in these boxes and read what is printed below. Full name of centre Town Forenames(s) Surname Number of seat

More information

National Quali cations 2018

National Quali cations 2018 H FOR X76/76/0 OFFICIAL USE National Quali cations 08 Mark Computing Science TUESDAY, 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

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

How to convert a numeric value into English words in Excel

How to convert a numeric value into English words in Excel How to convert a numeric value into English words in Excel (Microsoft Office Excel 2003, Microsoft Office Excel 2007, Microsoft Excel 2010, Excel 2016, Microsoft Excel 2013) Summary This article contains

More information

Primary Source Verification. How to Apply

Primary Source Verification. How to Apply Primary Source Verification Dubai Corporation for Ambulance Services (DCAS) How to Apply A Step By Step Guide for Completing Your Application If you are a new applicant, follow the instructions from step

More information

Course Directive Degree Audit Exception

Course Directive Degree Audit Exception Course Directive Degree Audit Exception This guide will cover: How to add or remove a course from a requirement line in a student's degree audit. Step One Navigate to the following breadcrumb: Step Two

More information

Quali cations. Forename(s) Surname Number of seat

Quali cations. Forename(s) Surname Number of seat FOR OFFICIAL USE Quali cations N5National 05 X76/75/0 Mark Computing Science WEDNESDAY, 6 MAY 9:00 AM 0:30 AM *X76750* Fill in these boxes and read what is printed below. Full name of centre Town Forename(s)

More information

National 5 Computing Science Assignment Assessment task

National 5 Computing Science Assignment Assessment task National 5 Computing Science Assignment Assessment task Specimen valid from session 2017 18 and until further notice. This edition: August 2017 (version 1.0) The information in this publication may be

More information

SAMPLE RESOURCE. dotty share prices

SAMPLE RESOURCE. dotty share prices BUSINESS dotty share prices Overview This activity tests students knowledge of the factors that cause movements in share prices, in a way that learners should enjoy. It is probably best done after some

More information

Web Design Course Syllabus and Planner

Web Design Course Syllabus and Planner Web Design Course Syllabus and Planner Updated May, 2018 Course Overview The Web Design curriculum is a one-year (two-semester) course covering required topics in most introductory Web Design settings.

More information

HIGHER PRELIM REVISION

HIGHER PRELIM REVISION Carter s Carriage is a transport company which operates a fleet of vans carrying goods between 25 depots throughout the country. Every trip follows one of a number of set routes between an origin depot

More information

CISC2000/ of 6

CISC2000/ of 6 CISC2000/2010 1 of 6 Lecture 3 Fall 2018 Prof. Zhang Last week: 1. Three aspects of programming: a) programming language (syntax and semantics) b) problem solving skills (divide and conquer, step-wise

More information

National Quali cations

National Quali cations National Quali cations AH2017 X716/77/11 Computing Science TUESDAY, 16 MAY 1:00 PM 3:00 PM Total marks 60 Attempt ALL questions. Write your answers clearly in the answer booklet provided. In the answer

More information

Hello! My name is PC and I am learning how to use a computer. Let s learn together! Unit1

Hello! My name is PC and I am learning how to use a computer. Let s learn together! Unit1 Hello! My name is PC and I am learning how to use a computer. Let s learn together! Unit1 The Computer Parts of a Computer The Mouse Disks What Can You Do? Programs Windows Parts of a Computer A computer

More information

Reports 9i. Section Title Page

Reports 9i. Section Title Page One Introduction to 2 What is? 3 Destinations 5 Report Extensions in 6 Running Reports 7 Creating Dynamic Reports 8 Two Builder 9 Starting 10 Object Navigator 13 Object Navigator (Reports) 15 Object Navigator

More information

Homeschool Programming, Inc.

Homeschool Programming, Inc. Online Course Overview Course Title: TeenCoder: Java Programming TeenCoder: Java Programming Online Course Syllabus and Planner Updated November, 2015 Online ISBN: 978-0-9887070-2-3, published 2015 by

More information

Parent s Guide to GO Math! Technology Correlation

Parent s Guide to GO Math! Technology Correlation hmhco.com Parent s Guide to GO Math! Technology Correlation Grade K Not sure how to help your child with homework? Looking for extra practice to help your child succeed? GO Math! Grade K has a variety

More information

17. [Exploring Numbers]

17. [Exploring Numbers] . [Exploring Numbers] Skill. Comparing whole numbers. Compare the size of the digits in the same place, one at a time. Work from left to right across each number. Q. Which number is the A ) 06 B ) 60 C

More information

MTK smartphone Multiple downloading tool operating instructions

MTK smartphone Multiple downloading tool operating instructions MTK smartphone Multiple downloading tool operating instructions Note: 6.0 upgrade, first power off the phone and plug the data cable directly; 7.0 upgrade(the same way to upgrade from 6.0 to 7.0), first

More information

24 Week Marketing & Selling System

24 Week Marketing & Selling System 24 Week Marketing & Selling System Property Address: Seller Name/s: Seller Phone #: Listing Price: Lockbox # Listing Dates: Shackle Code: Listing Online Marketing Listing packet completed Pictures taken.

More information

Computing Science: National 5 and Higher skills, knowledge and understanding

Computing Science: National 5 and Higher skills, knowledge and understanding Software design and development Development methodologies Analysis Design Describe and implement the phases of an iterative development process: analysis, design, implementation, testing, documentation,

More information

Web Programming and Design. MPT Junior Cycle Tutor: Tamara Demonstrators: Aaron, Marion, Hugh

Web Programming and Design. MPT Junior Cycle Tutor: Tamara Demonstrators: Aaron, Marion, Hugh Web Programming and Design MPT Junior Cycle Tutor: Tamara Demonstrators: Aaron, Marion, Hugh Plan for the next 5 weeks: Introduction to HTML tags Recap on HTML and creating our template file Introduction

More information

AP Computer Science A Syllabus

AP Computer Science A Syllabus This syllabus #1829769v1 was reviewed and approved by the College Board in Nov, 2016.. AP Computer Science A Syllabus Last updated November, 2016 Course Overview This AP Computer Science A class uses the

More information

Java Programming with Eclipse

Java Programming with Eclipse One Introduction to Java 2 Usage of Java 3 Structure of Java 4 Flexibility of Java Programming 5 Using the Eclipse Software 6 Two Running Java in Eclipse 7 Introduction 8 Using Eclipse 9 Workspace Launcher

More information

Web site for sports team clubs and leagues. User Manual. PhpMySport. PhpMySport v1.0 released on 10/25/2006

Web site for sports team clubs and leagues. User Manual. PhpMySport. PhpMySport v1.0 released on 10/25/2006 Web site for sports team clubs and leagues User Manual PhpMySport PhpMySport v1.0 released on 10/25/2006 Open source software distributed under GNU/GPL license Copyright 2006 Table of contents Table of

More information

Digital codes. Resources and methods for learning about these subjects (list a few here, in preparation for your research):

Digital codes. Resources and methods for learning about these subjects (list a few here, in preparation for your research): Digital codes This worksheet and all related files are licensed under the Creative Commons Attribution License, version 1.0. To view a copy of this license, visit http://creativecommons.org/licenses/by/1.0/,

More information

Computer Programming

Computer Programming AQA Level 3 Technical Level IT Computer Programming Unit Number: F/507/6465 Specimen Question Paper Materials For this paper you must have: Pens Pencils Instructions Use black ink or black ball-point pen

More information

FRIDAY, 3 JUNE 9.00 AM AM

FRIDAY, 3 JUNE 9.00 AM AM X06/30 NATIONAL QUALIFICATIONS 0 FRIDAY, 3 JUNE 9.00 AM.30 AM COMPUTING HIGHER Attempt all questions in Section I. Attempt all questions in Section II. Attempt one sub-section of Section III. Part A Artificial

More information

BCS THE CHARTERED INSTITUTE FOR IT. BCS HIGHER EDUCATION QUALIFICATIONS BCS Level 6 Professional Graduate Diploma in IT WEB ENGINEERING

BCS THE CHARTERED INSTITUTE FOR IT. BCS HIGHER EDUCATION QUALIFICATIONS BCS Level 6 Professional Graduate Diploma in IT WEB ENGINEERING BCS THE CHARTERED INSTITUTE FOR IT BCS HIGHER EDUCATION QUALIFICATIONS BCS Level 6 Professional Graduate Diploma in IT WEB ENGINEERING Tuesday 28 th March 2017 - Afternoon Answer any THREE questions out

More information

NCC EDUCATION INTERNATIONAL DIPLOMA IN COMPUTER STUDIES SYSTEMS DEVELOPMENT. 5 th June 2005

NCC EDUCATION INTERNATIONAL DIPLOMA IN COMPUTER STUDIES SYSTEMS DEVELOPMENT. 5 th June 2005 NCC EDUCATION INTERNATIONAL DIPLOMA IN COMPUTER STUDIES SYSTEMS DEVELOPMENT 5 th June 2005 SECTION A - 1 Answer all questions from this section. Each question requires ONE response only. SECTION A - 2

More information

Math in Focus Vocabulary. Kindergarten

Math in Focus Vocabulary. Kindergarten Math in Focus Vocabulary Kindergarten Chapter Word Definition 1 one 1 * 1 two 2 * * 1 three 3 * * * 1 four 4 * * * * 1 five 5 * * * * * 1 same things that have a common property 1 different things that

More information

IT Skills. May Examination Paper. Time: 2 hours

IT Skills. May Examination Paper. Time: 2 hours IT Skills May 206 Examination Paper Answer ALL questions. All answers should be produced on your PC and printed as directed in the paper. Time: 2 hours The maximum mark for this paper is 00. Any reference

More information

APMP The APM Project Management Qualification. Guide for Candidates DRAFT

APMP The APM Project Management Qualification. Guide for Candidates DRAFT APMP The APM Project Management Qualification Guide for Candidates Contents Introduction 3 Applying for the examination 3 Examination advice 4 Examination materials 4 Examination procedure 5 3 hour examination

More information

Forms 10g. Section Title Page

Forms 10g. Section Title Page One Introduction to Forms 2 Two Running Forms in 10g 4 Starting OC4J Instance 5 Run a Form on the Web 9 Run Form Parameters 11 Three Using in a Browser 18 Browser Interface 19 Browser Menu Bar 20 Menu

More information

CPT1. Unit 1 Computer Systems, Programming and Networking Concepts. General Certificate of Education January 2004 Advanced Subsidiary Examination

CPT1. Unit 1 Computer Systems, Programming and Networking Concepts. General Certificate of Education January 2004 Advanced Subsidiary Examination Surname Other Names Leave blank Centre Number Candidate Number Candidate Signature General Certificate of Education January 2004 Advanced Subsidiary Examination COMPUTING Unit 1 Computer Systems, Programming

More information

National Quali cations

National Quali cations National Quali cations AH07 X76/77/ Computing Science TUESDAY, 6 MAY :00 PM :00 PM Total marks 60 Attempt ALL questions. Write your answers clearly in the answer booklet provided. In the answer booklet

More information

Project Risk Management Single Subject Certificate Level 2. Guide for candidates

Project Risk Management Single Subject Certificate Level 2. Guide for candidates Project Risk Management Single Subject Certificate Level 2 Guide for candidates Introduction. 3 Applying for an exam. 4 Completing your application form.. 4 Taking the exam 5 Exam rules 5 Exam materials...

More information

PMP Certification Preparatory Course

PMP Certification Preparatory Course PMP Certification Preparatory Course Client Relation Officer Ewa Kazimierczuk Tel. 508 018 380 ewa.kazimierczuk@pl.ey.com Dates: Warszawa, 8-10 October 2018 5-6 November 2018 Price: 5000 PLN net or 1140

More information

Preparing to Submit an Abstract for PETEX 2018

Preparing to Submit an Abstract for PETEX 2018 Preparing to Submit an Abstract for PETEX 2018 Before you register for the abstract submissions system, you may wish to prepare your abstract so you are ready to submit it. You can download a copy of the

More information

PMP Certification Preparatory Course

PMP Certification Preparatory Course PMP Certification Preparatory Course Why Project Management Professional (PMP ) Certification? In today's flexible organization, the boundaries between functions are becoming less defined. You are most

More information

Specific marking instructions

Specific marking instructions Specific marking instructions 1 Database design and development part A 1a One mark for identifying: employee number The candidate was 2 marks because they have correctly identified all the required attributes.

More information

Mathematics 43601F. Transformations. In the style of General Certificate of Secondary Education Foundation Tier. Past Paper Questions by Topic TOTAL

Mathematics 43601F. Transformations. In the style of General Certificate of Secondary Education Foundation Tier. Past Paper Questions by Topic TOTAL Centre Number Surname Candidate Number For Examiner s Use Other Names Candidate Signature Examiner s Initials In the style of General Certificate of Secondary Education Foundation Tier Pages 2 3 4 5 Mark

More information

HIGHER PRELIM REVISION

HIGHER PRELIM REVISION Carter s Carriage is a transport company which operates a fleet of vans carrying goods between 25 depots throughout the country. Every trip follows one of a number of set routes between an origin depot

More information

HIGHER. Computing Science. Web Design & Development Implementation Tasks. Ver 8.9

HIGHER. Computing Science. Web Design & Development Implementation Tasks. Ver 8.9 HIGHER Computing Science MADRAS COLLEGE St. Andrews Web Design & Development Ver 8.9 Contents Introduction What s included in this Booklet? 2 Page Web 1 Setting up the Pages for the Student Cooking Website

More information

CDYNE Demographics Web Service

CDYNE Demographics Web Service CDYNE Demographics Web Service Version 2.1 WSDL: http://ws.cdyne.com/demographixws/demographixquery.asmx?wsdl Testing URL: http://ws.cdyne.com/demographixws/demographixquery.asmx Developer Resources: http://wiki.cdyne.com/index.php/demographics

More information

Java 1.8 Programming

Java 1.8 Programming One Introduction to Java 2 Usage of Java 3 Structure of Java 4 Flexibility of Java Programming 5 Two Running Java in Dos 6 Using the DOS Window 7 DOS Operating System Commands 8 Compiling and Executing

More information

2018 Computing Science Assignment National 5. Finalised Marking Instructions

2018 Computing Science Assignment National 5. Finalised Marking Instructions 2018 Computing Science Assignment National 5 Finalised Marking Instructions Scottish Qualifications Authority 2018 The information in this publication may be reproduced to support SQA qualifications only

More information

APMP. The APM Project Management Qualification. Guide for Candidates

APMP. The APM Project Management Qualification. Guide for Candidates APMP The APM Project Management Qualification Guide for Candidates Contents Introduction 3 Applying for the examination 3 Examination advice 4 Examination materials 4 Examination process 5 3 hour examination

More information

*X206/11/01* X206/11/01 COMPUTING INTERMEDIATE 2 NATIONAL QUALIFICATIONS 2015 WEDNESDAY, 6 MAY 9.00 AM AM

*X206/11/01* X206/11/01 COMPUTING INTERMEDIATE 2 NATIONAL QUALIFICATIONS 2015 WEDNESDAY, 6 MAY 9.00 AM AM X06//0 NATIONAL QUALIFICATIONS 05 WEDNESDAY, 6 MAY 9.00 AM 0.30 AM COMPUTING INTERMEDIATE Attempt Section I and Section II and one Part of Section III. Section I Attempt all questions. Section II Attempt

More information

COMP2 (JAN10COMP201) General Certificate of Education Advanced Subsidiary Examination January 2010

COMP2 (JAN10COMP201) General Certificate of Education Advanced Subsidiary Examination January 2010 Centre Number Surname Candidate Number For Examiner s Use Other Names Candidate Signature Examiner s Initials Computing General Certificate of Education Advanced Subsidiary Examination January 2010 COMP2

More information

INFORMATION SYSTEMS EXAMINATIONS BOARD

INFORMATION SYSTEMS EXAMINATIONS BOARD INFORMATION SYSTEMS EXAMINATIONS BOARD Certificate in Freedom of Information Guidelines for Candidates March 2009 ISEB/Regs&Guide/AccredV1.4 03/09 TABLE OF CONTENTS FOREWORD... 2 1 INTRODUCTION... 2 1.1

More information

Table of Contents Chapter Nine: Database Display Chapter two: Install and Uninstall... 2

Table of Contents Chapter Nine: Database Display Chapter two: Install and Uninstall... 2 Table of Contents Chapter One: Overview... 1 1.1 Features... 1 1.2 Operating environment... 1 Chapter two: Install and Uninstall... 2 2.1 Install... 2 2.2 Uninstall... 3 Chapter Three: Use details... 4

More information

Guide for candidates

Guide for candidates Guide for candidates 2 APMP Guide for candidates Introduction 3 Applying for an examination 3 Completing your application form 3 Taking the examination 4 Examination rules 4 Examination materials 4 Examination

More information

HTML5 and CSS3 for Web Designers & Developers

HTML5 and CSS3 for Web Designers & Developers HTML5 and CSS3 for Web Designers & Developers Course ISI-1372B - Five Days - Instructor-led - Hands on Introduction This 5 day instructor-led course is a full web development course that integrates HTML5

More information

A PPLICATION C ENTRE FOR THE G REEK L ANGUAGE C ERTIFICATE OF A TTAINMENT IN G REEK. for participation in the examination.

A PPLICATION C ENTRE FOR THE G REEK L ANGUAGE C ERTIFICATE OF A TTAINMENT IN G REEK. for participation in the examination. MINISTRY OF EDUCATION, RESEARCH AND RELIGIOUS AFFAIRS C ENTRE FOR THE G REEK L ANGUAGE C ERTIFICATE OF A TTAINMENT IN G REEK A PPLICATION for participation in the examination of May 2017 1 T ERMS AND C

More information

Santa Monica College. GRAPHIC DESIGN 65: Web Design I Course Syllabus

Santa Monica College. GRAPHIC DESIGN 65: Web Design I Course Syllabus GRAPHIC DESIGN 65: Web Design I Course Syllabus Instructor: Anastasia Triviza Term: Spring 2010 Section: 4266 Time and Place: Thursdays, 6:30 PM-9:35 PM, AET 105 Arrange - 1 Hour Program website: http://www.smc.edu/designtech/graphic_design/

More information

Programming. Ed Milne

Programming. Ed Milne Programming Ed Milne Theme What is programming How its done The tools that are used Programming Software is the instructions which tell your computer what to do Programming is the process of creating software

More information

National Quali cations Date of birth Scottish candidate number

National Quali cations Date of birth Scottish candidate number N5FOR OFFICIAL USE X76/75/0 National Quali cations 07 Mark Computing Science TUESDAY, 6 MAY :00 PM :30 PM *X76750* Fill in these boxes and read what is printed below. Full name of centre Town Forename(s)

More information

Administration and Examination Guidelines for Holding ISEB BSD Written Examinations

Administration and Examination Guidelines for Holding ISEB BSD Written Examinations 1. New BSD Modules Administration and Examination Guidelines for Holding ISEB BSD Written Examinations Examination Guidelines Providers who are eligible to hold an examination for the first time must submit

More information

CLASS QUESTIONS STANDARD ALGORITHMS

CLASS QUESTIONS STANDARD ALGORITHMS HIGHER COMPUTING SOFTWARE DEVELOPMENT CLASS QUESTIONS STANDARD ALGORITHMS 1. Scientists are interested in studying the possible effects of global warming. Devices are placed at various locations to record

More information

Table of Contents. Page 2

Table of Contents. Page 2 Table of Contents Table of Contents... 2 Section 1: About the COBIT 2019 Foundation Certificate Program... 3 a. About the COBIT 2019 Foundation Certificate program... 3 b. About the COBIT 2019 Foundation

More information

WEB DESIGN: CONSTRUCTION, FILES, CODE AND COLOURS UNIT NUMBER: H383 34

WEB DESIGN: CONSTRUCTION, FILES, CODE AND COLOURS UNIT NUMBER: H383 34 WEB DESIGN: CONSTRUCTION, FILES, CODE AND COLOURS UNIT NUMBER: H383 34 OUTCOME 1 Knowledge requirements Web page construction methods File formats Terminology html type Web safe colours WEB PAGE CONSTRUCTION

More information

This section will cover the core initialization process.

This section will cover the core initialization process. This section will cover the core initialization process. 1 There are three steps to initializing a system, CPU, Boot device and OS initialization + CPU initialization initializes the CPU to a known state.

More information

Styles, Style Sheets, the Box Model and Liquid Layout

Styles, Style Sheets, the Box Model and Liquid Layout Styles, Style Sheets, the Box Model and Liquid Layout This session will guide you through examples of how styles and Cascading Style Sheets (CSS) may be used in your Web pages to simplify maintenance of

More information

Sample file. Authors: Crystal and Thomas Rende Cover Illustrator: Heather Tang. Novel Ideas Harry Potter and the Deathly Hallows

Sample file. Authors: Crystal and Thomas Rende Cover Illustrator: Heather Tang. Novel Ideas Harry Potter and the Deathly Hallows Authors: Crystal and Thomas Rende Cover Illustrator: Heather Tang Novel Ideas Harry Potter and the Deathly Hallows Copyright 2007 New Learning Publishing All rights reserved. Except as permitted under

More information

2018 Laws of the Game Online Theory Examination

2018 Laws of the Game Online Theory Examination 2018 Laws of the Game Online Theory Examination Information for Exam Candidates The 2018 Law of The Game Theory Examination is now available to be completed by all candidates online. No longer will there

More information

Dreamweaver Template Tutorial - How to create a website from a template

Dreamweaver Template Tutorial - How to create a website from a template Dreamweaver Template Tutorial - How to create a website from a template In this tutorial you will create a website using Dreamweaver s premade templates. You are going to learn how to style them using

More information

Cascading style sheets

Cascading style sheets Cascading style sheets The best way to create websites is to keep the content separate from the presentation. The best way to create websites is to keep the content separate from the presentation. HTML

More information

GCSE Computer Science Booster Pack

GCSE Computer Science Booster Pack GCSE Computer Science Booster Pack Commissioned by The PiXL Club Ltd. This resource is strictly for the use of member schools for as long as they remain members of The PiXL Club. It may not be copied,

More information

VCE / VET INFORMATION AND COMMUNICATION TECHNOLOGY

VCE / VET INFORMATION AND COMMUNICATION TECHNOLOGY Innovative Vocational Education and Training VCE / VET INFORMATION AND COMMUNICATION TECHNOLOGY YEAR 2 (UNITS 3 & 4) TEACHER RESOURCE CERTIFICATE III (ICT30115) CORE COMPETENCIES and SELECTED ELECTIVES

More information

In this lesson, we will use the order of operations to evaluate and simplify expressions that contain numbers and variables.

In this lesson, we will use the order of operations to evaluate and simplify expressions that contain numbers and variables. Show Me: Expressions M8081 Could we sit in a classroom on the other side of the world and still make sense of the mathematics? The answer is yes! Of course, we might not understand exactly what the teacher

More information

WEB DEVELOPMENT & DESIGN FOUNDATIONS WITH HTML5

WEB DEVELOPMENT & DESIGN FOUNDATIONS WITH HTML5 WEB DEVELOPMENT & DESIGN FOUNDATIONS WITH HTML5 Chapter 3 Key Concepts 1 LEARNING OUTCOMES In this chapter, you will learn how to... Describe the evolution of style sheets from print media to the Web List

More information

REFERENCES: Senate Bills 855 and 873 (Chapters 29 and 685, Statutes of 2014); ACL 16-01; ACL 16-07; ACL 16-22

REFERENCES: Senate Bills 855 and 873 (Chapters 29 and 685, Statutes of 2014); ACL 16-01; ACL 16-07; ACL 16-22 APRIL XX, 2016 ALL COUNTY LETTER 16-XX REASON FOR THIS TRANSMITTAL [x] State Law Change [x] Federal Law or Regulation Change [ ] Court Order [ ] Clarification Requested by One or More Counties [x] Initiated

More information

Block & Inline Elements

Block & Inline Elements Block & Inline Elements Every tag in HTML can classified as a block or inline element. > Block elements always start on a new line (Paragraph, List items, Blockquotes, Tables) > Inline elements do not

More information

Chapter Five: Functions II

Chapter Five: Functions II Chapter Five: Functions II Slides by Evan Gallagher & Nikolay Kirov Lecture Goals To develop strategies for decomposing complex tasks into simpler ones To be able to determine the scope of a variable To

More information

CONDITIONS OF ENROLMENT FOR CAMBRIDGE ENGLISH EXAMINATIONS. Payment of exam registration fees

CONDITIONS OF ENROLMENT FOR CAMBRIDGE ENGLISH EXAMINATIONS. Payment of exam registration fees Cambridge English Language Assessment Authorised Platinum Centres ES439-ES449 CONDITIONS OF ENROLMENT FOR CAMBRIDGE ENGLISH EXAMINATIONS Payment of exam registration fees Registration fees may be paid

More information

INFORMATION AND COMMUNICATION TECHNOLOGY UNIT 3: ICT in Organisations

INFORMATION AND COMMUNICATION TECHNOLOGY UNIT 3: ICT in Organisations Surname Centre Number Candidate Number Other Names 0 GCSE 4333/01 S15-4333-01 INFORMATION AND COMMUNICATION TECHNOLOGY UNIT 3: ICT in Organisations P.M. THURSDAY, 21 May 2015 1 hour 30 minutes For s use

More information

ICT IGCSE Practical Revision Presentation Web Authoring

ICT IGCSE Practical Revision Presentation Web Authoring 21.1 Web Development Layers 21.2 Create a Web Page Chapter 21: 21.3 Use Stylesheets 21.4 Test and Publish a Website Web Development Layers Presentation Layer Content layer: Behaviour layer Chapter 21:

More information

AIM. 10 September

AIM. 10 September AIM These two courses are aimed at introducing you to the World of Web Programming. These courses does NOT make you Master all the skills of a Web Programmer. You must learn and work MORE in this area

More information

Prince2 Practitioner Sample Paper 2013 File Type

Prince2 Practitioner Sample Paper 2013 File Type We have made it easy for you to find a PDF Ebooks without any digging. And by having access to our ebooks online or by storing it on your computer, you have convenient answers with prince2 practitioner

More information

Access Hoover s Setup Instructions. March

Access Hoover s Setup Instructions. March Access Hoover s Setup Instructions March 2009 www.crm.hoovers.com/salesforce Table of Contents For customers who have installed an earlier version of Access Hoover s: Uninstalling Access Hoover s V1.0...

More information

Co. Louth VEC & Co. Monaghan VEC. Programme Module for. Web Authoring. leading to. Level 5 FETAC. Web Authoring 5N1910

Co. Louth VEC & Co. Monaghan VEC. Programme Module for. Web Authoring. leading to. Level 5 FETAC. Web Authoring 5N1910 Co. Louth VEC & Co. Monaghan VEC Programme Module for Web Authoring leading to Level 5 FETAC Web Authoring 5N1910 Web Authoring 5N1910 1 Introduction This programme module may be delivered as a standalone

More information

SQA Advanced Unit specification. General information for centres. Unit title: Web Development Fundamentals. Unit code: HR7M 47

SQA Advanced Unit specification. General information for centres. Unit title: Web Development Fundamentals. Unit code: HR7M 47 SQA Advanced Unit specification General information for centres Unit title: Web Development Fundamentals Unit code: HR7M 47 Unit purpose: This Unit is designed to enable candidates to develop websites

More information

DIVE COMPUTER DOWNLOAD INSTRUCTIONS. For Sherwood & Genesis Dive Computers

DIVE COMPUTER DOWNLOAD INSTRUCTIONS. For Sherwood & Genesis Dive Computers DIVE COMPUTER DOWNLOAD INSTRUCTIONS For Sherwood & Genesis Dive Computers How to Identify your Computer 2 Before you begin this process, it is essential that your hardware components are compatible. The

More information

Entry Level 2 (Premiere) Syllabus Guide

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

More information

Layers (Just the Basics) By Jerry Koons

Layers (Just the Basics) By Jerry Koons and their applications are always a topic of concern and confusion, especially to those that are new to the Photoshop and Elements programs. will become one of your best tools after you understand their

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 *9967816660* INFORMATION AND COMMUNICATION TECHNOLOGY 0417/32 Paper 3 Practical

More information

CSS. Lecture 16 COMPSCI 111/111G SS 2018

CSS. Lecture 16 COMPSCI 111/111G SS 2018 CSS Lecture 16 COMPSCI 111/111G SS 2018 No CSS Styles A style changes the way the HTML code is displayed Same page displayed using different styles http://csszengarden.com Same page with a style sheet

More information

Primary Source Verification. How to Apply

Primary Source Verification. How to Apply Primary Source Verification NASBA International Evaluation Services How to Apply A Step By Step Guide for Completing Your Application Step One Visit the National Association of State Boards of Accountancy

More information

National Unit Specification: general information. The Internet (Higher) NUMBER DM4F 12. Information Systems (Higher)

National Unit Specification: general information. The Internet (Higher) NUMBER DM4F 12. Information Systems (Higher) National Unit Specification: general information NUMBER DM4F 12 COURSE Information Systems (Higher) SUMMARY This Unit is designed to develop knowledge and understanding of the operating principles of the

More information

National Quali cations

National Quali cations National Quali cations AH018 X716/77/11 Computing Science TUESDAY, MAY 1:00 PM 3:00 PM Total marks 60 Attempt ALL questions. Write your answers clearly in the answer booklet provided. In the answer booklet

More information

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

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

More information

INTRODUCTION TO GRAPHIC DESIGN FOR WEB AND PRINT (INTENSIVE) COURSE ID: GD0086

INTRODUCTION TO GRAPHIC DESIGN FOR WEB AND PRINT (INTENSIVE) COURSE ID: GD0086 NEW THIS SEMESTER: INTENSIVE COURSES! THE TYPICALLY 12 - WEEK VERSIONS HAVE BEEN CONDENSED TO SIX-WEEK COURSES MEETING SEMI-WEEKLY. SO NOW YOU CAN KICK - START YOUR NEW YEAR WITH AN INTENSIVE BURST OF

More information

Mastering Binary Math

Mastering Binary Math Cisco certification candidates, from the CCNA to the CCIE, must master binary math. This includes basic conversions, such as binary-to-decimal and decimal-to-binary, as well as more advanced scenarios

More information

Regulations Respecting Examinations and Certificates of Engineers and Firemen

Regulations Respecting Examinations and Certificates of Engineers and Firemen EXAMINATION AND CERTIFICATES 1 Regulations Respecting Examinations and Certificates of Engineers and Firemen Repealed by Chapter B-5.1 Reg 1 (effective January 1, 2007) Formerly Saskatchewan Regulations

More information

Examiners Report Principal Examiner Feedback

Examiners Report Principal Examiner Feedback Examiners Report Principal Examiner Feedback Summer 2017 Pearson Edexcel Level 2 Diploma in Digital Applications (DA205) Paper 01 Coding for the Web Edexcel and BTEC Qualifications Edexcel and BTEC qualifications

More information