Higher Software Development - Section 1a

Size: px
Start display at page:

Download "Higher Software Development - Section 1a"

Transcription

1 Higher Software Development - Section 1a _ 1. List the stages involved in the development of a program in the correct order? (7) 2. In the software development process, what happens at the analysis stage? (2) 3. When software is being produced for a company who is involved at the analysis stage? (2) 4. Explain why the job of the systems analyst at the analysis phase in an iterative process (2) 5. What is a software specification and why is it so important? (2) 6. Identify the Personnel from the Job Descriptions (5) Description Personnel They devise a project time schedule and make sure that all the deadlines for completion are met. The liaise with all staff to make sure everyone is clear about what they are doing and that progress is being met. Carries out un-biased comprehensive testing of the finished software. Creates the actual software code and may also have played a part in its design Commissions the software and specifies what they require the software to do Meets with the clients and discusses and documents their requirements. After a number of correspondences they will produce a detailed software specification that both parties are fully in agreement with.

2 Higher Software Development - Section 1b 1. Stepwise Refinement is one approach used in the design of software. Describe this process. (2) 2. What features should be considered at the design stage of the software development process? (2) 3. Name two methods of representing a program design and outline the main differences between them. (4) 4. Explain the following terms: Fitness for purpose User interface Readability (3) 5. Match the stage with the description of documentation given in the table (7) Design Evaluation Software Release Implementation Testing Maintenance Analysis Description of Documentation Stage Sets of test data, sample output listings Version update history Software specification Structured program listing with internal commentary Technical guide and the User guide Pseudocode or structure diagrams, HCI screen designs Comments on fitness for purpose, HCI and areas for potential improvements for next version

3 Higher Software Development - Section 1c 1. Identify three types of documentation that should be written at the design stage (3) 2. A program has been written which will allow a teacher to enter a student s set (3) of marks for five tests out of 50. It will calculate the average of these tests. Construct test data which will thoroughly test this program. Explain you why you have chosen each set of values. (6) 3. Why is it unwise to leave testing until after the coding has been completed? (3) 4. What is the purpose of the User Guide (2) 5. What is the purpose of the Technical Guide (2)

4 Higher Software Development - Section 1d For each of the following descriptions of software maintenance required, choose Corrective Adaptive or Perfective Description Software companies whose products were originally written for Windows XP had to carry out maintenance so that their software would run smoothly on Windows Vista. Recently Apple added some very polished and professional looking themed templates to its DVD software and overhauled its user interface. Due to popular demand, many video editing applications now provide added facilities to export productions directly to Youtube as well as burn to BluRay DVD. A 3D action game is not displaying its graphics properly on some models of graphic cards. The manufacturer of the software creates a free downloadable patch to fix this problem. When Adobe acquired Flash from Macromedia, they streamlined the user interface to have the same look and feel as other Adobe products like Photoshop and Illustrator as well as being able to import their files with layers intact. They also improved the functionality of the flash video importer. When Apple switched to Intel processors, software manufacturers had to carry out maintenance so that their software would run on the Intel chips. When Norton s Anti-Virus 2006 software was installed on a machine which already had another anti-virus product it would cause the system to freeze and crash. Norton had to resolve this issue promptly.

5 Higher Software Development - Section 2a 1. Machine code is an example of a low level language. State two difficulties in writing programs in machine code. (2) 2. What is a declarative language and how does it differ from a procedural language. (3) 3. What would a text editor be used for? (1) 4. Describe how applications are created using event driven languages. (3) 5. Outline the difference in the way compilers and interpreters translate high level program code into machine code. (2) 6. Here is a piece of code written using Visual basic. Compare the number of times the Print statement is translated by a compiler and an interpreter. (2) For times = 1 to 500 Print Welcome Next times 7. What is a macro and how can a macro be created? (2)

6 Higher Software Development - Section 2b 1. Select True or False for each of the following statements - Text editors are also known as development environments True False Notepad is an example of text editor True False Internet Explorer is an example of a text editor True False Cut, copy and paste are features that are only available in some text editors True False Text editors are common features of all development environments True False 2. Match the language type from the word list below with the description given. Scripting Event Driven Declarative Procedural Such languages are often associated with Artificial Intelligence. Programs Define knowledge bases consisting of facts and rules. Results are Obtained by submitting queries to the knowledge base A means of coding short routines within an application package to customise its use. This allows complex and laborious tasks to be automated by initiating a user-defined routine The most traditional form of programming where solutions are defined using lines of code in a set sequence with clear start and finish points. while the code can be modularised, there is still a set sequence of execution using a top down approach A programming environment that makes it easy to build software applications with graphical user interface. The programmer draws the interface elements an code is attached to these. The code is initiated by a user event like clicking on a button or selecting from a menu.

7 Higher Software Development - Section 3a 1. State suitable variable types for the following, the first one is done for you - (5) Name - string Age - Height - Car reg - 50 Names postcodes - 2. Clearly describe a fixed loop 3. Clearly describe a conditional loop (2) 4. What is a nested loop? 5. What is a pre-defined function? 6. Give an example of a pre-defined function? (2) 7. A teacher is marking a set of exams. If a pupil s results are greater than 75% they will be awarded a Grade A. Create the simple condition missing from the conditional statement below. If then display Grade A (2) (2) (1) (2) 8. Discount is only given if you go to the cinema on Monday or Wednesday, if you go any other day, there is no discount. Create the complex condition missing from the conditional statement below. (3) If then Else End IF Discount given No discount given

