= = 170

Size: px
Start display at page:

Download "= = 170"

Transcription

1 Section 1 20 marks. In your exam, this section should take 20 minutes to complete. The questions below should take no more than 30 mins. 1. Convert the value 52 into an 8-bit binary number. Show your working Convert the binary number into a decimal value. Show your working = = State which bus takes information to and from main memory. 1 Data bus 4. State which bus is used to identify memory locations to be read from or written to by the processor. 1 Address bus 5. The processor is made up of three distinct areas. Name them and describe their functions. 4 Arithmetic and Logic Unit (ALU) - carries out all calculations and makes decisions. Registers holds data and instructions after being transferred from memory into the processor OR a temporary storage location within the processor Control Unit synchronises the timing of the events carried out by the processor OR sends out signals that fetch/execute instruction from main memory 6. Files can be sent by . State the type of file stored in 5 avi Video gif Animation mp4 Video mp3 jpg Music(sound) graphic 7 The following data is being used by a program Address - 1 High Street Number of occupants 5 furnished - False (a) The address has been stored as a text field type. Explain why this is the correct field type to use. 1 The address contains both numbers and letters this is the only field type that can include both types (b) The number of occupants field has been stored as an integer field type. Explain why it is more efficient to store the number 1 as an integer than it would be to store it as a text character. 2

2 Integer can store the number in 3 bits(101) but to store it as a character would require a minimum of 8 bits (ASCII) (c) Explain why the furnished field value of False should be stored as type Boolean rather than as type text. 2 Using a text data type will use more storage than a Boolean type because a Boolean field could use as little as one bit (but a TEXT field will use at least 5 bytes one for each character). 8. The pseudocode below shows how a program stores information about pupils and their prelim marks. Line 1. SET pupilname TO [ Billy Bragg, Adam Ant, Aladin Sane, Suzie Souix ] Line 2. SET pupilmark TO [85, 26, 70, 84] State the most suitable data structure and data type for storing both the pupilname and the pupilmark. 3 data structure data type pupilname Array String pupilmark Array Integer 9 A program stores the weekly takings for the school canteen over a 12-week period. State a suitable data structure and data type for storing the weekly takings. Data structure = Array Data type = real (single) 2 10 Line 1. Private Sub get_pupil_results Line 2. prompts user to enter name and mark Line 3. n = Inputbox( Please enter pupil name ) Line 4. m = Inputbox( Please enter pupil mark ) Line 5. End Sub The above code is readable thanks to line 2. State two other techniques which could be used to make code more readable and explain why they improve the readability of code. Indentation - Related command words or operators are at the same level of indentation OR Can see the structure of code (what is inside loops, if statements etc.) Meaningful variable names - helps the programmer to analyse the logic of the program/ find errors 11 A web page can be found using the URL: 2 N5-computing/index.php (a) Identify the folder being accessed. 1 N5-computing (b) State the protocol being used by this URL. 1 Hyper text transfer protocol

3 12 A graphic is stored using the following data: <square side = 100 ;style = fill:rgb(255,0,0);line-width:1;line-col:rgb(0,0,255) > (a) State the type of graphic being stored. 1 Vector (b) State one advantage of storing a graphic in this format. 1 Resolution independent Require less space than equivalent bitmap Able to edit vector details without altering other elements of image OR can edit at object level 13 Part of a database used to store information about laptops is shown below. B Describe how the data above has been sorted. 2 Data is sorted on: Price (ascending) and Processor Speed (Hz) (descending) 1 mark for each sort field with direction, order of fields is important

4 14 The home page for the web site Every News is shown below. It provides access to the four main sections of the website: World News, UK News, Strange News and Sport. B (a) During testing the login button is checked to make sure the script is executed correctly and the data entered is validated correctly. Describe two other tests that should be carried out during testing. 2 Checked links are valid. Examine visual layout of page for errors (b) The website URL is State the meaning of the term URL. 1 Uniform Resource Locator (c) Using examples from the web page shown, explain the difference between an internal and external hyperlink. 2 The topic links will be internal links so will remain within the domain/site The links to news web sites are external links as they go outside the domain/ site (d) It is important that web pages are as accessible as possible. Describe two features of good design that could be used to improve accessibility. 2 Responsive design ensuring access from any device. Use of alt tags for image readers Use of Skip Navigation link to bypass complex menus. Use of breadcrumbs to signpost site pages.

5 (e) Here are two sample pages from the EveryNews website. The two web pages above use different types of navigation. Draw a diagram for each page to represent the navigation structure used The following HTML is used to create a web page. A (a) From the HTML above, identify an internal hyperlink and an external hyperlink. 2 Internal: player/hiscore-halo.html OR player/hiscore-gw.html External: OR

6 (b) Draw a diagram to illustrate the navigation structure used in the web page above. 1 (c) Describe a test that should have taken place when this web page was being developed. 1 Check navigation: checking each of the web links points to the required destination Check screen matches design ensuing correct elements on the page, layout is correct and spelling/presentation is accurate (d) The following web page code has been created to ensure accessibility. (i) Give two examples, from the code above, which increase the accessibility of the web page. 2 <a href="#maincontent">skip navigation</a> alt="gamezone Logo" You are at: (and navigational links) (ii) For each example given in (i) above, explain why it makes the page more accessible. 2 Use of Skip Navigation to support screen readers jumping to main content. Use of alt tag to provide screen read text relating to image Use of breadcrumbs (you are at) to aid navigation accessibility

