TERM 3 GRADE 10 PROJECT

Size: px
Start display at page:

Download "TERM 3 GRADE 10 PROJECT"

Transcription

1 TERM 3 GRADE 10 PROJECT Python TEACHER S GUIDELINES Picture 1 Picture 2

2 IMPORTANT NOTICE Dear teachers, in the case that your school is facing any software issues with Python or PyCharm, please ensure that you create a ticket by completing the online form which was sent by operations. The link for the online form is as follows: 35SJZDP1KqLNm-zZZCCdUQjBUMzkwQ0RLRFNNVVhHSENKWDFDMlFIOC4u Please make the students do the project as and when the concepts are covered while teaching. The following table indicates which project questions to look at for each week, in order complete the entire project on time (this has also been colour coded on the Teacher Guidance work plan): Teaching Week Project Question to work on WEEK 5 1, 2, 7A* WEEK 6 3, 4, 5, 6, 7B-7G * 7A is to be worked on in advance - so all images are prepared for the beginning of week 6 There can be two ways to maintain the students assessment work. As per the National Agenda objectives for the UAE vision 2021 for a sustainable environment, and keeping the Ministry without papers initiative, softcopy is strongly recommended. Softcopy (electronic) o Here you will maintain an electronic portfolio (e-portfolio) for each student. An electronic portfolio is a collection of students work completely as softcopy. o The teacher will collect all student work as softcopy. This should be maintained to produce an evidence for task completion. Hardcopy (printed) o Here you will print the project task and provide each student with a copy. Make the students fill the columns as per the project requirement. o For any practical (coding) question, a student will type the code using the required software. They will save a copy of their code and the output generated as a screenshot. This screenshot can be printed or can be maintained as a softcopy file. o The teacher will collect the hardcopy and the screenshot file (softcopy or hardcopy). This should be maintained to produce an evidence for task completion. Page 2 of 15

3 PROJECT OBJECTIVE You will be applying your knowledge from the Artificial Intelligence Project, covering the following student learning outcomes (SLO s): apply programming concepts learned to solve real-world problems. explain the basic principles of artificial intelligence and machine learning. develop code to classify images of handwritten digits using artificial intelligence and machine learning. analyse the performance of machine-learning algorithms. EQUIPMENT REQUIREMENTS Laptop or Computer, Camera, Paper, Black Marker, Python 3.X, PyCharm / Notepad / Notepad++. PROJECT INTRODUCTION To complete the project, you need to perform each of the following: 1. You will answer several questions on artificial intelligence and how it could help the UAE. You will then visually demonstrate how to teach a computer to find out if an image is an orange or a banana using training and testing code. 2. An image is stored as a list of lists. Using the letter A example, you will show how the letter H, could be represented digitally, and how it can then be represented in a single list in Python. 3. The SKLEARN dataset module in Python contains images of digits. You will answer questions about this dataset, and how we can use Python list functions with the dataset. 4. The SKLEARN dataset module contains a number functions that you will import. You will briefly describe what each function does. 5. To test the machine we use known classified samples. You will answer questions from the code, and describe classification and confusion matrix reports. 6. To test our own images of digits, we need to use some functions of the SCIKIT-IMAGE module beforehand. You will answer questions from the SCIKIT-IMAGE code. 7. You will test the code using 20 of your own handwritten images of digits. You will generate the code to classify all 20 images. You will develop the code to generate your own classification report and confusion matrix for your results. You will answer some questions from your confusion matrix results. Finally, you will explain and give an advantage or disadvantage of Artificial Intelligence. Page 3 of 15

4 QUESTION GUIDELINES 1. Please fill in the areas highlighted. 2. Type and execute your code using PyCharm software (or any other Python editor). 3. Show your code and output to your teacher. In the case where you are not able to show your code and output to your teacher: save your program. take a print screen of your code and an output of your code. save your print screen file. submit the saved file as a hardcopy or softcopy to your teacher. TEACHER RECOMMENDATIONS Answers may vary. We request the teachers to take professional judgement for marking the project. It is common knowledge that there is no one way of coding, and that coding styles differ. But it is recommended to use the format/structure given for expected output generation for assessment. Do not copy and paste the code provided in the teacher s guide, as the PyCharm editor may show errors due to formatting or otherwise. The code provided should not be given to the students. Maintain every student work for evidence. Page 4 of 15

5 PROJECT WORK PLAN # Work Steps Step Completion & Values 1 A. Write what artificial intelligence and machine learning are. A. Artificial Intelligence is the area of computer science concerned with giving machines the ability to behave intelligently, like human beings Rem arks Machine learning is: an area in artificial intelligence concerned with teaching machines to learn from examples or experience B. Visit on your web browser, and view the main video and read the main page. Give your own suggestion for how Artificial Intelligence could be used for the UAE. B. Suggestion: Answers will vary. Please use your professional judgement. C. Training Stage: C. Using artificial intelligence and machine learning, fill in the diagrams below to visually demonstrate how to teach a computer to find out if an image is an orange or a banana. Drag and drop the answers. Testing Stage: Part C Answer Key: Page 5 of 15

6 2 An image is stored as a list of lists. A. Using the shown letter A example, show how the letters U and E, could be represented, for the UAE. Please shade the boxes in black. B. Show how your letters could be digitally stored in a single final list called imageu and iagee A. Show how the letters U and E can be represented (Hint, for each try on a blank piece of paper first, on an 8 x 8 grid ) Answers will vary. Please use your professional judgement. Letter U: Letter A: listu1 = [1,0,1,1,1,1,0,1] listu2 = [1,0,1,1,1,1,0,1] listu3 = [1,0,1,1,1,1,0,1] listu4 = [1,0,1,1,1,1,0,1] listu5 = [1,0,1,1,1,1,0,1] listu6 = [1,0,1,1,1,1,0,1] listu7 = [1,1,0,0,0,0,1,1] listu8 = [1,1,1,1,1,1,1,1] imageu = [listu1, listu2, listu3, listu4, listu5, listu6, listu7, listu8] Letter E: liste1 = [1,0,0,0,0,0,0,1] liste2 = [1,0,1,1,1,1,1,1] liste3 = [1,0,1,1,1,1,1,1] liste4 = [1,0,0,0,0,0,0,1] liste5 = [1,0,1,1,1,1,1,1] liste6 = [1,0,1,1,1,1,1,1] liste7 = [1,0,0,0,0,0,0,1] liste8 = [1,1,1,1,1,1,1,1] imagee = [liste1, liste2, liste3, liste4, liste5, liste6, liste7, liste8] Page 6 of 15