8 Software Development - Section 3b 1. For each of the following descriptions, choose Global or Local (6) A variable which needs to be available to every program module These types of variables should be kept to a minimum These variables are not recognised outwith the module in which they are used. The value of these variables can be changed from anywhere in the program These variables are critical in bit software projects where several programmers contribute different modules Variables of the same name in different modules won t corrupt each other 2. Explain the difference between a global and local variable. (2) 3. Why is it preferable to use local variables than global variables? (2) 4. Explain how in and in/out parameter relate to By value and By reference parameters (2)

9 Higher Software Development - Section 4a Name: Identify which algorithm describes, a Linear Search, Finding Maximum, Finding Minimum, Input Validation and Counting Occurences. 1. Get value While value < given min or value > given max Do Display error message Ask user to re-enter Get value End while 2. Set minimum to largest possible value Loop for each item Get data item If data item < minimum then Set minimum to data item End if End loop Display minimum value 3. Set counter = 0 Loop for each item Get data item If data item = value being counted then Add 1 to counter End if End loop 4. Set maximum to smallest possible value Loop for each item Get data item If data item > maximum then Set maximum to data item End if End loop Display maximum value 5. Get item to be found Set found = false Loop for each item in list If data item = item to be found then Display position in list Set found = true End if End loop If found = false then display Item not found

10 Higher Software Development - Section 4b For each of the following programming situations, identify which algorithm would be used. Choose from - Input validation - IV Finding minimum - FMIN Finding maximum - FMAX Counting occurrences - CO Linear search - LS Identifying the highest recorded temperature in a list of temperatures for the days of a month Identifying the finishing position of a competitor in the Tour de Caledonia cycle event from the list of finishers Getting the user to enter their lottery numbers Recording the number of silver cars from a list of employee car details Finding the youngest listed player of all the teams in a football World Cup Final Finding the percentage of pupils passing an exam from a list of their marks Identifying the best of 5 judge scores from 1 to 10 for an ice skating competitor Finding the number of months in the year that have exactly 30 days Getting judges to enter their scores from 1 to 10 for an ice skating competitor Identifying whether a certain pupil is on a schools daily absence list.

Chapter Twelve. Systems Design and Development

Chapter Twelve. Systems Design and Development Chapter Twelve Systems Design and Development After reading this chapter, you should be able to: Describe the process of designing, programming, and debugging a computer program Explain why there are many

More information

Software Development Techniques. 26 November Marking Scheme

Software Development Techniques. 26 November Marking Scheme Software Development Techniques 26 November 2015 Marking Scheme This marking scheme has been prepared as a guide only to markers. This is not a set of model answers, or the exclusive answers to the questions,

More information

Chapter Objectives 1 of 2. Chapter 3. The Operating System. Chapter Objectives 2 of 2. The Operating System. The Operating System

Chapter Objectives 1 of 2. Chapter 3. The Operating System. Chapter Objectives 2 of 2. The Operating System. The Operating System Teachers Discovering Computers Integrating Technology and Digital Media in the Classroom 6 th Edition Chapter 3 Application Productivity Tools for Educators Chapter Objectives 1 of 2 Explain the role of

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

Software Development Techniques. December Sample Exam Marking Scheme

Software Development Techniques. December Sample Exam Marking Scheme Software Development Techniques December 2015 Sample Exam Marking Scheme This marking scheme has been prepared as a guide only to markers. This is not a set of model answers, or the exclusive answers to

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

Course Outline. Introduction to java