7 16 An app is being developed for students to use to revise for their examinations. The app will show example questions, worked answers, a study planner and the location of friends with the app who are studying the same subjects. A (a) The icons used in the app are stored using a standard file format. (i) State a standard file format suitable for storing these images. 1 JPEG or PNG or BMP or GIF (ii) Explain why the file size of an icon will be smaller if the colour depth is reduced. 2 The colour depth requires a certain number of bits to store the colour value of each pixel in the image Reducing the colour depth normally reduces the number of bits required to store each pixel and therefore reduces the number of bits in the whole file (b) Here is an example of data from the online database that stores data about users and their locations. (i) This data is shown in a flat-file database. Describe two advantages of storing the same data in linked tables. 2 DELETION ANOMALY Will be able to remove the repeating values for users (reducing the storage requirements and speed of access). INSERTION ANOMALY Will be able to store users without them having any location data available. AMENDMENT ANOMALY Will ensure that multiple changes are not required for the same data

8 (ii) Two linked tables are created USER and LOCATION. Identify the fields that would be in each table. 2 USER UserID, First Name, Last Name, (LogID to link) LOCATION Time Logged, Latitude, Longitude, LogID, (OR UserID to link) 1 mark for correct fields, 1 mark for appropriate linking field (iii) Identify a suitable primary key for each table. 2 USER UserID LOCATION LogID (iv) Explain the purpose of a foreign key. 1 The foreign key is used to link (rows with the primary key in other) tables (c) State the type of field required to store the Time Logged data. 1 Date/Time (d) Name and describe a type of validation that could be applied to the field Last Name. 2 Presence check ensures that a name is entered Length check ensures that the name entered is an appropriate length (note Range check would not be suitable here) 17 A programming language has several built in functions. B move(n) n = distance moved in squares (leaving a line) turn(d) d = degrees turned (positive means clockwise) The following program is created to move an item X on the screen. The output of the program and associated notes are shown below. (a) Using the same initial direction, draw the motion path and indicate the end position of an object X which is moved using this program. 3

9 (b) The program is translated using an interpreter. (i) Describe how an interpreter translates the program code. 2 Each line of source code is translated as soon as it is entered Loop constructs have to be translated multiple times as the initial translated code is not kept and so it needs to be translated for each repetition of the loop. (ii) State the name given to the translated binary instructions. 1 Machine code (c) The following command is used in another program. move(4.25) Describe how the number 4.25 would be stored by a computer system. 2 Stored as a real number using floating point representation Where the number is stored as a mantissa and an exponent

10 18 As part of their preparation for their Duke of Edinburgh Silver expedition, S4 pupils at Kinross High School plan to walk a minimum number of miles each week. Their training efforts will be recorded in a computer program. SQA The design for the program is shown below. Line 1. Line 2. Line 3. Line 4. Line 5. Line 6. Line 7. Line 8. Line 9. Line 10. Line 11. Line 12. Line 13. Line 14. Line 15. Line 16. RECEIVE ryantotal FROM file RECEIVE sophietotal FROM file RECEIVE jamestotal FROM file RECEIVE gemmatotal FROM file REPEAT RECEIVE name FROM keyboard RECEIVE distance FROM keyboard IF name = Ryan THEN SET ryantotal = ryantotal + distance IF name = Sophie THEN SET sophietotal = sophietotal + distance IF name = James THEN SET jamestotal = jamestotal + distance IF name = Gemma THEN SET gemmatotal = gemmatotal + distance UNTIL name = exit SEND[ The distance walked by Ryan is & ryantotal] TO DISPLAY SEND[ The distance walked by Sophie is & sophietotal] TO DISPLAY SEND[ The distance walked by James is & jamestotal] TO DISPLAY SEND[ The distance walked by Gemma is & gemmatotal] TO DISPLAY (a) (i) State the type of loop shown in the above design. 1 Conditional (ii) What event causes the program to continue from line 12 on to line 13? 1 The word exit is entered when the user is asked for a name OR when the variable name stores the value exit (b) The current values for the distances walked by each pupil so far are shown below: ryantotal = 15 sophietotal = 12 jamestotal = 9 gemmatotal = 15 These values are stored in the file used in lines 1 to 4. The latest distances walked have now to be added. Show the output from the program when the program is run with the following data: Name distance Ryan 3 Sophie 5 James 6 Gemma 2 exit 4 The distance walked by Ryan is 18 The distance walked by Sophie is 17 The distance walked by James is 15 The distance walked by Gemma is 17 Note: 1 mark for 4 lines of output, 1 mark for correct order, 1 mark for showing concatenation, 1 mark for adding values

11 (c) Line 7 is expanded to ensure that only distances greater than 0 and less than 10 miles can be entered. REPEAT RECEIVE distance FROM keyboard IF distance <= 0 AND distance >= 10 THEN SEND [ Incorrect distance entered ] TO DISPLAY UNTIL distance > 0 AND distance < 10 (i) State the logic error that has been made in the above pseudocode. 1 IF statement should be OR not AND (ii) What effect will this have on the program if a distance of 15 is entered? 1 The error message will not be displayed (d) When the program is run, gemma is entered instead of Gemma. (i) What effect will this have on the program output? 1 The distance entered for Gemma will not be added to the total (ii) What function could be used to prevent this happening? 1 UCASE or LCASE 19 Dino has been asked to create a program to calculate the profit for his school s Young Enterprise group. The program will store the costs involved in producing and selling 100 hand-painted mugs. SQA The following calculations will be used: manufacturing cost = (cost of plain mug x 100) + cost of paint profit = (selling price x 100) manufacturing cost (a) How many variables will Dino need in his program? 1 Five (b) Using a programming language of your choice, write a program to input the required data then calculate and display the profit. In VisualBasic DIM manufacturingcost as single DIM costofplainmug as single DIM costofpaint as single DIM sellingprice as single DIM profit as single 1 mark for correct variables 1 mark for correct data type 5 costofplainmug = InputBox(Please enter cost of mug ) costofpaint = InputBox(Please enter cost of paint ) sellingprice = InputBox(Please enter sellingprice ) 1 mark for inputs