7 # Work Steps Step Completion & Values 3 The SKLEARN dataset module contains images of digits. A. For a machine to learn, which of the following number of images in its dataset would provide a more correct answer? Why? a) 10 images b) 100 images c) 1000 images A. Answer: 1000 images would provide a more correct answer. Reason : If there is a larger number of images for the machine to learn, then the system will have more samples to make predictions from, and the answer will be more accurate. Rem arks B. Fill in the function name that returns the length of the list images. What is the list length when running the code? B. Fill in the function name that returns the length of the list images. from sklearn.datasets import load_digits digits = load_digits() images = digits.images print("total number of images:", len (images)) What is the list length returned when running this code? Answer: Total number of images: _1797 C. Write the code to put the first 1000 elements of the list images into a sublist. C. Answer: imagessublist = images[0:1000] D. To prepare the data for machine learning we will use the first 1000 elements in the SKLEARN dataset module for training. What will we use the remaining elements in the SKLEARN dataset module for? D. Answer: For testing. There are 1797 images in total that we can use, so the first 1000 to train the system, the remainder to see how accurate the system is for the remaining 797. This will give us an idea of how accurate the system is, and the accuracies can be seen on the confusion matrix report. Page 7 of 15

8 4 The SKLEARN dataset module contains a number functions that you will import. Code Extract: from sklearn.datasets import load_digits from sklearn.svm import SVC from sklearn.metrics import classification_report, confusion_matrix digits = load_digits() images = digits.images target = digits.target data = images.reshape((1797, 64)) classifier = SVC(gamma=0.001) training_samples = data[0:1000] training_targets = target[0:1000] testing_samples = data[1000:1797] testing_targets = target[1000:1797] A. Briefly describe what the following functions do: load_digits, SVC, classification_report confusion_matrix A. The load_digits function: It will load the dataset of 1,797 digits with their correct labels The SVC function: Short for Support Vector. It will carry out the classification work. The classification_report and confusion_matrix functions: These functions will check how good your code will be at figuring out the digit from the image of that digit B. 'training_samples', 'training_targets', 'testing_samples' and 'testing_targets' are all types of? B. Answer: list (or sublist is also acceptable) Page 8 of 15

9 5 To test the machine we use known classified samples. Answer the following questions from the code: A. What does classifier.fit() do when we pass run this function with the training_samples and training_targets lists? B. What does classifier.predict() do when we pass run this function with the testing_samples list? C. Look at the following classification report, displayed from running the code. Code Extract: classifier.fit(training_samples, training_targets) predicted = classifier.predict(testing_samples) print("classification report for classifier") print(classification_report(testing_targets, predicted)) print("confusion matrix") print(confusion_matrix(testing_targets, predicted)) A. Answer: The classifier.fit() function links the training samples to the training targets. B. Answer: The classifier.predict() passes an item in the testing_samples list and tries to predict what the digit number is. It is like checking how well a student knows the subject, where classifier.predict() is the taking the exam part. C. Classification report: Which did the computer classify easier, digit '3' or digit '6'? Answer: Digit 6. D. Look at the following confusion matrix report displayed. The fifth row highlighted in the matrix gives the confusion result for digit 4. D. Confusion matrix report: What can the information in this row tell us? Answer: This The fifth row of this matrix tells us that there were 79 testing questions which had the answer 4 that the computer also classified as 4. It got them right. However, there was four cases where a 4 was confused with a 9. Page 9 of 15

10 6 To test our own images of digits, we need to use some functions of the SCIKIT-IMAGE module beforehand. Answer the following questions from the code: Code Extract: from skimage.transform import resize from skimage import io... img = io.imread(testimage.png, True) img = resize(img, (8,8), mode='reflect') img = (1-img) * 16 vector = img.reshape((1,64)) print(classifier.predict(vector)) A. What does imread() do when we pass run this function with the 'testimage.png' image file, and the word 'True'? A. Answer: imread() function loads an image from a file into the variable img and changes it from colour to black and white B. The functions resize() and reshape() are performed to resize and reshape the images. Why do we need to do this? B. Answer: The images you take maybe different in size from the images taken by your classmates or found on the Internet. The images must be sized to 8x8 because this is what you used in training. C. Fill in the blanks in this sentence. C. 'vector' is a long _list of pixels. The function classifier.predict() will then predict the class of the image. Page 10 of 15

11 7 Test the code using your own images of digits. A. Handwrite the digits 0 to 4 four times, and save as seperate images. A. On a separate page, using a black marker write digits 0 to 4 like below, four times. This will make a total of 20 images of digits. (* Hint, use different handwriting, or handwriting from a different student) Take a picture of the above filled in table of digits and use the SnippingTool in Windows,to crop your images into 20 individual images of each digit. Name each of the 20 images appropriately, for example for the fourth image of your digit 3 could be image3-4.png. Handwritten on paper Single digital photo of all digits. Snipping Tool used to crop each image, for example: image2-2.png Save all 20 image separate files into a folder. B. To read all 20 images, we need to ensure that the code looks at them. B. Drag all 20 image files into your Python project. Show your teacher an image of at least one of your own handwritten digits in your Python project. The code extract below classifies two of the digits (0 & 1): #images to classify allimages0=[ "image0-1.png ", "image0-2.png ", "image0-3.png ", "image0-4.png "] allimages1=[ "image1-1.png ", "image1-2.png ", "image1-3.png ", "image1-4.png "] for thisimage in allimages0 + allimages1:... Page 11 of 15