Course Outline. Introduction to java Course Outline 1. Introduction to OO programming 2. Language Basics Syntax and Semantics 3. Algorithms, stepwise refinements. 4. Quiz/Assignment ( 5. Repetitions (for loops) 6. Writing simple classes 7.

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

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

[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

WCO CLiKC! Connection and Access Guide for Users

WCO CLiKC! Connection and Access Guide for Users WCO CLiKC! Connection and Access Guide for Users 1/16 SUMMARY 1. INTRODUCTION... 3 HOW TO USE THIS GUIDE... 3 NOTE... 3 2. WHAT ARE THE TECHNICAL PREREQUISITES?... 4 HARDWARE SPECIFICATIONS... 4 SOFTWARE

More information

To use centralised systems for remote control of computers and deployment of software, system images and security updates.

To use centralised systems for remote control of computers and deployment of software, system images and security updates. JOB DESCRIPTION POST: First Line Support Desk Analyst GRADE: Support Staff Grade 2/3 RESPONSIBLE TO: KEY PURPOSE: IT Manager To work as part of the ilrc team to provide on-going proactive technical and

More information

Chapter 3. Iteration

Chapter 3. Iteration Chapter 3 Iteration Iteration Iteration is the form of program control that allows us to repeat a section of code. For this reason this form of control is often also referred to as repetition. The programming

More information

Lab 1 Implementing a Simon Says Game

Lab 1 Implementing a Simon Says Game ECE2049 Embedded Computing in Engineering Design Lab 1 Implementing a Simon Says Game In the late 1970s and early 1980s, one of the first and most popular electronic games was Simon by Milton Bradley.

More information

Digital Media II. EXAM INFORMATION Items. Points. Prerequisites. Grade Level. Course Length. Career Cluster. Performance Standards

Digital Media II. EXAM INFORMATION Items. Points. Prerequisites. Grade Level. Course Length. Career Cluster. Performance Standards EXAM INFORMATION Items 42 Points 57 Prerequisites DIGITAL MEDIA I Grade Level 10-12 Course Length ONE YEAR Career Cluster ARTS, A/V TECHNOLOGY, AND COMMUNICATION INFORMATION TECHNOLOGY Performance Standards

More information

Edexcel GCSE ICT. Controlled Assessment. Teacher Support Book 2012

Edexcel GCSE ICT. Controlled Assessment. Teacher Support Book 2012 Edexcel GCSE ICT Controlled Assessment Teacher Support Book 2012 Edexcel GCSE ICT Controlled Assessment Teacher Support Book Unit 2: Using Digital Tools Unit 4: Creating Digital Products Welcome to the

More information

The main website for Henrico County, henrico.us, received a complete visual and structural

The main website for Henrico County, henrico.us, received a complete visual and structural Page 1 1. Program Overview The main website for Henrico County, henrico.us, received a complete visual and structural overhaul, which was completed in May of 2016. The goal of the project was to update

More information

UNIVERSITY OF CAMBRIDGE INTERNATIONAL EXAMINATIONS International General Certificate of Secondary Education *330870059* COMPUTER STUDIES 040/ Paper May/June 0 hours 30 minutes Candidates answer on the

More information

ICT1512 Introduction to Interactive Programming. Assignment 7 Discussion

ICT1512 Introduction to Interactive Programming. Assignment 7 Discussion Join Meeting Ensure you have latest version of Adobe Flash installed Click headset icon in upper left corner to join audio Do NOT activate webcam! Do NOT change audio icon next to your name! Introduce

More information

MAGIX Academic Suite Pro X Multimedia for teachers and students

MAGIX Academic Suite Pro X Multimedia for teachers and students MAGIX Academic Suite Pro X Multimedia for teachers and students Contents: Packaging: 3 DVDs, 1 mini manual (32 pages) Minibox, 190 x 135 x 50 mm Release: 15.03.2012 Product type: Suite/Bundle Language:

More information

UNIVERSITY OF CAMBRIDGE INTERNATIONAL EXAMINATIONS. Cambridge ICT Starters On Track

UNIVERSITY OF CAMBRIDGE INTERNATIONAL EXAMINATIONS. Cambridge ICT Starters On Track UNIVERSITY OF CAMBRIDGE INTERNATIONAL EXAMINATIONS www.xtremepapers.com Cambridge ICT Starters On Track Scheme of Work 4296 Video or Animation for a Purpose Stage 2 Module Introduction In this module,

More information

SOLO NETWORK. Adobe Flash Catalyst CS5.5. Create expressive interfaces and interactive content without writing code

SOLO NETWORK. Adobe Flash Catalyst CS5.5. Create expressive interfaces and interactive content without writing code (11) 4062-6971 (21) 4062-6971 (31) 4062-6971 (41) 4062-6971 (48) 4062-6971 (51) 4062-6971 (61) 4062-6971 Adobe Flash Catalyst CS5.5 Create expressive interfaces and interactive content without writing

More information

seminar learning system Seminar Author and Learning System are products of Information Transfer LLP.

seminar learning system Seminar Author and Learning System are products of Information Transfer LLP. seminar learning system Seminar Author and Learning System are products of Information Transfer LLP. Burleigh House 15 Newmarket Road Cambridge UK CB5 8EG E-mail: support@seminar.co.uk Phone: +44 (0)1223

More information

Computing Science Software Design & Development National 5 - Theory Notes

Computing Science Software Design & Development National 5 - Theory Notes Computing Science Software Design & Development National 5 - Theory Notes 1 Outcomes and Assessment Standards Outcome 1 The candidate will: 1 Explain how programs work, drawing on understanding of concepts

More information

Burn Movies On Onedrive

Burn Movies On Onedrive Instructions For Use Windows Dvd Maker To Burn Movies On Onedrive The latest version was released in 2012 as Windows Movie Maker 2012 for Using Windows DVD Maker, you can burn a WMV file to DVD directly.

More information

Course: Honors AP Computer Science Instructor: Mr. Jason A. Townsend

Course: Honors AP Computer Science Instructor: Mr. Jason A. Townsend Course: Honors AP Computer Science Instructor: Mr. Jason A. Townsend Email: jtownsend@pkwy.k12.mo.us Course Description: The material for this course is the equivalent of one to two semesters of an entry

More information

Fronter User Level 2

Fronter User Level 2 London MLE Fronter Waltham Forest How to customise your today page It is easy to customise your today page so that it shows exactly what you want to see when you login. The instructions below will help

More information

CS 2604 Minor Project 1 Summer 2000

CS 2604 Minor Project 1 Summer 2000 RPN Calculator For this project, you will design and implement a simple integer calculator, which interprets reverse Polish notation (RPN) expressions. There is no graphical interface. Calculator input

More information

Applied Information and Communication Technology

Applied Information and Communication Technology Applied Information and Communication Technology Unit 7: Using Database Software Summer 2010 Example Solution and Principal Examiner Advice and Guidance Activity 1...3 Activity 2...6 Activity 3...12 Activity

More information

COMPUTER SCHOOL. Internet. Internet Courses. Work anywhere in the world. Build your future the INTEC way

COMPUTER SCHOOL. Internet. Internet Courses. Work anywhere in the world. Build your future the INTEC way COMPUTER SCHOOL Internet Internet Courses Work anywhere in the world Build your future the INTEC way Internet Courses Launch your career the INTEC way! We are living in the Information age and perhaps

More information

Which statement regarding computer programs is correct? Which statement best describes a computer program?

Which statement regarding computer programs is correct? Which statement best describes a computer program? 1 of 21 5/27/17, 8:21 PM Book Big Java, Early Objects Edition 6 Introduction 1. Which statement best describes a computer program? A. A program is a sequence of comments. B. A program can dece what task

More information

Chapter 2 - Frequency Distributions and Graphs

Chapter 2 - Frequency Distributions and Graphs 1. Which of the following does not need to be done when constructing a frequency distribution? A) select the number of classes desired B) find the range C) make the class width an even number D) use classes