12 manufacturingcost = (costofplainmug * 100) + costofpaint profit = (sellingprice * 100) manufacturingcost 1 mark for correct calculations msgbox( The profit made is & profit) 1 mark for output using concatenation (c) Dino adapts the program to make sure that the cost of the plain mug has to be between 0.50 and Complete the code below to show how this would be implemented. REPEAT IF cost_of_plain_mug < 0.5 OR(1) cost_of_plain_mug > 2.5(1) THEN SEND [ Incorrect price entered ] ENDIF UNTIL cost_of_plain_mug > = 0.5(1) AND cost_of_plain_mug =< 2.5(1) (d) Complete the table below giving four examples of test data and identifying the type of testing 3 Test data (cost_of_plain_mug) Type of Testing 0.50 extreme 1.55 normal 2.50 extreme 3.99 exceptional (e) The school s Young Enterprise group have created a logo. It is stored as a true colour graphic with a resolution of 300 x 400 pixels. Calculate the storage requirements for this graphic. 4 No of pixels = 300 x 400 = 120,000 (1) No of bits per pixel = 24 (true colour) Total no of bits = 24 x 120,000 = (1) 2,880,000/8 = 360,000 bytes (1) 360,000/1024 = KB (1) 20 A programming language provides the following built-in functions. A swap(pos1, pos2, mystring) echo(mystring) Swap the character at position pos1 with the character at position pos2 in a string of text mystring. Write the string mystring to the display.

13 These can be used by the programmer to manipulate strings of text. An example program, with notes on the execution, are shown below. The first character in a string is always position 1. SET mystring TO Passphrase mystring = Passphrase SET val TO 1 val is 1 WHILE val < 3 SET mystring TO swap(val, val+3, mystring) SET val TO val + 1 END WHILE echo(mystring) The following two passes occur, while val is less than 3. val=1, mystring = saspphrase val=2, mystring = spspahrase Output is spspahrase (a) State the output that would be created by the following program. Show what happens with each pass. SET newstring TO computing SET counter to 3 WHILE counter > 0 SET newstring to swap(counter, counter + 2, newstring) SET counter TO counter 1 END WHILE echo(newstring) The following three passes are applied to the string computing Pass 1: counter = 3 swap(3,5, computing ) Result: coupmting (1 mark) Pass 2: counter = 2 swap(2,4, coupmting ) Result: cpuomting (1 mark) Pass 3: counter = 1 swap(1,3, cpuomting ) Result: upcomting Output is upcomting (1 mark) 3 (b) State the type of loop shown in the program. Justify your answer. 2 The loop is a conditional loop (1 mark) because it will continue while the condition (counter > 0) is TRUE (1 mark)

DUMBARTON ACADEMY NATIONAL 5 COMPUTING SCIENCE REVISION

DUMBARTON ACADEMY NATIONAL 5 COMPUTING SCIENCE REVISION DUMBARTON ACADEMY NATIONAL 5 COMPUTING SCIENCE REVISION NAME Data Representation Keypoints - binary numbers, floating point notation, mantissa, exponent, ASCII, unicode, character set, bit-mapped graphics,

More information

Resources to support the National 5 Computing Science course

Resources to support the National 5 Computing Science course Resources to support the National 5 Computing Science course The following table shows which past examination paper questions would be suitable for the revised National 5 course. Software design and development

More information

Year 8 Computing Science End of Term 3 Revision Guide

Year 8 Computing Science End of Term 3 Revision Guide Year 8 Computing Science End of Term 3 Revision Guide Student Name: 1 Hardware: any physical component of a computer system. Input Device: a device to send instructions to be processed by the computer

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

National 5 Computing Science Software Design & Development

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

More information

2018 Computing Science. National 5. Finalised Marking Instructions

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

More information

Chapter 2.4: Common facilities of procedural languages

Chapter 2.4: Common facilities of procedural languages Chapter 2.4: Common facilities of procedural languages 2.4 (a) Understand and use assignment statements. Assignment An assignment is an instruction in a program that places a value into a specified variable.

More information

Page Content. Inserting Text To add text to your document, you can type the text directly or use Cut or Copy and Paste or Paste Special.

Page Content. Inserting Text To add text to your document, you can type the text directly or use Cut or Copy and Paste or Paste Special. This section describes how to add content to your pages including text, Microsoft Office documents, images, Flash, and other media content. Inserting Text To add text to your document, you can type the

More information

St. Benedict s High School. Computing Science. Software Design & Development. (Part 1 Computer Programming) National 5

St. Benedict s High School. Computing Science. Software Design & Development. (Part 1 Computer Programming) National 5 Computing Science Software Design & Development (Part 1 Computer Programming) National 5 VARIABLES & DATA TYPES Variables provide temporary storage for information that will be needed while a program is

More information

Computing at Cox Green Curriculum Plan. Key Stage 3 Year 7

Computing at Cox Green Curriculum Plan. Key Stage 3 Year 7 Computing at Cox Green Curriculum Plan Key Stage 3 Year 7 Term 1 Term 2 Term 3 Term 4 Term 5 Term 6 E-safety Database Programming Spreadsheet and modelling Web design How data is represented in s? How

More information

N5 Computing Science - Solutions

N5 Computing Science - Solutions Revision 1 1. Convert the following decimal numbers to binary using the table below. 128 64 32 16 8 4 2 1 22 0 0 0 1 0 1 1 0 144 1 0 0 1 0 0 0 0 73 0 1 0 0 1 0 0 1 2. How does a computer represent characters

More information

Blackboard staff how to guide Accessible Course Design

Blackboard staff how to guide Accessible Course Design The purpose of this guide is to help online course authors in creating accessible content using the Blackboard page editor. The advice is based primarily on W3C s Web Content Accessibility Guidelines 1.0

More information

Standard File Formats

Standard File Formats Standard File Formats Introduction:... 2 Text: TXT and RTF... 4 Grapics: BMP, GIF, JPG and PNG... 5 Audio: WAV and MP3... 8 Video: AVI and MPG... 11 Page 1 Introduction You can store many different types

More information

Edexcel GCSE in Computer Science Microsoft IT Academy Mapping