12 Develop the code to test the machine on all the images you saved. Write the code needed to classify all 20 of your own images of digits: allimages0=["image0-1.png","image0-2.png", "image0-3.png", "image0-4.png"] allimages1=["image1-1.png","image1-2.png", "image1-3.png", "image1-4.png"] allimages2=["image2-1.png","image2-2.png", "image2-3.png", "image2-4.png"] allimages3=["image3-1.png","image3-2.png", "image3-3.png", "image3-4.png"] allimages4=["image4-1.png","image4-2.png", "image4-3.png", "image4-4.png"] for thisimage in allimages0 + allimages1 + allimages2 + allimages3 + allimages4: img = io.imread(thisimage, True) img = resize(img, (8,8), mode='reflect') img = (1-img) * 16 vector = img.reshape((1,64)) print("\n =a= == == == == == == == == == == == == =") print("image", thisimage) print(classifier.predict(vector)) C. In the code, generate the classification report and confusion matrix for all your images. PLEASE SPEAK TO YOUR TEACHER FOR GUIDANCE. C. Write here the code that generates the classification report and confusion matrix for your own images of digits: answers=[0,0,0,0,1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4] predicted = [] for thisimage in allimages0 + allimages1 + allimages2 + allimages3 + allimages4: img = io.imread(thisimage, True) img = resize(img, (8,8), mode='reflect') img = (1-img) * 16 vector = img.reshape((1,64)) print("\n =a= == == == == == == == == == == == == =") print("image", thisimage) print(classifier.predict(vector)) predicted.append(classifier.predict(vector)) print("\n == == == == == == == == == == == == == =") #Creating a classification report and confusion matrix for the results of your images import numpy predicted = numpy.array(predicted) answers = numpy.array(answers) print("classification report for classifier") print(classification_report(answers, predicted)) print("confusion matrix") print(confusion_matrix(answers, predicted)) Page 12 of 15

13 D. Run the code for all your digit images. Fill in your own confusion matrix for the 20 images of digits. D. Fill in your own confusion matrix. Confusion matrix this will differ for each student E. Which of your digits did the computer find easiest and hardest to classify correctly? E. Easiest digit: # Hardest Digit: # F. Take a screenshot of your completed code, and the generated output. F. Generated output Screenshot: G. Explain and give an advantage or disadvantage of Artificial Intelligence. G. Answer: This is an open-ended question, where answers will vary. Please take professional judgement for this answer. Page 13 of 15

14 RUBRIC & MARKING RUBRIC GUIDANCE 1) Print the rubric for each student and fill in the student details. 2) Check the work for each criteria and circle the cell which you feel is appropriate with respect to the criteria completion. When you look at the student work, please take a professional judgement on the points which is required to be awarded. 3) Enter the marks for each of the criterias in the space given underneath, and add together to calculate the total out of 50. Page 14 of 15

15 Student ID: Student Name: Grade/Class: Criteria Excellent Very Good Good Inadequate Un satisfactory 0 1. Applied programming concepts learned to solve realworld problems. 2. Explained the basic principles of machine learning. 3. Develop code to classify images of handwritten digits using AI. 4. Analyse and evaluate the performance of machinelearning algorithms. Clear application of list data structure and control structures in the code Clear coding standards have been applied with the correct logic and syntax and compiles with no errors points Clear machine learning definition and letters are represented in 1 & 0 s in lists correctly. Machine learning diagrams are filled in completely and correctly.9-10 points Clear AI definition and UAE AI reason given. Discussion of AI is clear. Clear understanding and development of code using the SKLEARN, SCIKIT- IMAGE and classifier code functions points Clear understanding of classification and confusion matrix reports. Classification report and confusion matrix are run successfully. Able to clearly analyse the performance of the machine learning based on the report generated points Good application of list data structure and control structures in the code Good coding standards have been applied with the correct logic and syntax and compiles with no errors. 7-8 points Good machine learning definition and letters are represented in 1 & 0 s in lists correctly. Machine learning diagrams are mostly filled in and correct.7-8 points Good AI definition and UAE AI reason given. Discussion of AI is good. Good understanding and development of code using the SKLEARN, SCIKIT- IMAGE and classifier code functions points Good understanding of classification and confusion matrix reports. Classification report and confusion matrix are run generally with success. Able to analyse well the performance of the machine learning based on the report generated points Satisfactory application of list data structure and control structures in the code Satisfactory coding standards have been applied with the satisfactory logic and syntax and compiles with minor warnings 5-6 points Satisfactory machine learning definition and letters are mostly represented in 1 & 0 s in lists satisfactorily. Machine learning diagrams are mostly filled in and mostly correct.5-6 points Satisfactory AI definition and UAE AI reason given. Discussion of AI is satisfactory. Satisfactory understanding and development of code using the SKLEARN, SCIKIT- IMAGE and classifier code functions7-9 points Satisfactory understanding of classification and confusion matrix reports. Classification report and confusion matrix are run satisfactorily. Can analyse satisfactorily the performance of the machine learning based on the report generated.7-9 points Page 15 of 15 Weak application of list data structure and control structures in the code Weak coding standards have been applied with the incorrect logic and syntax and compiles with errors. 3-4 points Weak machine learning definition and letters are represented in 1 & 0 s in lists weakly. Machine learning diagrams are partially filled in, but not correctly.3-4 points Weak AI definition and UAE AI reason given. Discussion of AI is weak. Weak understanding and development of code using the SKLEARN, SCIKIT- IMAGE and classifier code functions 4-6 points Weak understanding of classification and confusion matrix reports. Classification report and confusion matrix are not run satisfactorily. Unable to analyse satisfactorily the performance of the machine learning based on the report generated.4-6 points No application of list data structure and control structures in the code No coding standards have been applied with the incorrect logic and syntax and numerous errors. 1-2 points No correct definition of machine learning and letters are not represented in 1 & 0 s in lists correctly. Machine learning diagrams are not filled nor correctly.1-2 points No correct AI definition and UAE AI reason given. Discussion of AI is unsatisfactory. No understanding and development of code functions 1-3 points No understanding of classification and confusion matrix reports. Classification report and confusion matrix are not run. No analysis made regarding the performance of the machine learning based on the report generated.1-3 points No effort made No effort made No effort made No effort made TOTAL: / 50

form which was sent by operations.

form which was sent by operations. Grade 10 - Task Sheet 2 Unit 2 & Unit 3 Teacher Guidelines Task sheet 2 is practical based. As task sheet 2 is a part of concepts covered from Unit 2 & Unit 3 of the book, you can make the students do

More information

Term 2 Grade 12 Project Task 3 Teacher s Guidelines Ethical Hacking Picture 1 Picture 2

Term 2 Grade 12 Project Task 3 Teacher s Guidelines Ethical Hacking Picture 1 Picture 2 Term 2 Grade 12 Project Task 3 Teacher s Guidelines Ethical Hacking Picture 1 PRESENTATION Picture 2 Page 1 of 8 IMPORTANT NOTICE Dear teachers, in case your school is facing any software issues with EthiLAB,