More information

Adobe Photoshop Cs3 Software Full Version For Windows 7

Adobe Photoshop Cs3 Software Full Version For Windows 7 Adobe Photoshop Cs3 Software Full Version For Windows 7 Photoshop CS3 Free Download as it gives more productivity with photo editing. Adobe Photoshop CS3 Latest Version Download. Adobe Photoshop CS3 Technical

More information

GRADING SCALE: 40% Exams 50% Daily Work (Assignments) 10% Work Habits

GRADING SCALE: 40% Exams 50% Daily Work (Assignments) 10% Work Habits OHHS Career and Technology Computer Science IT Academy 2 Course Code: CTO603 Grades: 9, 10, 11, 12 Prerequisites: MS Word Length: One Semester/Half a Credit Course Fee: None COURSE DESCRIPTION: This course

More information

CSCE 441 Computer Graphics Fall 2018

CSCE 441 Computer Graphics Fall 2018 CSCE 441 Computer Graphics Fall 2018 Meetings: Monday, Wednesday, Friday 9:10-10:00 a.m. Location: HRBB 113 Instructor: Dr. John Keyser Office: 527C, H.R. Bright Building Phone: 458-0167 Email: keyser@cse.tamu.edu

More information

Object Oriented Programming

Object Oriented Programming Binnur Kurt kurt@ce.itu.edu.tr Istanbul Technical University Computer Engineering Department 1 Version 0.1.2 About the Lecturer BSc İTÜ, Computer Engineering Department, 1995 MSc İTÜ, Computer Engineering

More information

DEPARTMENT OF BUSINESS AND OFFICE ADMINISTRATION COURSE OUTLINE FALL 2017 OA 1145 B2 3( ) Excel and Access, Core 67.5 Hours

DEPARTMENT OF BUSINESS AND OFFICE ADMINISTRATION COURSE OUTLINE FALL 2017 OA 1145 B2 3( ) Excel and Access, Core 67.5 Hours DEPARTMENT OF BUSINESS AND OFFICE ADMINISTRATION COURSE OUTLINE FALL 2017 OA 1145 B2 3(3-0-1.5) Excel and Access, Core 67.5 Hours Monday, Wednesday, and Friday 1:00 2:20 p.m. A312 Instructor Janelle MacRae

More information

2018 Pummill Relay problem statement

2018 Pummill Relay problem statement 2018 Pummill Relays CS Problem: Minimum Spanning Tree Missouri State University For information about the Pummill Relays CS Problem, please contact: KenVollmar@missouristate.edu, 417-836-5789 Suppose there

More information

Installing SSP Admin Console

Installing SSP Admin Console The School Seating Planner admin console for SIMS is an application that enables School Seating Planner to integrate with SIMS in order to set-up, configure, and maintain the seating planner for your school

More information

AS/A Level GCE ICT. OCR AS/A Level GCE in ICT Unit G064 Exemplification of Mark Scheme

AS/A Level GCE ICT. OCR AS/A Level GCE in ICT Unit G064 Exemplification of Mark Scheme AS/A Level GCE ICT OCR AS/A Level GCE in ICT Unit G064 Exemplification of Mark Scheme OCR 2012 A2 Unit G064: ICT Project Exemplification of Mark Scheme: Teachers Notes (a) Definition, Investigation and

More information

Interactive Game Design with Greenfoot YEAR 1 Greenfoot Single-player Interactive Game

Interactive Game Design with Greenfoot YEAR 1 Greenfoot Single-player Interactive Game MESA VIRTUAL COMPUTER SCIENCE COMPETITION CYBER RULES 2018 Interactive Game Design with Greenfoot YEAR 1 Greenfoot Single-player Interactive Game Level: Type of Contest: Composition of Team: Number of

More information

DEPARTMENT OF APPLIED TECHNOLOGY Video Technology I

DEPARTMENT OF APPLIED TECHNOLOGY Video Technology I Unit I Intro to Class 2 days The production Process 5 days The Production Team 5 days Looking Through The Camaera 5 days\ VFA Video Footage Assignment 20 days 37 Days equipment. What are your expectations

More information

Photoshop Manuals Software Full Version 7.0 For Windows 7

Photoshop Manuals Software Full Version 7.0 For Windows 7 Photoshop Manuals Software Full Version 7.0 For Windows 7 adobe photoshop 7.0 free download full version for Windows 7 - Adobe Photoshop The official patch for Adobe Photoshop CS3. antivirus software Adobe.