Edexcel GCSE in Computer Science Microsoft IT Academy Mapping Edexcel GCSE in Computer Science Microsoft IT Academy Mapping Topic 1: Problem solving Subject Content: 1.1 Algorithms MOAC course and lesson(s) MVA course and module(s) : 1.1.1 Understand what an algorithm

More information

MARK SCHEME for the May/June 2011 question paper for the guidance of teachers 9691 COMPUTING. 9691/22 Paper 2 (Written Paper), maximum raw mark 75

MARK SCHEME for the May/June 2011 question paper for the guidance of teachers 9691 COMPUTING. 9691/22 Paper 2 (Written Paper), maximum raw mark 75 UNIVERSITY OF CAMBRIDGE INTERNATIONAL EXAMINATIONS GCE Advanced Subsidiary Level and GCE Advanced Level MARK SCHEME for the May/June 2011 question paper for the guidance of teachers 9691 COMPUTING 9691/22

More information

Access Groups. Collect and Store. Text Currency Date/Time. Tables Fields Data Type. You Your Friend Your Parent. Unique information

Access Groups. Collect and Store. Text Currency Date/Time. Tables Fields Data Type. You Your Friend Your Parent. Unique information Tutorial A database is a computerized record keeping system used to collect, store, analyze and report electronic information for a variety of purposes. Microsoft Access is a database. There are three

More information

PLD Semester Exam Study Guide Dec. 2018

PLD Semester Exam Study Guide Dec. 2018 Covers material from Chapters 1-8. Semester Exam will be built from these questions and answers, though they will be re-ordered and re-numbered and possibly worded slightly differently than on this study

More information

Switching to AQA from Edexcel

Switching to AQA from Edexcel Switching to AQA from Edexcel This resource compares our new GCSE Computer Science specification (8520) with the new Edexcel Computer Science specification (1CP1). If you are thinking of switching from

More information

ACTIVE Event App Configuration Guide

ACTIVE Event App Configuration Guide ACTIVE Event App Configuration Guide ACTIVE Network, LLC 2017 Active Network, LLC, and/or its affiliates and licensors. All rights reserved. No part of this publication may be reproduced, transmitted,

More information

VPAT for VMware vcloud Networking and Security 5.1

VPAT for VMware vcloud Networking and Security 5.1 VMware, Inc. 3401 Hillview Avenue Palo Alto, CA 94304 (877) 486-9273 main (650) 427-5001 fax www.vmware.com VPAT for VMware vcloud Networking and Security 5.1 December 17, 2012 Since the VPAT must be comprehensive,

More information

Technical Communication A Practical Approach: Chapter 11: Web Pages and

Technical Communication A Practical Approach: Chapter 11: Web Pages and Publish on the Web Technical Communication A Practical Approach: Chapter 11: Web Pages and Writing for the Web William Sanborn Pfeiffer Kaye Adkins Craig Baehr Revised for ENGR 139 by x.m. spring 2010

More information

More HTML. Images and links. Tables and lists. <h1>running in the family</h1> <h2>tonight 9pm BBC One</h2>

More HTML. Images and links. Tables and lists. <h1>running in the family</h1> <h2>tonight 9pm BBC One</h2> More HTML Images and links Tables and lists running in the family tonight 9pm BBC One hurdles legend Colin Jackson traces his family tree to Jamaica in Who Do You Think You Are?

More information

Access Groups. Collect and Store. Text Currency Date/Time. Tables Fields Data Type. You Your Friend Your Parent. Unique information

Access Groups. Collect and Store. Text Currency Date/Time. Tables Fields Data Type. You Your Friend Your Parent. Unique information Tutorial A database is a computerized record keeping system used to collect, store, analyze and report electronic information for a variety of purposes. Microsoft Access is a database. There are three

More information

Computer Systems. IGCSE OCR AQA Edexcel Understand the term. embedded system and how an Purpose of embedded system

Computer Systems. IGCSE OCR AQA Edexcel Understand the term. embedded system and how an Purpose of embedded system This scheme gives pupils an introduction to computer systems and begins with students getting a real idea of the functions of the main hardware components by creating their own cardboard laptop. By looking

More information

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

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

More information

Pace University. Fundamental Concepts of CS121 1

Pace University. Fundamental Concepts of CS121 1 Pace University Fundamental Concepts of CS121 1 Dr. Lixin Tao http://csis.pace.edu/~lixin Computer Science Department Pace University October 12, 2005 This document complements my tutorial Introduction

More information

Computing Science. National 5. Summary Revision Notes

Computing Science. National 5. Summary Revision Notes Computing Science National 5 Summary Revision Notes R Ritchie & J Graham Page 1 Contents Data Types and Structures... 3 Expressions... 3 Concatenation... 3 Conditions... 3 Iterative constructs... 3 Selection

More information

MILWAUKEE AREA TECHNICAL COLLEGE ONLINE APPLICATION INSTRUCTIONS

MILWAUKEE AREA TECHNICAL COLLEGE ONLINE APPLICATION INSTRUCTIONS MILWAUKEE AREA TECHNICAL COLLEGE ONLINE APPLICATION INSTRUCTIONS Thank you for your interest in employment opportunities at Milwaukee Area Technical College. **Please note the following when submitting

More information

Higher Computing Science. Software Design and Development

Higher Computing Science. Software Design and Development Higher Computing Science Software Design and Development Programming with Visual Studio 2012 1 CONTENTS Topic 1 Topic 2 Topic 3 Topic 4 Topic 5 Topic 6 Topic 7 Topic 8 Topic 9 Getting started Strings and

More information

STATE COUNCIL OF EDUCATIONAL RESEARCH AND TRAINING TNCF DRAFT SYLLABUS. Operating Systems.