More information

Digital Technologies Hangarau Matihiko Level 1

Digital Technologies Hangarau Matihiko Level 1 External Assessment Resource Digital Technologies Hangarau Matihiko Level 1 This resource supports external assessment against Achievement Standard 91887 (1.11) 1 Standard title: Credits: Resource title:

More information

Inserting and Editing Pictures in Dreamweaver 8. Terminal Objective: To insert and edit an image into Dreamweaver 8.

Inserting and Editing Pictures in Dreamweaver 8. Terminal Objective: To insert and edit an image into Dreamweaver 8. Inserting and Editing Pictures in Dreamweaver 8 Terminal Objective: To insert and edit an image into Dreamweaver 8. Information: If you have already inserted your image, go to page 3 to begin the process

More information

Not Achieved Achieved

Not Achieved Achieved Internal Assessment Resource Digital Technologies Level 2 This resource supports assessment against: Unit Standard 12885v6 Create and enhance electronic documents combining text and images for generic

More information

UNIVERSITY OF CAMBRIDGE INTERNATIONAL EXAMINATIONS International General Certificate of Secondary Education *4219601057* INFORMATION AND COMMUNICATION TECHNOLOGY 0417/32 Paper 3 Practical Test May/June

More information

Co. Cavan VEC. Co. Cavan VEC. Programme Module for. Word Processing. leading to. Level 5 FETAC. Word Processing 5N1358. Word Processing 5N1358

Co. Cavan VEC. Co. Cavan VEC. Programme Module for. Word Processing. leading to. Level 5 FETAC. Word Processing 5N1358. Word Processing 5N1358 Co. Cavan VEC Programme Module for Word Processing leading to Level 5 FETAC 1 Introduction This programme module may be delivered as a standalone module leading to certification in a FETAC minor award.

More information

Word and Excel Assignment Assessment

Word and Excel Assignment Assessment Word and Excel Assignment Assessment Weight This assignment is worth 2% of your final grade in APSC 100 Module 1. Submission Instructions This assignment is due by Thursday Sept. 6 at 9am. Instructions

More information

Content-Based Assessments. Project 2H New Jobs

Content-Based Assessments. Project 2H New Jobs Apply a combination of the Content-Based Assessments GO! Fix It Project 2H New Jobs In this project, you will construct a solution by applying any combination of the skills you practiced from the Objectives

More information

IT 204 Final Project Guidelines and Rubric Database Proposal and Implementation Plan Report

IT 204 Final Project Guidelines and Rubric Database Proposal and Implementation Plan Report IT 204 Final Project Guidelines and Rubric Database Proposal and Implementation Plan Report Overview The final project for this course is the creation of a database proposal and implementation plan report

More information

Example Candidate Responses. Cambridge International AS & A Level Computer Science. Paper 2

Example Candidate Responses. Cambridge International AS & A Level Computer Science. Paper 2 Example Candidate Responses Cambridge International AS & A Level Computer Science 9608 Paper 2 Cambridge International Examinations retains the copyright on all its publications. Registered Centres are

More information

1. WHAT AREAS OF LEARNING DOES THIS ASSESSMENT ADDRESS? 2. WHY IS THE COMPLETION OF THIS ASSESSMENT IMPORTANT?

1. WHAT AREAS OF LEARNING DOES THIS ASSESSMENT ADDRESS? 2. WHY IS THE COMPLETION OF THIS ASSESSMENT IMPORTANT? 12 SDD Task 1: RAD Programming Group Task Due Date: 1/12/2017 Date Distributed: 31/10/2017 Task Weighting: 15% Outcomes H4.2 applies appropriate development methods to solve software problems H5.1 applies

More information

Term 2 Grade 12 -Project Task 2 Teachers Guidelines Ethical Hacking Picture 1 Picture 2

Term 2 Grade 12 -Project Task 2 Teachers Guidelines Ethical Hacking Picture 1 Picture 2 Term 2 Grade 12 -Project Task 2 Teachers Guidelines Ethical Hacking Picture 1 PRESENTATION Picture 2 Page 1 of 11 PROJECT TASK 2 INTRODUCTION The educational system has databases full of personal information

More information

Title of Resource Introduction to SPSS 22.0: Assignment and Grading Rubric Kimberly A. Barchard. Author(s)

Title of Resource Introduction to SPSS 22.0: Assignment and Grading Rubric Kimberly A. Barchard. Author(s) Title of Resource Introduction to SPSS 22.0: Assignment and Grading Rubric Kimberly A. Barchard Author(s) Leiszle Lapping-Carr Institution University of Nevada, Las Vegas Students learn the basics of SPSS,

More information

Student Home Access Center Accounts

Student Home Access Center Accounts Managing Student Home Access Center Accounts in eschoolplus This is a step by step guide on how to maintain and troubleshoot your Home Access Center Accounts. Student Home Access Center Accounts Step 1:

More information

CE807 Lab 3 Text classification with Python

CE807 Lab 3 Text classification with Python CE807 Lab 3 Text classification with Python February 2 In this lab we are going to use scikit-learn for text classification, focusing in particular on the most classic example of text classification: spam

More information

The Official E-Portfolio Tutorial Guide

The Official E-Portfolio Tutorial Guide School of Education Last Updated: January 2009 The Official E-Portfolio Tutorial Guide Includes Instructions For: -Setting Up Dreamweaver -Editing Images Using Photoshop -Creating & Inserting Evidence

More information

Open a new Excel workbook and look for the Standard Toolbar.

Open a new Excel workbook and look for the Standard Toolbar. This activity shows how to use a spreadsheet to draw line graphs. Open a new Excel workbook and look for the Standard Toolbar. If it is not there, left click on View then Toolbars, then Standard to make

More information

Electronic Portfolios in the Classroom

Electronic Portfolios in the Classroom Electronic Portfolios in the Classroom What are portfolios? Electronic Portfolios are a creative means of organizing, summarizing, and sharing artifacts, information, and ideas about teaching and/or learning,

More information

Co. Cavan VEC Programme Module for Word Processing Leading to Level 4 FETAC Certificate in Word Processing 4N1123