More information

The task or context will be familiar and involve few variable aspects. The techniques used will be familiar or commonly undertaken.

The task or context will be familiar and involve few variable aspects. The techniques used will be familiar or commonly undertaken. Relevant LINKS BACK TO ITQ UNITS [1] Handbook home page [2] Overview Digital Editing and Publishing at Silver Level requires the candidate to plan and choose the correct designs and layouts for publications

More information

Curriculum Mapping for National Curriculum Statement Grades R-12 and Oracle Academy.

Curriculum Mapping for National Curriculum Statement Grades R-12 and Oracle Academy. Curriculum Mapping for National Curriculum Statement Grades R-12 and Oracle Academy. Contents Executive Summary... 3 IT Curriculum Overview... 3 Aims... 3 Oracle Academy Introduction to Computer Science...

More information

Content Evaluation Template

Content Evaluation Template Content Evaluation Template This template should be used for desk-based Content evaluations of CD-ROMs and Websites that are designed for student or teacher use. Please complete those areas marked in grey

More information

INFS 2150 (Section A) Fall 2018

INFS 2150 (Section A) Fall 2018 INFS 2150 (Section A) Fall 2018 Introduction to Web Development Class meets TUE & THU: 12:30am-1:45pm: in Wheatley 114 Instructor: Peter Y. Wu Office: Wheatley 309 Office Hours: Tuesday 9:00 am-12:00 noon;

More information

CS 101, Spring 2016 March 22nd Exam 2

CS 101, Spring 2016 March 22nd Exam 2 CS 101, Spring 2016 March 22nd Exam 2 Name: Question 1. [3 points] Which of the following loop statements would most likely cause the loop to execute exactly n times? You may assume that n will be set

More information

25 Suggested Time: 30 min

25 Suggested Time: 30 min Name: Date: PRE-TEST 13 Int roduct ion t o St at ist ics Name Date Period Name: Unit 9: Introduction to Statistics Final Exam Review Interpreting data in a line plot Date: CHAPTER TEST A Complete. Use

More information

Class 8 ALGORITHMS AND FLOWCHARTS. The City School

Class 8 ALGORITHMS AND FLOWCHARTS. The City School Class 8 ALGORITHMS AND FLOWCHARTS ALGORITHMS AND FLOWCHARTS A typical programming task can be divided into two phases: Problem solving phase produce an ordered sequence of steps that describe solution

More information

About these Release Notes. Product Information

About these Release Notes. Product Information PLEASE THINK BEFORE YOU PRINT Release Notes SMART Response 2009 About these Release Notes These release notes summarize the changes in SMART Response 2009 (formerly Senteo ) assessment software. Product

More information

Skills Canada National Competition Contest Description 08 - IT Office Software Applications / Secondary May 27-30, Saskatoon

Skills Canada National Competition Contest Description 08 - IT Office Software Applications / Secondary May 27-30, Saskatoon Skills Canada National Competition Contest Description 08 - IT Office Software Applications / Secondary May 27-30, 2015 - Saskatoon 1. The Importance of Essential Skills for Careers in the Skilled Trades

More information

A2 Unit G064: ICT Project

A2 Unit G064: ICT Project A Unit G06: ICT Project Exemplification of Mark Scheme: Teachers Notes (a) Definition, Investigation and Analysis (i) Definition nature of the problem to be investigated 1 mark a brief description of the

More information

OVERVIEW. 120 minutes. Technology tools / Platforms Tested (Mandatory) i) NA ii) Technology tools / Platforms Tested (Select any one) i) NA ii)

OVERVIEW. 120 minutes. Technology tools / Platforms Tested (Mandatory) i) NA ii) Technology tools / Platforms Tested (Select any one) i) NA ii) QP CODE: QP TITLE: Q6702 Software Developer OVERVIEW Test Duration Duration - SSC/N0502 Duration - SSC/N9001 Duration SSC/N9002 Duration SSC/N9003 Duration SSC/N9004 Duration SSC/N9005 Natural Language

More information

2007 Canadian Computing Competition: Senior Division. Sponsor:

2007 Canadian Computing Competition: Senior Division. Sponsor: 2007 Canadian Computing Competition: Senior Division Sponsor: Canadian Computing Competition Student Instructions for the Senior Problems 1. You may only compete in one competition. If you wish to write

More information

Effortlessly create incredible movies

Effortlessly create incredible movies Worldwide ADOBE PREMIERE ELEMENTS 8 Effortlessly create incredible movies The complete solution for your videos Automated moviemaking options Professional-quality effects and sound Sharing on disc, the

More information

Lab 1 Implementing a Simon Says Game

Lab 1 Implementing a Simon Says Game ECE2049 Embedded Computing in Engineering Design Lab 1 Implementing a Simon Says Game In the late 1970s and early 1980s, one of the first and most popular electronic games was Simon by Milton Bradley.

More information

22nd ANNUAL SKILLS MANITOBA COMPETITION CONTEST DESCRIPTION

22nd ANNUAL SKILLS MANITOBA COMPETITION CONTEST DESCRIPTION 22nd ANNUAL SKILLS MANITOBA COMPETITION CONTEST DESCRIPTION CONTEST NAME: 3D Digital Game Art CONTEST NO: CATEGORY: Post-Secondary CONTEST LOCATION: Tec Voc High School CONTEST START TIME AND DURATION:

More information

Using the Originality Report in Turnitin Student Guide

Using the Originality Report in Turnitin Student Guide Using the Originality Report in Turnitin Student Guide This guide describes how to view, operate and interpret the matches made in the originality report produced by Turnitin on your submitted assignments.

More information

INSTRUCTIONS FOR FACULTY USER MANUAL CENTRE FOR PROFESSIONAL STUDIES. 1 P age

INSTRUCTIONS FOR FACULTY USER MANUAL CENTRE FOR PROFESSIONAL STUDIES. 1 P age INSTRUCTIONS FOR FACULTY USER MANUAL CENTRE FOR PROFESSIONAL STUDIES 1 P age Table of Contents Getting Started... 3 Logging In to Portal... 4 Choosing Faculty... 5 Course Website... 7 Grade Points Entry...

More information

Best Video Tutor Software Full Version 2012 For Windows Xp

Best Video Tutor Software Full Version 2012 For Windows Xp Best Video Tutor Software Full Version 2012 For Windows Xp This article introduces the best 10 free video editing software for Windows for you. of Different Free Windows Video Editors, Part 3: Best Video

More information

AP Digital Portfolio: Student User Guide for AP Computer Science Principles. Fall 2017

AP Digital Portfolio: Student User Guide for AP Computer Science Principles. Fall 2017 AP Digital Portfolio: Student User Guide for AP Computer Science Principles Welcome... 1 Digital Portfolio Access and Class Enrollment... 1 Log in Using Your College Board Username and Password...1 Enrolling

More information

(Tests = 40%) + (Assignments = 40%) + (Participation = 20%) = (Quarter Final Grade)

(Tests = 40%) + (Assignments = 40%) + (Participation = 20%) = (Quarter Final Grade) Weighted Column GRADE CENTER The weighted column is a type of calculated column that generates a grade based on the result of selected columns and categories, and their respective percentages. A weighted

More information

Pseudocode. ARITHMETIC OPERATORS: In pseudocode arithmetic operators are used to perform arithmetic operations. These operators are listed below:

Pseudocode. ARITHMETIC OPERATORS: In pseudocode arithmetic operators are used to perform arithmetic operations. These operators are listed below: Pseudocode There are 3 programming/pseudocode constructs: 1. Sequence: It refers that instructions should be executed one after another. 2. Selection: This construct is used to make a decision in choosing

More information

VISUAL GUIDE to. RX Scripting. for Roulette Xtreme - System Designer 2.0. L J Howell UX Software Ver. 1.0

VISUAL GUIDE to. RX Scripting. for Roulette Xtreme - System Designer 2.0. L J Howell UX Software Ver. 1.0 VISUAL GUIDE to RX Scripting for Roulette Xtreme - System Designer 2.0 L J Howell UX Software 2009 Ver. 1.0 TABLE OF CONTENTS INTRODUCTION...ii What is this book about?... iii How to use this book... iii

More information

Welcome to Yearbook Our Main Goal TO PRODUCE THE BEST YEARBOOK THAT GROVE CITY CHRISTIAN CAN HAVE! ONE THAT IS HONORING TO GOD, TO THE

Welcome to Yearbook Our Main Goal TO PRODUCE THE BEST YEARBOOK THAT GROVE CITY CHRISTIAN CAN HAVE! ONE THAT IS HONORING TO GOD, TO THE Welcome to Yearbook 2017-2018 Our Main Goal TO PRODUCE THE BEST YEARBOOK THAT GROVE CITY CHRISTIAN CAN HAVE! ONE THAT IS HONORING TO GOD, TO THE SCHOOL AND TO EACH OF YOU THAT ARE ON THE GCC YEARBOOK STAFF.

More information

HALTON SKILLS COMPETITION WEBSITE DEVELOPMENT SCOPE SECONDARY LEVEL Coordinator: Ron Boyd,

HALTON SKILLS COMPETITION WEBSITE DEVELOPMENT SCOPE SECONDARY LEVEL Coordinator: Ron Boyd, Coordinator: Ron Boyd, rwboyd@orionsweb.net PURPOSE OF THE CHALLENGE To provide competitors with the opportunity to demonstrate, through practical and theoretical application, their skills in client- and

More information

Gradebook - Grades Tab Create Assignment

Gradebook - Grades Tab Create Assignment Gradebook - Grades Tab Create Assignment If no assignments have been created for the selected class in the selected term, the student names will not display. No Grades Found will be displayed where the

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

Design and Implementation of Computer Room Management System in University

Design and Implementation of Computer Room Management System in University Design and Implementation of Computer Room Management System in University YOUwen Zhang, Dong Kang* {Zhangyouwen521@163.com} HaiNan college of Economics and Business Haikou 571127, China Abstract. With

More information

INTRANET GUIDANCE. Acorn Care & Education is improving the way that everyone working in our schools can access and share information.

INTRANET GUIDANCE. Acorn Care & Education is improving the way that everyone working in our schools can access and share information. INTRANET GUIDANCE Acorn Care & Education is improving the way that everyone working in our schools can access and share information. There are now two websites: Public information can be found on our website;

More information

Photoshop Handbook Full Version Xp Key Cnet