STATE COUNCIL OF EDUCATIONAL RESEARCH AND TRAINING TNCF DRAFT SYLLABUS.  Operating Systems. STATE COUNCIL OF EDUCATIONAL RESEARCH AND TRAINING TNCF 2017 - DRAFT SYLLABUS Subject :Computer Technology (Vocational and Science) Class : XI UNIT I TOPIC FUNDAMENTALS OF COMPUTERS CONTENT Introduction

More information

Switching to AQA from OCR

Switching to AQA from OCR Switching to AQA from OCR This resource compares our new GCSE Computer Science specification (8520) with the new OCR Computer Science specification (J276). If you are thinking of switching from OCR to

More information

Clients Continued... & Letters. Campaigns Continued To create a Custom Campaign you must first name the campaign and select

Clients Continued...  & Letters. Campaigns Continued To create a Custom Campaign you must first name the campaign and select Clients Continued... Campaigns Continued To create a Custom Campaign you must first name the campaign and select what type of campaign it will be. Next you will add letters to your campaign from your letter

More information

Industrial Technology

Industrial Technology 2016 HIGHER SCHOOL CERTIFICATE EXAMINATION Industrial Technology Multimedia Technologies Total marks 40 General Instructions Reading time 5 minutes Working time 1 1 2 hours Write using black pen Draw diagrams

More information

M4-R4: INTRODUCTION TO MULTIMEDIA (JAN 2019) DURATION: 03 Hrs

M4-R4: INTRODUCTION TO MULTIMEDIA (JAN 2019) DURATION: 03 Hrs M4-R4: INTRODUCTION TO MULTIMEDIA (JAN 2019) Max Marks: 100 DURATION: 03 Hrs M1-R4-01-19 1.3 Which of the following tag pair is used to list the text? (a) and (b) and (c)

More information

Adobe InDesign CC Voluntary Product Accessibility Template

Adobe InDesign CC Voluntary Product Accessibility Template Adobe InDesign CC Voluntary Product Accessibility Template The purpose of the Voluntary Product Accessibility Template is to assist Federal contracting officials in making preliminary assessments regarding

More information

INFS 2150 / 7150 Intro to Web Development / HTML Programming

INFS 2150 / 7150 Intro to Web Development / HTML Programming XP INFS 2150 / 7150 Intro to Web Development / HTML Programming Working with Graphics in a Web Page 1 Objectives Learn about different image formats Control the placement and appearance of images on a

More information

Library Administrator Job Aid

Library Administrator Job Aid Library Administrator Job Aid Clauses A clause is a section of a contract document that can include contract terms and conditions that are stored, updated and used within a document. Clauses are entered

More information

St. Benedict s High School. Computing Science. Software Design & Development. (Part 2 Computer Architecture) National 5

St. Benedict s High School. Computing Science. Software Design & Development. (Part 2 Computer Architecture) National 5 Computing Science Software Design & Development (Part 2 Computer Architecture) National 5 DATA REPRESENTATION Numbers Binary/Decimal Conversion Example To convert 69 into binary: write down the binary

More information

Interactive Multimedia. Multimedia and the World Wide Web

Interactive Multimedia. Multimedia and the World Wide Web Interactive Multimedia Multimedia and the World Wide Web Multimedia and WWW What is Multimedia? why is it important? Who needs to know about Multimedia? Interactive Multimedia hypermedia, hypertext media

More information

The City School PAF Chapter Comprehensive Worksheet April 2018 ICTech Class 7 Candidate Name: Index Number: Section: Branch/Campus: Date:

The City School PAF Chapter Comprehensive Worksheet April 2018 ICTech Class 7 Candidate Name: Index Number: Section: Branch/Campus: Date: The City School PAF Chapter Comprehensive Worksheet April 2018 ICTech Class 7 Candidate Name: Index Number: Section: Branch/Campus: Date: Maximum Marks: 20 Time Allowed: 1 ½ hours INSTRUCTIONS: Write your

More information

Part III Appendices 165

Part III Appendices 165 Part III Appendices 165 Appendix A Technical Instructions Learning Outcomes This material will help you learn how to use the software you need to do your work in this course. You won t be tested on it.

More information

PRESENCE. RadEditor Guide. SchoolMessenger 100 Enterprise Way, Suite A-300 Scotts Valley, CA

PRESENCE. RadEditor Guide. SchoolMessenger 100 Enterprise Way, Suite A-300 Scotts Valley, CA PRESENCE RadEditor Guide SchoolMessenger 100 Enterprise Way, Suite A-300 Scotts Valley, CA 95066 800-920-3897 www.schoolmessenger.com Contents Contents... 2 Introduction... 3 What is RadEditor?... 3 RadEditor

More information

YuJa Enterprise Video Platform Voluntary Product Accessibility Template (VPAT)

YuJa Enterprise Video Platform Voluntary Product Accessibility Template (VPAT) Platform Accessibility YuJa Enterprise Video Platform Voluntary Product Accessibility Template (VPAT) Updated: April 18, 2018 Introduction YuJa Corporation strives to create an equal and consistent media

More information

Schoology Voluntary Product Accessibility Template (VPAT)

Schoology Voluntary Product Accessibility Template (VPAT) Schoology Voluntary Product Accessibility Template (VPAT) DATE: 3/1/2016 PRODUCT NAME: Schoology Section 1194.21 Software Applications and Operating Systems (a) When software is designed to run on a system

More information

NATIONAL SPORTS SCHOOL ST BENEDICT COLLEGE

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

More information

CHAPTER 2 Information processing (Units 3 and 4)

CHAPTER 2 Information processing (Units 3 and 4) CHAPTER 2 Information processing (Units 3 and 4) Information-processing steps (page 54) a For each of the following information-processing steps, state its purpose and provide two examples of technology

More information

Dreamweaver Basics. Planning your website Organize site structure Plan site design & navigation Gather your assets

Dreamweaver Basics. Planning your website Organize site structure Plan site design & navigation Gather your assets Dreamweaver Basics Planning your website Organize site structure Plan site design & navigation Gather your assets Creating your website Dreamweaver workspace Define a site Create a web page Linking Manually