Co. Cavan VEC Programme Module for Word Processing Leading to Level 4 FETAC Certificate in Word Processing 4N1123 Co. Cavan VEC Programme Module for Word Processing Leading to Level 4 FETAC Certificate in May 2012/June 2012 1 Introduction This programme module may be delivered as a standalone module leading to certification

More information

GCSE Computer Science

GCSE Computer Science GCSE Computer Science 4512/1 Practical Programming Report on the Examination 4512 Summer 2015 Version: 1.0 Further copies of this Report are available from aqa.org.uk Copyright 2015 AQA and its licensors.

More information

Standards of Learning Introduction to TestNav 8: Writing Tool

Standards of Learning Introduction to TestNav 8: Writing Tool Standards of Learning Introduction to TestNav 8: Writing Tool For use with the Practice Writing Tool in TestNav TM 8 Introduction to TestNav 8: Practice Writing Tool Page 1 Table of Contents Introduction...

More information

Graded Project. Excel 2016

Graded Project. Excel 2016 Excel 2016 PENN FOSTER, INC. 2016 INTRODUCTION CONTENTS INTRODUCTION 2 INSTRUCTIONS 2 SCORING GUIDELINES 6 SUBMITTING YOUR PROJECT 8 PAGE 1 GRADED PROJECT EXCEL 2016 INTRODUCTION This project requires

More information

Illustrated Roadmap. for Windows

Illustrated Roadmap. for Windows Illustrated Roadmap for Windows This Illustrated Roadmap was designed to help the Computer Coordinator customize GradeQuick for their school and for teachers to make further customizations that will affect

More information

Importing Career Standards Benchmark Scores

Importing Career Standards Benchmark Scores Importing Career Standards Benchmark Scores The Career Standards Benchmark assessments that are reported on the PIMS Student Fact Template for Career Standards Benchmarks can be imported en masse using

More information

Use signatures in Outlook 2010

Use  signatures in Outlook 2010 Use e-mail signatures in Outlook 2010 Quick Reference Card Download and use a signature template Note This procedure will take you away from this page. If necessary, print this page before you follow these

More information

Word Processing: Basic Editing Skills Task 4 (2003)

Word Processing: Basic Editing Skills Task 4 (2003) Word Processing: Basic Editing Skills Task 4 (2003) TASKS 1. Open the document phones text from the www.teach-ict.com website but do NOT save it. 2. Open a blank Word document. 3. Using the window menu,

More information

Creating Classroom Websites Using Contribute By Macromedia

Creating Classroom Websites Using Contribute By Macromedia Creating Classroom Websites Using Contribute By Macromedia Revised: 10/7/05 Creating Classroom Websites Page 1 of 22 Table of Contents Getting Started Creating a Connection to your Server Space.. Page

More information

Key Assessment #6 Professional Growth. Assessment #6 Additional Assessment that addresses NCTE standards - portfolio assessment.

Key Assessment #6 Professional Growth. Assessment #6 Additional Assessment that addresses NCTE standards - portfolio assessment. Assessment #6 Additional Assessment that addresses NCTE standards - portfolio assessment. 6-1. Brief description of the assessment and its use in the program. The portfolio assessment used in EDTE 165

More information

edofe Management Toolkit

edofe Management Toolkit edofe Management Toolkit A guide to effective edofe management for Directly Licensed Centres 1 2 Contents Section one: Setting up the correct infrastructure on edofe... 4 Creating a group... 4 Editing

More information

Barchard Introduction to SPSS Marks

Barchard Introduction to SPSS Marks Barchard Introduction to SPSS 21.0 3 Marks Purpose The purpose of this assignment is to introduce you to SPSS, the most commonly used statistical package in the social sciences. You will create a new data

More information

Unit Assessment Guide

Unit Assessment Guide Unit Assessment Guide Unit Details Unit code Unit name Unit purpose/application ICTWEB425 Apply structured query language to extract and manipulate data This unit describes the skills and knowledge required

More information

Barchard Introduction to SPSS Marks

Barchard Introduction to SPSS Marks Barchard Introduction to SPSS 22.0 3 Marks Purpose The purpose of this assignment is to introduce you to SPSS, the most commonly used statistical package in the social sciences. You will create a new data

More information

Unit 7: Desktop Publishing (LEVEL 3)

Unit 7: Desktop Publishing (LEVEL 3) (LEVEL 3) Learning outcomes By completing this unit candidates will develop a thorough knowledge and understanding of planning, drafting, developing and creating a technically complex DTP publication to

More information

LEVEL 1/2/3 CREATIVE imedia FAQS FEBRUARY Can the moderator review some work before it is completed?

LEVEL 1/2/3 CREATIVE imedia FAQS FEBRUARY Can the moderator review some work before it is completed? LEVEL 1/2/3 CREATIVE imedia FAQS FEBRUARY 2013 1. Can the moderator review some work before it is completed? The moderator is unable to see the candidate work in MAPS until it has been submitted to OCR

More information

16. How quickly will the Level 1 and Level 2 examinations be marked? NOCN markers have a five-day turnaround for marking examination papers.

16. How quickly will the Level 1 and Level 2 examinations be marked? NOCN markers have a five-day turnaround for marking examination papers. 1. Are the Functional Skills assessments on demand? The assessments are available on demand. Entry Level examination papers can be downloaded from the NOCN website. Level 1 and Level 2 examination papers

More information

BSc Computing CSY2026 Modern Networks. Module Tutor: Signed:

BSc Computing CSY2026 Modern Networks. Module Tutor: Signed: Division of Computing BSc Computing CSY2026 Modern Networks Date of Issue: 17/02/2017 Date for Submission: 28/04 2017 (23:59 by e-submission) Agreed Date for late submission: Student Name: Student ID:

More information

TK20 Mentor Teacher Guide

TK20 Mentor Teacher Guide TK20 Mentor Teacher Guide WCU TK20 Office Recitation Hall 610-436-2085 Tk20@wcupa.edu http://www.wcupa.edu/education-socialwork/tk20.aspx TK20 Helpdesk 800-311-5656 support@tk20.com January 2018 v.9.1.3

More information

to start ICT systems and 2.2 Open software application, e.g. word processing, desktop open and use

to start ICT systems and 2.2 Open software application, e.g. word processing, desktop open and use Unit Title: OCR unit number: 1 Level: Entry 3 Credit value: 3 Guided learning hours: 15 Unit reference number: Displaying Information Using ICT T/502/1141 Learning Outcomes Assessment Criteria The Learner