Photoshop Handbook Full Version Xp Key Cnet Photoshop Handbook Full Version Xp Key Cnet InDesign, Illustrator, XI Pro and many more. full version mac pinnacle studio plus 12 serial number 9.0 manual microsoft word Photoshop Elements. download Flash

More information

Importing School Data Into Renaissance Place

Importing School Data Into Renaissance Place Importing School Data Into Renaissance Place IF the pupils DATES OF BIRTHS ARE IMPORTED AS 01/01/9999 STAR Norming calculations will begin from that date This guide will show you how to import a list of

More information

Welcome to the new BC Bid!

Welcome to the new BC Bid! BC Bid has a new design, new features and services, but most importantly, a new way of doing business. Beginning in early 2003, suppliers will be able to submit bids and proposals electronically in response

More information

Introduction to the SAM Student Guide 4. How to Use SAM 5. Logging in the First Time as a Pre-registered Student 5 Profile Information 7

Introduction to the SAM Student Guide 4. How to Use SAM 5. Logging in the First Time as a Pre-registered Student 5 Profile Information 7 Contents Introduction to the SAM Student Guide 4 How to Use SAM 5 Logging in the First Time as a Pre-registered Student 5 Profile Information 7 Logging into SAM as a New User 9 Forgot Password 14 Grace

More information

Proposal: [Product Name] User Documentation

Proposal: [Product Name] User Documentation l i s a p r i c e Proposal: [Product Name] User Documentation l i s a @ w r i n k l y b r a i n. c o m w w w. w r i n k l y b r a i n. c o m Introduction As my first project for [Client] as a contractor,

More information

Windows 7 Handbook Tools Full Version 32 Bit

Windows 7 Handbook Tools Full Version 32 Bit Windows 7 Handbook Tools Full Version 32 Bit With Key Updated Windows 7 Activation key for Windows 32 bit and 64 bit. Type of your Windows 7 Activation key and then go with the instructions. Windows 7

More information

CS Homework 4 Employee Ranker. Due: Wednesday, February 8th, before 11:55 PM Out of 100 points. Files to submit: 1. HW4.py.

CS Homework 4 Employee Ranker. Due: Wednesday, February 8th, before 11:55 PM Out of 100 points. Files to submit: 1. HW4.py. CS 216 Homework 4 Employee Ranker Due: Wednesday, February 8th, before 11: PM Out of 0 points Files to submit: 1. HW4.py This is an INDIVIDUAL assignment! Collaboration at a reasonable level will not result

More information

CpE213: Project C Programming Based Application