More information

Prentice Hall. Learning Media Design with Adobe CS4 (Skintik) Alabama - Course of Study - Interactive Multimedia Design

Prentice Hall. Learning Media Design with Adobe CS4 (Skintik) Alabama - Course of Study - Interactive Multimedia Design Prentice Hall Learning Media Design with Adobe CS4 C O R R E L A T E D T O Learning Media Design with Adobe CS4 Students will: Multimedia Components 1. Compare aspects of multimedia. Presentation Desktop

More information

QuickStart Guide MindManager 7 MAC

QuickStart Guide MindManager 7 MAC QuickStart Guide MindManager 7 MAC Contents Welcome to Mindjet MindManager...... 1 Technical Support and Registration... 1 About this User Guide............... 1 Learn about MindManager and maps... 2 What

More information

SlickEdit Gadgets. SlickEdit Gadgets

SlickEdit Gadgets. SlickEdit Gadgets SlickEdit Gadgets As a programmer, one of the best feelings in the world is writing something that makes you want to call your programming buddies over and say, This is cool! Check this out. Sometimes

More information

Screen Designer. The Power of Ultimate Design. 43-TV GLO Issue 2 01/01 UK

Screen Designer. The Power of Ultimate Design. 43-TV GLO Issue 2 01/01 UK Screen Designer The Power of Ultimate Design 43-TV-25-13 GLO Issue 2 01/01 UK 43-TV-25-13 GLO Issue 2 01/01 UK Table of Contents Table of Contents Honeywell Screen Designer - The Power of Ultimate Design

More information

Help Contents. Creating a Query - Synopsis

Help Contents. Creating a Query - Synopsis Help Contents Creating a Query - Synopsis...1 Phase 1: How to Begin a New Query...2 Phase 2: Choosing My Data Source...3 Phase 3: Choosing My Data Fields...4 Choosing My Data Fields - Selecting All Fields...4

More information

Programming with Visual Studio Higher (v. 2013)

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

More information

Common Technology Words and Definitions

Common Technology Words and Definitions Common Technology Words and Definitions 77 78 Common Technology Words and Definitions: ASCII American Standard Code for Information Interchange, a code that makes it possible to send information from one

More information

How to set up a local root folder and site structure

How to set up a local root folder and site structure Activity 2.1 guide How to set up a local root folder and site structure The first thing to do when creating a new website with Adobe Dreamweaver CS3 is to define a site and identify a root folder where

More information

S.1 ICT Distribute students eclass user accounts and school login accounts.

S.1 ICT Distribute students eclass user accounts and school login accounts. S.1 ICT 2015-16 1 Teaching schedules [Single lesson weekly] (1 st term) 1 Arrangement on eclass system and school computer students account. 2,3 i) The course requirement of Computer Literacy. ii) eclass

More information

elc International School

elc International School Subject: COMPUTER SCIENCE (0478) Syllabus 2016 Topics to be covered Section 1: Theory of Computer Science Theory: At the end of the section candidates should be able to Practical: At the end of the section

More information

vcenter Operations Manager User Interface 5.6 VPAT

vcenter Operations Manager User Interface 5.6 VPAT VMware, Inc. 3401 Hillview Avenue Palo Alto, CA 94304 (877) 486-9273 main (650) 427-5001 fax www.vmware.com vcenter Operations Manager User Interface 5.6 VPAT December 27, 2012 Since the VPAT must be comprehensive,

More information

Higher Computing Science Software Design and Development - Programming Summary Notes

Higher Computing Science Software Design and Development - Programming Summary Notes Higher Computing Science Software Design and Development - Programming Summary Notes Design notations A design notation is the method we use to write down our program design. Pseudocode is written using

More information

VISUAL BASIC 6.0 OVERVIEW

VISUAL BASIC 6.0 OVERVIEW VISUAL BASIC 6.0 OVERVIEW GENERAL CONCEPTS Visual Basic is a visual programming language. You create forms and controls by drawing on the screen rather than by coding as in traditional languages. Visual

More information

Adobe RoboHelp 9 Voluntary Product Accessibility Template

Adobe RoboHelp 9 Voluntary Product Accessibility Template Adobe RoboHelp 9 Voluntary Product Accessibility Template The purpose of the Voluntary Product Accessibility Template is to assist Federal contracting officials in making preliminary assessments regarding

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

Mobile MOUSe WEB SITE DESIGN ONLINE COURSE OUTLINE

Mobile MOUSe WEB SITE DESIGN ONLINE COURSE OUTLINE Mobile MOUSe WEB SITE DESIGN ONLINE COURSE OUTLINE COURSE TITLE WEB SITE DESIGN COURSE DURATION 19 Hours of Interactive Training COURSE OVERVIEW In this 7 session course Debbie will take you through the

More information

Non-Fiction Texts Websites

Non-Fiction Texts Websites Teacher s Notes and s Lesson 1 1. W17 understand and have the terminology to describe the role of word classes 2. W21 read accurately and use correctly, vocabulary which relates to key concepts in a subject

More information

CSE-1520R Test #1. The exam is closed book, closed notes, and no aids such as calculators, cellphones, etc.

CSE-1520R Test #1. The exam is closed book, closed notes, and no aids such as calculators, cellphones, etc. 9 February 2011 CSE-1520R Test #1 [7F] w/ answers p. 1 of 8 CSE-1520R Test #1 Sur / Last Name: Given / First Name: Student ID: Instructor: Parke Godfrey Exam Duration: 45 minutes Term: Winter 2011 The

More information

Lava New Media s CMS. Documentation Page 1

Lava New Media s CMS. Documentation Page 1 Lava New Media s CMS Documentation 5.12.2010 Page 1 Table of Contents Logging On to the Content Management System 3 Introduction to the CMS 3 What is the page tree? 4 Editing Web Pages 5 How to use the

More information

SecurityCenter 508 Compliance