More information

Google in the Classroom. Add-Ons to Make Your Life a Little Easier

Google in the Classroom. Add-Ons to Make Your Life a Little Easier Google in the Classroom Add-Ons to Make Your Life a Little Easier Hello! I am Krystal Weeks Your mission if you choose to accept it is to love Google and try it in your class! You can find me at kthames@ccpsonline.net

More information

Accessing Historical Student Data NECSD

Accessing Historical Student Data NECSD Page1 Historical Student data can be accessed individually by student in Infinite Campus. It may also be accessed by course and section roster in 2 locations: Infinite Campus (K-12 assessment data points

More information

How to Access If Rubrics does not appear on your course navbar, click Edit Course, Tools, Rubrics to activate..

How to Access If Rubrics does not appear on your course navbar, click Edit Course, Tools, Rubrics to activate.. KODIAK QUICK GUIDE Rubrics Overview Rubrics allow you to establish set criteria for grading assignments; you can attach Rubrics to Dropbox folders or Discussion topics so that the criteria are available

More information

edofe Management Toolkit

edofe Management Toolkit edofe Management Toolkit A guide to effective edofe management for Directly Licensed Centres 1 2 Contents Section one: Setting up the correct infrastructure on edofe... 4 Creating a group... 4 Editing

More information

Desire2Learn eportfolio Tool NEIU Instructor Guide

Desire2Learn eportfolio Tool NEIU Instructor Guide Desire2Learn eportfolio Tool NEIU Instructor Guide Introduction The Desire2Learn (D2L) eportfolio tool allows you to store, organize, reflect on, and share items that represent your learning. You can include

More information

EKTRON 101: THE BASICS

EKTRON 101: THE BASICS EKTRON 101: THE BASICS Table of Contents INTRODUCTION... 2 TERMINOLOGY... 2 WHY DO SOME PAGES LOOK DIFFERENT THAN OTHERS?... 5 LOGGING IN... 8 Choosing an edit mode... 10 Edit in context mode (easy editing)...

More information

FORMS. The Exciting World of Creating RSVPs and Gathering Information with Forms in ClickDimensions. Presented by: John Reamer

FORMS. The Exciting World of Creating RSVPs and Gathering Information with Forms in ClickDimensions. Presented by: John Reamer FORMS The Exciting World of Creating RSVPs and Gathering Information with Forms in ClickDimensions Presented by: John Reamer Creating Forms Forms and Surveys: When and What to Use them For Both Allow you

More information

Lesson 2 page 1. ipad # 17 Font Size for Notepad (and other apps) Task: Program your default text to be smaller or larger for Notepad

Lesson 2 page 1. ipad # 17 Font Size for Notepad (and other apps) Task: Program your default text to be smaller or larger for Notepad Lesson 2 page 1 1/20/14 Hi everyone and hope you feel positive about your first week in the course. Our WIKI is taking shape and I thank you for contributing. I have had a number of good conversations

More information

Cambridge International Examinations Cambridge International General Certificate of Secondary Education

Cambridge International Examinations Cambridge International General Certificate of Secondary Education Cambridge International Examinations Cambridge International General Certificate of Secondary Education *9248013325* INFORMATION AND COMMUNICATION TECHNOLOGY 0417/32 Paper 3 Data Analysis and Website Authoring

More information

UNIVERSITY OF CAMBRIDGE INTERNATIONAL EXAMINATIONS International General Certificate of Secondary Education

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

More information

Detailed Table of Contents

Detailed Table of Contents Detailed Table of Contents INTRODUCTION...1 I.1 THE OBJECTIVES OF THIS TEXT...1 I.2 WHY LibreOffice?...1 I.3 WHAT IS SPECIAL ABOUT THIS TEXT?...1 I.4 THE STATUS OF COMPUTING IN SCHOOLS...2 I.5 TEACHING

More information

Make Your Own Webquest!!!

Make Your Own Webquest!!! Make Your Own Webquest!!! 1. Do the following steps in MS Word first! 2. Save your Word.doc and all pictures in a folder on your flashdrive. 3. After completing all 6 steps below, copy and paste your webquest

More information

Graded Project. Microsoft Word 2016

Graded Project. Microsoft Word 2016 Microsoft Word 2016 PENN FOSTER, INC. 2016 INTRODUCTION CONTENTS OVERVIEW 2 INSTRUCTIONS 2 GRADING CRITERIA 9 SUBMITTING YOUR PROJECT 12 PAGE 1 GRADED PROJECT MICROSOFT WORD 2016 OVERVIEW This project

More information

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

More information

Using Microsoft Word. Working With Objects

Using Microsoft Word. Working With Objects Using Microsoft Word Many Word documents will require elements that were created in programs other than Word, such as the picture to the right. Nontext elements in a document are referred to as Objects

More information

Excel Conditional Formatting (Mac)

Excel Conditional Formatting (Mac) [Type here] Excel Conditional Formatting (Mac) Using colour to make data analysis easier Excel conditional formatting automatically formats cells in your worksheet if specified criteria are met, giving

More information

Using a spreadsheet to make predictions USING A SPREADSHEET TO MAKE PREDICTIONS

Using a spreadsheet to make predictions USING A SPREADSHEET TO MAKE PREDICTIONS USING A SPREADSHEET TO MAKE PREDICTIONS 1 QTP 3.2 Using Learning Technologies In English, PDHPE, HSIE and Primary Printed January 2003 Published by Quality Teacher Program (QTP) Bridge St Sydney NSW Australia

More information

U of S Course Tools. Course Tools Basics and Building Content For Instructors

U of S Course Tools. Course Tools Basics and Building Content For Instructors U of S Course Tools Course Tools Basics and Building Content For Instructors Fall, 2015 Background STEP U of S Course Tools The basic template for all courses contains basic tools, materials and options

More information

Grade 8 FSA Mathematics Practice Test Guide

Grade 8 FSA Mathematics Practice Test Guide Grade 8 FSA Mathematics Practice Test Guide This guide serves as a walkthrough of the Grade 8 Florida Standards Assessments (FSA) Mathematics practice test. By reviewing the steps listed below, you will

More information

FSA Algebra 1 EOC Practice Test Guide

FSA Algebra 1 EOC Practice Test Guide FSA Algebra 1 EOC Practice Test Guide This guide serves as a walkthrough of the Florida Standards Assessments (FSA) Algebra 1 End-of- Course (EOC) practice test. By reviewing the steps listed below, you

More information

Supplier Engagement (HE): Dashboard Guidance

Supplier Engagement (HE): Dashboard Guidance Supplier Engagement (HE): Dashboard Guidance Logging in To access your data, you will need to click on the About You tab and enter your username and password. These will have been supplied to you on sign-up

More information

Principal Moderator Feedback. June Applied GCE ICT Web Development

Principal Moderator Feedback. June Applied GCE ICT Web Development Principal Moderator Feedback June 2011 Applied GCE ICT 6955 01 - Web Development Edexcel is one of the leading examining and awarding bodies in the UK and throughout the world. We provide a wide range

More information

NVIvo 11 workshop. Hui Bian Office for Faculty Excellence

NVIvo 11 workshop. Hui Bian Office for Faculty Excellence 1 NVIvo 11 workshop Hui Bian Office for Faculty Excellence Contact information 2 Email: bianh@ecu.edu Phone: 328-5428 1001 Joyner Library, room 1006 Website: http://core.ecu.edu/ofe/st atisticsresearch/

More information

FSA Algebra 1 EOC Practice Test Guide

FSA Algebra 1 EOC Practice Test Guide FSA Algebra 1 EOC Practice Test Guide This guide serves as a walkthrough of the Algebra 1 EOC practice test. By reviewing the steps listed below, you will have a better understanding of the test functionalities,

More information

ASSIGNMENT COVER SHEET

ASSIGNMENT COVER SHEET ASSIGNMENT COVER SHEET Module: Mobile Computing (CSY3029) Tutor: Espen Svennevik Title: Mobile Application Development Comparison Student ID: Student signature*: Grade Extension date Course leader agreement:

More information

User s Guide. Attainment s. GTN v4.11

User s Guide. Attainment s. GTN v4.11 Attainment s User s Guide A printable PDF of this user guide is available from the Attainment Company website: https://www.attainmentcompany.com/gotalk-now Contents 1 Getting Started with GoTalk NOW 1

More information

Tips and Tricks for Photos

Tips and Tricks for Photos Tips and Tricks for Photos Photo Compression: If a photo is over 125KB in size, the image will be compressed to 125KB. Note: this could result in a reduction in quality. For users who upload photos larger

More information

2nd Paragraph should make a point (could be an advantage or disadvantage) and explain the point fully giving an example where necessary.

2nd Paragraph should make a point (could be an advantage or disadvantage) and explain the point fully giving an example where necessary. STUDENT TEACHER WORKING AT GRADE TERM TARGET CLASS YEAR TARGET The long answer questions in this booklet are designed to stretch and challenge you. It is important that you understand how they should be

More information

Grading Rubric Homework 1

Grading Rubric Homework 1 Grading Rubric Homework 1 Used Git, has many commits, over time, wrote appropriate commit comments, set up Git correctly with git config Cloning repository results in a working site, no broken links, no

More information

Web Content Management

Web Content Management Web Content Management With Drupal School Website User Guide Version 1.1 1 Table of Contents Overview 3 Getting Started 4 Writing for the Web 5 Introducing: Your New Website 7 Logging in 7 The Landing

More information

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

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

More information

Technology Applications Guide 3rd Grade

Technology Applications Guide 3rd Grade Sub Category Explanation Technology TEKS Subject Foundations Terminology & AUP Use grade level appropriate technology terminology. 1A Teachers will explain the rules according to the NBISD Acceptable Use

More information

CS 051 Homework Laboratory #2

CS 051 Homework Laboratory #2 CS 051 Homework Laboratory #2 Dirty Laundry Objective: To gain experience using conditionals. The Scenario. One thing many students have to figure out for the first time when they come to college is how

More information

E08 Lay Table Automation

E08 Lay Table Automation E08 Lay Table Automation This example demonstrates how the OrcaFlex automation tools can be used to create installation lay tables. A basecase model is analysed to determine the range of top tension values

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

HTML/CSS Lesson Plans

HTML/CSS Lesson Plans HTML/CSS Lesson Plans Course Outline 8 lessons x 1 hour Class size: 15-25 students Age: 10-12 years Requirements Computer for each student (or pair) and a classroom projector Pencil and paper Internet

More information

For many people, learning any new computer software can be an anxietyproducing

For many people, learning any new computer software can be an anxietyproducing 1 Getting to Know Stata 12 For many people, learning any new computer software can be an anxietyproducing task. When that computer program involves statistics, the stress level generally increases exponentially.

More information

Resize and Watermark Images Using Ribbet.com

Resize and Watermark Images Using Ribbet.com Resize and Watermark Images Using Ribbet.com Ribbet.com provides an easy, free service for simple image editing. Ribbet.com is capable of making many different changes to your image, but we focus on re-sizing

More information

U of S Course Tools. Using the Grade Center Columns, Rows, & Categories For Instructors

U of S Course Tools. Using the Grade Center Columns, Rows, & Categories For Instructors U of S Course Tools Using the Grade Center Columns, Rows, & Categories For Instructors Fall 2015 Background: If you are using the U of S Course Tools for the first time, please review the Course Tools

More information

By Margaret Black, Rama Central P.S. 2008

By Margaret Black, Rama Central P.S. 2008 INTRODUCTION The home page for this course is located at: http://sky.prohosting.com/mansterg/web-design-course/ This course was designed as an enrichment tool for gifted and high-achieving students in

More information

Personal ICT Skills 9 Using Hot Potatoes

Personal ICT Skills 9 Using Hot Potatoes Personal ICT Skills 9 Using Hot Potatoes TM Alan Jervis Torben Steeg School of Education The University of Manchester Sixth Edition November 2006 Personal ICT Skills 2006 2006 The University of Manchester

More information

Exporting Key Stage 2 Teacher Assessments Summer 2015

Exporting Key Stage 2 Teacher Assessments Summer 2015 Exporting Key Stage 2 Teacher Assessments Summer 2015 This HelpCard is about creating and exporting your Key Stage 2 TAs You must follow this HelpCard carefully in order to create and export your Key Stage

More information

Organizing Course Content and Information

Organizing Course Content and Information Organizing Course Content and Information This document includes general overviews for using course organization tools in Canvas. Each tool includes information on reasons to use the tool, instructions

More information

FSA Geometry EOC Practice Test Guide

FSA Geometry EOC Practice Test Guide FSA Geometry EOC Practice Test Guide This guide serves as a walkthrough of the Florida Standards Assessments (FSA) Geometry End-of- Course (EOC) practice test. By reviewing the steps listed below, you

More information

ipad worksheets with Powerpoint

ipad worksheets with Powerpoint 2 Structure Content Interactive Question CLICK ME ipad worksheets with Powerpoint PDF OVERVIEW Having Mobile devices in schools offers many opportunities for worksheet and workbook design.. Colour! No

More information

RenWeb Training. Creating Your Classroom Website

RenWeb Training. Creating Your Classroom Website RenWeb Training Creating Your Classroom Website October 2013 RenWeb Training Manual Table of Contents Ren Web Survey 3 Pre-Training Handout: Saving a Document as a PDF 4 Lesson 1: Adding Homework & Web

More information

Florida Standards Assessments

Florida Standards Assessments Florida Standards Assessments Practice Tests Guide 2018 2019 Updated August 10, 2018 Prepared by the American Institutes for Research Florida Department of Education, 2018 Descriptions of the operation

More information

Dalarna University Telephone:

Dalarna University Telephone: Publish Material In the course room, there is a menu at the left. This will look familiar if you have experience working with Fronter. 1 You can publish material in Course information and in Course materials.

More information

Lecture Linear Support Vector Machines

Lecture Linear Support Vector Machines Lecture 8 In this lecture we return to the task of classification. As seen earlier, examples include spam filters, letter recognition, or text classification. In this lecture we introduce a popular method

More information

E-LEARNING SHORT COURSES IN MICROSOFT INFOPATH

E-LEARNING SHORT COURSES IN MICROSOFT INFOPATH E-LEARNING SHORT COURSES IN MICROSOFT INFOPATH Course Overview E-Learning provides you with the ideal cost effective way in which you can study at your own pace and in the comfort of your home or office.

More information

Intermediate Microsoft Excel (Demonstrated using Windows XP) Using Spreadsheets in the Classroom

Intermediate Microsoft Excel (Demonstrated using Windows XP) Using Spreadsheets in the Classroom (Demonstrated using Windows XP) Using Spreadsheets in the Classroom Adapted from Taskstream Word Tutorial (2003) < http://www.taskstream.com > Updated 4/05 by Dr. Bruce Ostertag What Can Microsoft Excel

More information

Creating Machinima using Camtasia

Creating Machinima using Camtasia Creating Machinima using Camtasia Camtasia Studio is a screen video capture software developed by TechSmith. Camtasia is mostly used to create video tutorials demonstrating how to perform tasks on your

More information

Advanced GCE Information and Communication Technology

Advanced GCE Information and Communication Technology Advanced GCE Information and Communication Technology Unit G062 Structured ICT Tasks OCR has produced these candidate style answers to support teachers in interpreting the assessment criteria for the new

More information

Title of Resource The Syntax Window for SPSS 22.0: Assignment and Grading Rubric Kimberly A. Barchard. Author(s)

Title of Resource The Syntax Window for SPSS 22.0: Assignment and Grading Rubric Kimberly A. Barchard. Author(s) Title of Resource The Syntax Window for SPSS 22.0: Assignment and Grading Rubric Kimberly A. Barchard Author(s) Leiszle Lapping-Carr Institution University of Nevada, Las Vegas Students learn to create

More information

Kurzweil 3000 for Web Browsers (Kurzweil3000.com) Getting Started

Kurzweil 3000 for Web Browsers (Kurzweil3000.com) Getting Started Kurzweil 3000 for Web Browsers (Kurzweil3000.com) Getting Started Audio Optical Systems - aos@kurzweilaustin.net - 512-454-8672 - www.kurzweilaustin.com What s included in your Kurzweil 3000 Subscription?

More information

4) Study the section of a worksheet in the image below. What is the cell address of the cell containing the word "Qtr3"?