CpE213: Project C Programming Based Application CpE213: Project 3 8051 C Programming Based Application Goals: For your project 3, you will interface a 4 4 KEYPAD to your microcontroller and build a simple calculator. The Hyperterminal (or similar terminal

More information

SeaPerch Engineering Notebook Guide

SeaPerch Engineering Notebook Guide 2018-10-07 2018 SeaPerch Engineering Notebook Guide 2 Table of Contents The Engineering Notebook 3 SeaPerch Engineering Notebook Challenge.. 4 SeaPerch Engineering Notebook Challenge Rules. 5 Required

More information

Printing in Cuyahoga Heights since 1918

Printing in Cuyahoga Heights since 1918 4337 East 49th Street, Cuyahoga Heights, Ohio 44125 216-271-5300 Phone info@angstromgraphics.com www.angstromgraphics.com Facebook https://www.facebook.com/angstromgraphics/ Printing in Cuyahoga Heights

More information

FACTFILE: GCE DIGITAL TECHNOLOGY

FACTFILE: GCE DIGITAL TECHNOLOGY FACTFILE: GCE DIGITAL TECHNOLOGY AS1: APPROACHES TO SYSTEM DEVELOPMENT 2 Design development testing Learning Outcomes Students should be able to: Describe the purpose of system design, development and

More information

Reminder. Course project team forming deadline. Course project ideas. Next milestone

Reminder. Course project team forming deadline. Course project ideas. Next milestone Reminder Course project team forming deadline Thursday 9/6 11:59pm You will be randomly assigned to a team after the deadline Course project ideas If you have difficulty in finding team mates, send your

More information

Term 1 Animation Prime

Term 1 Animation Prime Master Presenter Manual Term 1 OV3102 Effective from: May 2018 Ver. 1.0 Amendment Record Version No. Effective Date Change Replaced Pages 1.0 May 2018 New Term 1 Aptech Limited Page 2 TABLE OF CONTENTS

More information

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

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

More information

JIM HARBIN (FAME) STUDENT PRODUCTION ENTRY DEADLINES

JIM HARBIN (FAME) STUDENT PRODUCTION ENTRY DEADLINES 2018-19 JIM HARBIN (FAME) STUDENT PRODUCTION ENTRY DEADLINES SJCSD ENTRY DEADLINE Friday, March 1, 2019 COUNTYJUDGING Monday, April 2, 2019 REGIONAL DEADLINE May 3, 2019 STATE DEADLINE TBD **If the media

More information

Web Design: Business Site Project

Web Design: Business Site Project Web Design: Business Site Project Purpose: You will be developing a large business site. The purpose of this website is to demonstrate your knowledge of web design elements. Directions: You will have benchmark

More information

Installation BEFORE INSTALLING! Minimum System Requirements

Installation BEFORE INSTALLING! Minimum System Requirements OPERATING MANUAL Installation BEFORE INSTALLING! NOTE: It is recommended that you quit all other applications before running this program. NOTE: Some virus detection programs can be set to scan files on

More information

CS : Computer Programming, Spring 2003 Programming Project #5: Sports Scores Due by 10:20am Wednesday April

CS : Computer Programming, Spring 2003 Programming Project #5: Sports Scores Due by 10:20am Wednesday April CS 1313 010: Computer Programming, Spring 2003 Programming Project #5: Sports Scores Due by 10:20am Wednesday April 9 2003 This fifth project will give you experience writing programs that involve loops

More information

Part B R&D Project Plans. R&D Project Plan for Project 1. Project Title: Travelogix Wholesale System Project Manager: Date: 30/09/2012.

Part B R&D Project Plans. R&D Project Plan for Project 1. Project Title: Travelogix Wholesale System Project Manager: Date: 30/09/2012. Part B R&D Project Plans R&D Project Plan for Project 1 Project Title: Travelogix Wholesale System Project Manager: Date: 30/09/2012 Summary Overseas: Developers configure Business to Consumer (B2C) Infrastructure

More information

Software Development Techniques. December Sample Examination Paper. Time: 3 hours

Software Development Techniques. December Sample Examination Paper. Time: 3 hours Software Development Techniques December 2015 Sample Examination Paper Answer ALL questions. Clearly cross out surplus answers. Time: 3 hours The maximum mark for this paper is 100. Any reference material

More information

Running Office Exams v3.1 (Mar 2012) PAGE 1 RUNNING OFFICE EXAMS. Microsoft Office Specialist (MOS) v3.1 (Mar 2012)

Running Office Exams v3.1 (Mar 2012) PAGE 1 RUNNING OFFICE EXAMS. Microsoft Office Specialist (MOS) v3.1 (Mar 2012) Running Office Exams v3.1 (Mar 2012) PAGE 1 RUNNING OFFICE EXAMS Microsoft Office Specialist (MOS) v3.1 (Mar 2012) Running Office Exams v3.1 (Mar 2012) PAGE 2 Contents 1. Before you Start!... 3 1.1 Companion

More information

Interactive Game Design with Greenfoot YEAR 2 Greenfoot Single-player Interactive Game

Interactive Game Design with Greenfoot YEAR 2 Greenfoot Single-player Interactive Game MESA VIRTUAL COMPUTER SCIENCE COMPETITION CYBER RULES 2016 Interactive Game Design with Greenfoot YEAR 2 Greenfoot Single-player Interactive Game Level: Type of Contest: Composition of Team: Number of

More information

Cohuborate Ltd Warranty Services User Manual

Cohuborate Ltd Warranty Services User Manual Cohuborate Ltd Warranty Services User Manual TABLE OF CONTENTS PAGE WELCOME PAGE Introduction 3 Login 4 Profile 4 GETTING STARTED Option 1 - Submit a Ticket Only 5-7 Option 2 Login and All Features 8-11

More information

DATA Data and information are used in our daily life. Each type of data has its own importance that contribute toward useful information.

DATA Data and information are used in our daily life. Each type of data has its own importance that contribute toward useful information. INFORMATION SYSTEM LESSON 41 DATA, INFORMATION AND INFORMATION SYSTEM SMK Sultan Yahya Petra 1 DATA Data and information are used in our daily life. Each type of data has its own importance that contribute

More information

James Woods Regional High School Information Technology Systems

James Woods Regional High School Information Technology Systems Unit Outline Web Development I James Woods Regional High School Information Technology Systems Unit Outline: Web Development I Context: Web Design Time: 6 wks Dimensions & Objectives Knowledge & Communication

More information

Chapter 1 - An Introduction to Computers and Problem Solving

Chapter 1 - An Introduction to Computers and Problem Solving Chapter 1 - An Introduction to Computers and Problem Solving 1.1 An Introduction to Computers 1.2 Windows, Folders, and Files 1.3 Program Development Cycle 1.4 Programming Tools 1 1.1 An Introduction to

More information

DASL PROGRESSBOOK CONVERSION

DASL PROGRESSBOOK CONVERSION DASL PROGRESSBOOK CONVERSION 2005 MCOECN ProgressBook Conversion 1 of 46 5/19/11 v11.3.0 Table of Contents DASL ProgressBook Conversion Overview... 3 1. One-Time Procedures for Preparing ProgressBook to

More information

PROPOSAL TO THE COMPUTATION ADVISORY COMMITTEE FOR SUPPORT FROM CENTRAL POOL STUDENT COMPUTER FEES

PROPOSAL TO THE COMPUTATION ADVISORY COMMITTEE FOR SUPPORT FROM CENTRAL POOL STUDENT COMPUTER FEES PROPOSAL TO THE COMPUTATION ADVISORY COMMITTEE FOR SUPPORT FROM CENTRAL POOL STUDENT COMPUTER FEES PROJECT TITLE: Enhancing the Public Computing Lab at 139 Durham Center CAC PRIORITIES ADDRESSED: First

More information

Section 3.2 Measures of Central Tendency MDM4U Jensen

Section 3.2 Measures of Central Tendency MDM4U Jensen Section 3.2 Measures of Central Tendency MDM4U Jensen Part 1: Video This video will review shape of distributions and introduce measures of central tendency. Answer the following questions while watching.

More information