SecurityCenter 508 Compliance SecurityCenter 508 Compliance Summary Table Section 508 Voluntary Product Accessibility Template Tenable Network Security, Inc. Updated May 5, 2015 SecurityCenter 5 The latest version of this document

More information

ONLINE SPECS. Connecting You with Key Christian Audiences

ONLINE SPECS. Connecting You with Key Christian Audiences ONLINE SPECS Connecting You with Key Christian Audiences Online Banner Ads 728 x 90 970x250 600 x 150 x Mobile Interstitial 320 x 50 300 250 300 x x250 ChristianityTodayAds.com 2 BANNER AD SPECIFICATIONS

More information

Adobe LiveCycle Rights Management ES3 Voluntary Product Accessibility Template

Adobe LiveCycle Rights Management ES3 Voluntary Product Accessibility Template Adobe LiveCycle Rights Management ES3 Voluntary Product Accessibility Template The purpose of the Voluntary Product Accessibility Template is to assist Federal contracting officials in making preliminary

More information

Scientific Communication CITS4008. Designing and Writing Web Pages Rachel Cardell-Oliver 2013 Based on notes by Robyn Owens

Scientific Communication CITS4008. Designing and Writing Web Pages Rachel Cardell-Oliver 2013 Based on notes by Robyn Owens Scientific Communication CITS4008 Designing and Writing Web Pages Rachel Cardell-Oliver 2013 Based on notes by Robyn Owens Proposed in 1989 by Tim Lee at CERN Mosaic released in 1993 Working group to define

More information

CSE-1520R Test #1. The exam is closed book, closed notes, and no aids such as calculators, cellphones, etc.

CSE-1520R Test #1. The exam is closed book, closed notes, and no aids such as calculators, cellphones, etc. 9 February 2011 CSE-1520R Test #1 [B4] p. 1 of 8 CSE-1520R Test #1 Sur / Last Name: Given / First Name: Student ID: Instructor: Parke Godfrey Exam Duration: 45 minutes Term: Winter 2011 The exam is closed

More information

USER GUIDE. MADCAP FLARE 2018 r2. Images

USER GUIDE. MADCAP FLARE 2018 r2. Images USER GUIDE MADCAP FLARE 2018 r2 Images Copyright 2018 MadCap Software. All rights reserved. Information in this document is subject to change without notice. The software described in this document is

More information

Department Curriculum and Assessment Outline

Department Curriculum and Assessment Outline Department: Computing Year Group: 7 Teaching, learning and assessment during the course: (Weeks, half terms) Think like a computer scientist Shapes, patterns, algorithms and animation Understand the web.

More information

Student Schedule Planner Section 508 Voluntary Product Accessibility Template

Student Schedule Planner Section 508 Voluntary Product Accessibility Template Student Schedule Planner Section 508 Voluntary Product Accessibility Template The purpose of the Voluntary Product Accessibility Template is to assist federal contracting officials in making preliminary

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

OCR GCSE Computing Learning Grids H/W

OCR GCSE Computing Learning Grids H/W COMPUTING GCSE OCR J275 OCR GCSE Computing Learning Grids H/W Unit A451: Computer Systems and Programming This learning grid H/W belongs to: Name: Form: Mr. Ahmed A451 - ATTENTION! Please read! These learning

More information

Tutorial: Input Grades in Blackboard

Tutorial: Input Grades in Blackboard Tutorial: Input Grades in Blackboard Get into the Grade Center The following steps will lead you to the Full Grade Center page (❶ - ❽). ❶ Enter the URL: blackboard.indstate.edu ❷ Enter username and password

More information

Namma Kalvi.

Namma Kalvi. Namma Kalvi COMPUTER APPLICATION PUBLIC EXAM - 2019 ANSWER KEY PART - A I Choose the correct answer 10x1=10 1. c. warm booting 6. d. All the above 11. d..css 2. c. Giga 7. d. 2 12. b. F5 3. b. VGA connector

More information

IB Computer Science Topic.2-

IB Computer Science Topic.2- Topic.2- Computer Organization Designed by: Allan Lawson Sources: Online Materials, thanks for all Topic 2.1.1 Computer Architecture Outline the architecture of a central processing unit (CPU) and the

More information

Adobe Business Catalyst Voluntary Product Accessibility Template

Adobe Business Catalyst Voluntary Product Accessibility Template Adobe Business Catalyst Voluntary Product Accessibility Template The purpose of the Voluntary Product Accessibility Template is to assist Federal contracting officials in making preliminary assessments

More information

Introducing Cascading Style Sheets. Cascading Style Sheet Basics Creating Styles Using Styles Manipulating Styles Text Formatting with CSS

Introducing Cascading Style Sheets. Cascading Style Sheet Basics Creating Styles Using Styles Manipulating Styles Text Formatting with CSS Introducing Cascading Style Sheets Cascading Style Sheet Basics Creating Styles Using Styles Manipulating Styles Text Formatting with CSS Cascading Style Sheet Basics CSS has many benefits: The pages look

More information

AQA GCSE Computer Science PLC

AQA GCSE Computer Science PLC 1 - Fundamentals of Algorithms Useful Websites BBC Bite Size Cambridge GCSE Exam Dates https://www.bbc.co.uk/education/subjects/z34k7ty Paper 1 14/05/2018 am https://www.cambridgegcsecomputing.org/ Paper

More information

A Flat file database. Problems with a flat file database (data redundancy)

A Flat file database. Problems with a flat file database (data redundancy) Data capture Before you can create a database, you need to collect data. This is known as data capture. One of the most common ways is to use and optical mark reader (OMR). An OMR sensor is used for marking

More information

LECTURE 4 THE USES OF TEXT IN MULTIMEDIA

LECTURE 4 THE USES OF TEXT IN MULTIMEDIA LECTURE 4 THE USES OF TEXT IN MULTIMEDIA 1 Objective Media Types What text is How text is created and stored in the computer How text is used in Multimedia Systems Advantages and Disadvantages of using