4) Study the section of a worksheet in the image below. What is the cell address of the cell containing the word Qtr3? Choose The Correct Answer: 1) Study the highlighted cells in the image below and identify which of the following represents the correct cell address for these cells: a) The cell reference for the selected

More information

ipad TEACHER GUIDE ebackpack provides a separate Administrative Guide and Student Guide through our support site at

ipad TEACHER GUIDE ebackpack provides a separate Administrative Guide and Student Guide through our support site at ebackpack ipad Teacher Guide Page 1 of 31 ipad TEACHER GUIDE This guide will cover basic usage of ebackpack for a teacher (assignments, storage, homework review, collaboration, and Act As support). If

More information

USER GUIDE. Let s get started! Notepad Basics Notepad Settings Keyboard Editor Getting Organized Sharing your work...

USER GUIDE. Let s get started! Notepad Basics Notepad Settings Keyboard Editor Getting Organized Sharing your work... USER GUIDE Notepad Basics... 2 Notepad Settings... 4 Keyboard Editor... 6 Getting Organized... 9 Sharing your work... 11 Importing a Document... 12 Let s get started! 1 Page Notepad Basics Create a Notepad:

More information

ACER Online Assessment and Reporting System (OARS) User Guide

ACER Online Assessment and Reporting System (OARS) User Guide ACER Online Assessment and Reporting System (OARS) User Guide January 2015 Contents Quick guide... 3 Overview... 4 System requirements... 4 Account access... 4 Account set up... 5 Create student groups

More information

Graded Project. Computer Applications

Graded Project. Computer Applications Computer Applications PENN FOSTER, INC. 2016 INTRODUCTION CONTENTS INTRODUCTION 2 INSTRUCTIONS 2 SCORING GUIDELINES 10 SUBMITTING YOUR PROJECT 13 PAGE 1 COMPUTER APPLICATIONS INTRODUCTION This project

More information

ESSENTIAL LibreOffice Tutorials for Teachers

ESSENTIAL LibreOffice Tutorials for Teachers ESSENTIAL LibreOffice Tutorials for Teachers by Bernard John Poole Associate Professor Emeritus University of Pittsburgh at Johnstown Johnstown, PA, USA Copyright Bernard John Poole, 2016 All rights reserved

More information