More information

Technology Applications (first semester) Keyboarding Essential Learning Outcomes (ELO s)

Technology Applications (first semester) Keyboarding Essential Learning Outcomes (ELO s) Technology Applications (first semester) Keyboarding (Approximate Time: 3 weeks) 1 st 3 Weeks Keep work area clean - no food or drinks around equipment Show posture, correct seating position, Home Row

More information

CCE RR NSQF LEVEL-2 KARNATAKA SECONDARY EDUCATION EXAMINATION BOARD, MALLESWARAM, BANGALORE NSQF LEVEL-2 EXAMINATION, JUNE, 2018

CCE RR NSQF LEVEL-2 KARNATAKA SECONDARY EDUCATION EXAMINATION BOARD, MALLESWARAM, BANGALORE NSQF LEVEL-2 EXAMINATION, JUNE, 2018 KARNATAKA SECONDARY EDUCATION EXAMINATION BOARD, MALLESWARAM, BANGALORE 560 003 Date : 28. 06. 2018 ] B CCE RR NSQF LEVEL-2 NSQF LEVEL-2 EXAMINATION, JUNE, 2018 MODEL ANSWERS CODE NO. : 86-EK Subject :

More information

You will have mastered the material in this chapter when you can:

You will have mastered the material in this chapter when you can: CHAPTER 6 Loop Structures OBJECTIVES You will have mastered the material in this chapter when you can: Add a MenuStrip object Use the InputBox function Display data using the ListBox object Understand

More information

Voluntary Product Accessibility Template Version 2.1 January 2016

Voluntary Product Accessibility Template Version 2.1 January 2016 Voluntary Product Accessibility Template Version 2.1 January 2016 For additional questions on this VPAT form, please contact support@yuja.com Overview YuJa is firmly committed to the belief that our Enterprise

More information

Base Module - Computer Essentials

Base Module - Computer Essentials Base Module - Computer Essentials This module sets out essential concepts and skills relating to the use of devices, file creation and management, networks, and data security. Understand key concepts relating

More information

S.1 ICT Week Title Content Remarks. Distribute students eclass user accounts, iclass accounts and school login accounts.

S.1 ICT Week Title Content Remarks. Distribute students eclass user accounts, iclass accounts and school login accounts. S.1 ICT 2017-18 1 Teaching schedule (1 st term) [Single lesson weekly] Information & Communication Technology 1 Arrangement on eclass, e-learning system and school computer students account. 2 i) The course

More information

Perch Documentation. U of M - Department of Computer Science. Written as a COMP 3040 Assignment by Cameron McKay, Marko Kalic, Riley Draward

Perch Documentation. U of M - Department of Computer Science. Written as a COMP 3040 Assignment by Cameron McKay, Marko Kalic, Riley Draward Perch Documentation U of M - Department of Computer Science Written as a COMP 3040 Assignment by Cameron McKay, Marko Kalic, Riley Draward 1 TABLE OF CONTENTS Introduction to Perch History of Perch ---------------------------------------------

More information

N5 Computing Science - Revision

N5 Computing Science - Revision Revision 1 1. Convert the following decimal numbers to binary using the table below. 22 144 73 128 64 32 16 8 4 2 1 2. How does a computer represent characters in a computer system? 3. Calculate the backing

More information

Access Groups. Collect and Store. Text Currency Date/Time. Tables Fields Data Type. You Your Friend Your Parent. Unique information

Access Groups. Collect and Store. Text Currency Date/Time. Tables Fields Data Type. You Your Friend Your Parent. Unique information Tutorial A database is a computerized record keeping system used to collect, store, analyze and report electronic information for a variety of purposes. Microsoft Access is a database. There are three

More information

Imagine. Create. Discover. User Manual. TopLine Results Corporation

Imagine. Create. Discover. User Manual. TopLine Results Corporation Imagine. Create. Discover. User Manual TopLine Results Corporation 2008-2009 Created: Tuesday, March 17, 2009 Table of Contents 1 Welcome 1 Features 2 2 Installation 4 System Requirements 5 Obtaining Installation

More information

Microsoft Excel 2016 Level 1

Microsoft Excel 2016 Level 1 Microsoft Excel 2016 Level 1 One Day Course Course Description You have basic computer skills such as using a mouse, navigating through windows, and surfing the Internet. You have also used paper-based

More information

Topic 2 Data and Information. Data Data can be defined as a set of recorded facts, numbers or events that have no meaning.

Topic 2 Data and Information. Data Data can be defined as a set of recorded facts, numbers or events that have no meaning. Topic 2 Data and Information Key The Key concepts for this topic are: Data Date is processed to produce information Information 2.1 What is Data? Data Data can be defined as a set of recorded facts, numbers

More information

Mrs. R. Jeanine Ewert Beaverton High School Beaverton, Michigan

Mrs. R. Jeanine Ewert Beaverton High School Beaverton, Michigan Mrs. R. Jeanine Ewert Beaverton High School Beaverton, Michigan Course Description Students in this course will learn how to design, develop and publish web sites and web-ready communication. Students

More information

The Building Blocks: Binary Numbers, Boolean Logic, and Gates. Purpose of Chapter. External Representation of Information.

The Building Blocks: Binary Numbers, Boolean Logic, and Gates. Purpose of Chapter. External Representation of Information. The Building Blocks: Binary Numbers, Boolean Logic, and Gates Chapter 4 Representing Information The Binary Numbering System Boolean Logic and Gates Building Computer Circuits Control Circuits CMPUT Introduction

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

WAM!NET Submission Icons. Help Guide. March 2015

WAM!NET Submission Icons. Help Guide. March 2015 WAM!NET Submission Icons Help Guide March 2015 Document Contents 1 Introduction...2 1.1 Submission Option Resource...2 1.2 Submission Icon Type...3 1.2.1 Authenticated Submission Icons...3 1.2.2 Anonymous

More information