INFORMATIKAI ALAPISMERETEK ANGOL NYELVEN

Size: px
Start display at page:

Download "INFORMATIKAI ALAPISMERETEK ANGOL NYELVEN"

Transcription

1 Informatikai alapismeretek angol nyelven középszint 1511 ÉRETTSÉGI VIZSGA május 19. INFORMATIKAI ALAPISMERETEK ANGOL NYELVEN KÖZÉPSZINTŰ ÍRÁSBELI ÉRETTSÉGI VIZSGA JAVÍTÁSI-ÉRTÉKELÉSI ÚTMUTATÓ EMBERI ERŐFORRÁSOK MINISZTÉRIUMA

2 Important Information The solutions provided in the correction guide can only be awarded the points indicated. The score must in each case be a whole number. If the examinee fails to answer as set out in the instructions, the answer will not be accepted. (E.g.: Instead of the letter F, the examinee cannot answer with the letter N.) If the question calls for a single answer (e.g. a single letter), and the examinee provides several different solutions (e.g. several different letters), then no points may be awarded. If a question calls for a single answer, as stated in the instructions, the points awardable cannot be broken down, e.g. in the case of a 2-point question, only 0 or 2 points may be awarded. In such cases, the correction guide provides detailed information on how partial points should be awarded. If the examinee has made corrections or revised the solution, but this correction is not clear, then the answer may not be accepted and 0 points must be given. In case of clear corrections, the corrected solution must be evaluated. If, due to the use of a system that differs from the usual, the examinee has provided an answer other than the one expected, but the solution and subsequent explanation is acceptable, the points awardable for the question must be awarded. írásbeli vizsga / május 19.

3 Part I Test questions 1. c 2. laser, led The point may be awarded even if the order is switched. 3. e 4. personal data 5. b d 6. c 7. a 8. c 9. data link layer a 12. 3, 5, 6, 7 In the case of 0 or 1 correct answer, no points are to be given. In the case of 2 or 3 correct answer, is to be given. 13. D = 0 15 points Source: írásbeli vizsga / május 19.

4 Part II 1. Basics of word processing, spreadsheet management and presentation creation a. Advertisement Saving of document in the default format of the word processor under the name advertisement. The point may only be awarded if the document was saved under the name indicated, and it contains the entire content of the text.txt file. Page settings The document s page orientation is portrait, page size is A4, and the margin around the page is 3 cm. Text formatting The document contains only Times New Roman (Nimbus Roman) fonts. Except for the heading and the line of the asking price, the line spacing of paragraphs is 1.1, with a font size of 11.5 points With the exception of the sections (paragraphs) highlighted in burgundy, the paragraphs are justified, first line indent is 0.5 cm, and space in front of and after paragraphs is 0 points Formatting titles In the paragraph of the heading and the asking price, font size is 18 points; font colour is white, font style is bold, and the text is aligned to the centre The font colour in the texts Characteristics: and Contact information: is white, with font style set to bold, and an indentation of 0.5 cm Has prepared at least one band with colour code RGB(127,0,0) in the correct place with the correct text. Space in front of the paragraphs of the heading and the asking price is 6 points, and 18 points after these Has applied the burgundy bands in all four places with correct indentation and sizes Formatting image Has inserted the photo.png image to the top of the text below the title, and aligned it to the right. Has resized the image to a height of 4 cm while maintaining the aspect ratio Has applied the 6-point thick border with colour code RGB(127,0,0) around the image Character formatting in paragraphs Has applied the superscript in all four places. Creation of columns Has formatted the text provided to be in two columns, and has displayed the vertical separation line between the columns The columns begin with the text shown in the example. Has set bullet symbols of appropriate colour and shape Bullet symbol indent is 0.5 cm, text indent is 1 cm 4 points 14 points írásbeli vizsga / május 19.

5 b. Properties Saving of table under the name Properties The point is to be awarded if the file contains the data if the housedata.txt file at the location indicated. The point may not be awarded if the data from the source file were not entered into the file with appropriate character encoding. Formatting of table The width for columns A:M is 100 points, and the height for lines 1:2 is 35 points. Has merged the required cells as shown in the example The content of cells A1:M2 is bold, with wrapping in line with the example in at least three places Cell borders, result formats and accuracy are as shown in the example Determination of price per square metre Using a formula, in cells I3:I21 has correctly determined the price per square metre of the properties In cell I3 =H3* /G3 Determination of the floor-space ratio of rooms Using a formula, in cells I3:I21 has correctly determined the ratio of total room floor-space to total house floor-space. In cell J3 =SUM(B3:F3)/G3 Determination of the number of full rooms and small-rooms Using functions, has correctly determined the number of full rooms and small-rooms in at least one cell The point may be awarded even if no reference was applied to cell N1 In cell K3 =COUNTIF(B3:F3;">=12") or In cell L3 =COUNTIF(B3:F3;"<12") In all the cells of K3:K21 or L3:L21, has determined correct results by copying the function containing the reference also applicable to cell N1 In cell K3 =COUNTIF(B3:F3;">="&$N$1) or In cell L3 =COUNTIF(B3:F3;"<"&$N$1) In all the cells of the K3:K21 and the L3:L21 range, has determined correct results using functions containing the reference also applicable to cell N1 Selection of rooms with 2 full +2 small-rooms Has correctly determined the 2 full +2 small-rooms criteria for at least one property =AND(K3=2;L3=2) írásbeli vizsga / május 19.

6 In all cells of M3:M21, has correctly assessed the meeting of the given criterion, and accordingly has correctly displayed + sign or left the given cell empty In cell M3 =IF(AND(K3=2;L3=2);"+";"") 2. Renovation Creation of database under the name Renovation Created the database under the name Renovation Created the Rooms table in the Renovation database Setting of fields and keys, data entry All field types have been set according to the instructions The name field has been set as primary key Has recorded at least three records perfectly Has recorded all records perfectly Has displayed the desired fields and expressions in the queries and the report Has displayed the desired fields in at least two completed queries/report Has displayed the desired fields in all completed queries/report Query 3Gres Correctly filtered for the type field Sorted data in alphabetical order according to the room names SELECT name FROM Rooms WHERE type= Gres-tile" ORDER BY name; Query 4Perimeter Grouped according to type field Has applied correct function (Sum) Function parameter is correct SELECT type, Sum(2*(length + width)) FROM Rooms GROUP BY type; Query 5AboveFour Has applied the correct aggregate function (Count) to count lines that meet the criterion Relational operators are correct Has used the correct logical operator SELECT Count(*) FROM Rooms WHERE length>4 OR width>4; Query 6Rooms Has determined the floor-space of the rooms (length* width) 1s 4 points 7 points írásbeli vizsga / május 19.

7 Has added 15% to floor-space Has rounder floor-space to a whole number Correctly filtered for rooms where diagonal laying method will be applied Has determined the price of flooring material required (quantity*price) The point may be awarded even if the discounts were not taken into account. When determining prices, discounts were also taken into account SELECT Rooms.name, Round([length]*[width]*1.15) AS Quantity, [Quantity]*[price]*(1-[disc]/100) AS Price FROM Rooms WHERE (((Rooms.diagonal)=True)); Query 7Report Has created group-levels in the report according to flooring type Within the groups, lines are sorted in alphabetical order according to the room names 25 points 3. A Binary search Function Middle(lower:Integer, upper:integer):integer... (1) Middle:=lower + (upper-lower) div 2... (2) End function (1) Function BinarySearch(t:Whole vector, search item:integer):integer... (3) Variable a:integer /*lower index*/... (4) Variable f:integer /*upper index*/... (4) Variable k:integer /*middle index*/... (4) a:=0... (4) f:=long(t)-1 (4) Loop while a<=f... (5) k:=middle(a,f)... (6) If search item=t[k] then... (6) Return with k... (6) otherwise... (6) If search item=t[k] then... (7) f:=k-1... (7) otherwise a:=k+1... (7) End if (7) End if (6) End loop (5) Binarysearch:= -1 /*-1 indicates unsuccessful search*/... (3) End function... (3) Programme BS:... (8) írásbeli vizsga / május 19.

8 Variable array v[0..9]:whole array /*vector*/... (9) v[0]:=randnum(1,9)... (9) Loop i:=from 1 until Long(v) (+1 step size)... (10) v[i]:=v[i-1]+randnum(1,5)... (10) End loop (10) If Binarysearch(v,randNum(1,30)) <> -1 then... (11) Write: Found!... (12) otherwise Write: Not found!... (12) End if (11) End programme.... (8) The partial points may not be broken down any further. When making the declaration of the variable, if the examinee also performs value assignment (defines the variable), this must also be accepted as a solution of full value. Has saved the source code as BS, the code is syntactically faultless, and has encoded at least one line correctly Correct encoding of lines marked as (1) Correct encoding of lines marked as (2) Correct encoding of lines marked as (3) Correct encoding of lines marked as (4) Correct encoding of lines marked as (5) Correct encoding of lines marked as (6) Correct encoding of lines marked as (7) Correct encoding of lines marked as (8) Correct encoding of lines marked as (9) Correct encoding of lines marked as (10) Correct encoding of line marked as (11) Correct encoding of lines marked as (12) 1 írásbeli vizsga / május 19.

9 4. A Keszthely Triathlon The partial points may not be broken down any further. The solutions may only be awarded points if they yield correct answers even with arbitrary input data. The source code submitted must be evaluated even if it is syntactically incorrect or the solution is incomplete. Saving of programme Has saved the source code as KeszthelySprint, the code is syntactically faultless, and executable. Displaying (writing) on screen Has displayed the question number for at least three questions that require displaying Has displayed the question number for all questions that require displaying, and has referred to the content to be read, and displaying is as shown in the example for at least three questions that require displaying Displaying is as shown in the example for all questions that require displaying 1. Reading and storage of data 4 points Has opened the file for reading Has read at least one data series from the file Has read all data series Has saved and stored all data The point may be awarded even if data were not stored, but were appropriately managed during the solution. 2. Number of contestants Has correctly determined the number of contestants that finished the race 3. Number of contestants in the elite junior category Has examined the elite junior category Has correctly determined the number of contestants in the elite junior category 4. Average age 4 points Has correctly determined the age of at least one contestant Has correctly determined the age of all contestants Has correctly determined average age Has displayed average age to 1 decimal place on the screen 5. Listing of start numbers Requests a category name input from the user Has listed the start numbers of all contestants racing in the category given The point may not be awarded if the start numbers of contestants from other categories are also displayed in the list. Has displayed the text defined in case of non-existent category 6. Winning contestant among women 4 points Only examined the race times of women Has correctly determined the sum of the five race times Has determined the name female contestant with the best race time 2 írásbeli vizsga / május 19.

10 3. B Calculation of a direct current (DC) circuit a. Resultant resistance 4 points = ( + ) = = (1 +3 ) = = R R =8kΩ b. Determination of voltage across the R 7 resistance, as well as the current flowing through it and the power appearing across the resistance 7 points ( + ) = ( + ) = + 12 (1 +3 ) (1 +3 ) = = =1.5 U R7 = 1.5V = = =1.5 I R7 = 1.5mA The point may be awarded if the correct I R7 value was determined using an incorrect U R7 value. = = = 2.25 P R7 = 2.25mW The point may be awarded if the correct P R7 value was determined using an incorrect I R4 value. c. Has indicated voltage direction and current direction across the given resistance. Correct direction, standard indication 1 írásbeli vizsga / május 19.

11 4. B Design a logic circuit a. Simplification of the function using a graphic method 14 points Has drawn the table correctly 1 -s entered into correct places 6 points Correct writing of C Correct writing of Has correctly written down the function = + C A B D C B b. Simplified logic function with NOT, AND and OR gates. 4 points = + c. Simplified logic function with NAND gates 4 points = + 2 írásbeli vizsga / május 19.

12 Part I Test questions points írásbeli vizsga / május 19.

13 Part II 1. Basics of word processing, spreadsheet management and presentation preparation a.) Advertisement Saving of document in the default format of the word processor under the name advertisement. Page settings Text formatting Formatting titles Formatting image Character formatting in paragraphs Creation of columns b.) Properties Saving of table under the name Properties Formatting of table Determination of price per square metre Determination of the floor-space ratio of rooms Determination of the number of full rooms and small-rooms Selection of rooms with 2 full +2 small-rooms 2. Renovation Creation of database under the name Renovation Setting of fields and keys, data entry Has displayed the desired fields and expressions in the queries Query 3Gres Query 4Perimeter Query 5AboveFour Query 6Rooms Query 7Report 4 points 14 points 1s 4 points 7 points 25 points írásbeli vizsga / május 19.

14 3. A Binary search Has saved the source code as BS, the code is syntactically faultless, and has encoded at least one line correctly Correct encoding of lines marked as (1) Correct encoding of lines marked as (2) Correct encoding of lines marked as (3) Correct encoding of lines marked as (4) Correct encoding of lines marked as (5) Correct encoding of lines marked as (6) Correct encoding of lines marked as (7) Correct encoding of lines marked as (8) Correct encoding of lines marked as (9) Correct encoding of lines marked as (10) Correct encoding of line marked as (11) Correct encoding of lines marked as (12) 4. A Keszthely Triathlon 1 Saving of programme Displaying (writing) on screen 1. Reading and storage of data 4 points 2. Number of contestants 3. Number of contestants in the elite junior category 4. Average age 4 points 5. Listing of start numbers 6. Winning contestant among women 4 points 2 3. B Calculation of a direct current (DC) circuit a. Resultant resistance 4 points b. Determination of voltage across the R 7 resistance, as well as the current flowing through it and the power appearing across the resistance 7 points c. Has indicated voltage direction and current direction across the given resistance B Design a logic circuit a. Simplification of the function using a graphic method 14 points b. Simplified logic function with NOT, AND and OR gates. 4 points c. Simplified logic function with NAND gates 4 points 2 írásbeli vizsga / május 19.

INFORMATIKA ANGOL NYELVEN

INFORMATIKA ANGOL NYELVEN Informatika angol nyelven emelt szint 1421 ÉRETTSÉGI VIZSGA 2015. október 16. INFORMATIKA ANGOL NYELVEN EMELT SZINTŰ GYAKORLATI ÉRETTSÉGI VIZSGA JAVÍTÁSI-ÉRTÉKELÉSI ÚTMUTATÓ EMBERI ERŐFORRÁSOK MINISZTÉRIUMA

More information

INFORMATIKA ANGOL NYELVEN

INFORMATIKA ANGOL NYELVEN ÉRETTSÉGI VIZSGA 2012. május 21. INFORMATIKA ANGOL NYELVEN KÖZÉPSZINTŰ GYAKORLATI VIZSGA 2012. május 21. 8:00 A gyakorlati vizsga időtartama: 180 perc Beadott dokumentumok Piszkozati pótlapok száma Beadott

More information

INFORMATIKA ANGOL NYELVEN

INFORMATIKA ANGOL NYELVEN Név:... osztály:... ÉRETTSÉGI VIZSGA 2009. május 25. INFORMATIKA ANGOL NYELVEN KÖZÉPSZINTŰ GYAKORLATI VIZSGA 2009. május 25. 8:00 A gyakorlati vizsga időtartama: 180 perc Beadott dokumentumok Piszkozati

More information

INFORMATIKA ANGOL NYELVEN

INFORMATIKA ANGOL NYELVEN ÉRETTSÉGI VIZSGA 2010. május 31. INFORMATIKA ANGOL NYELVEN KÖZÉPSZINTŰ GYAKORLATI VIZSGA 2010. május 31. 8:00 A gyakorlati vizsga időtartama: 180 perc Beadott dokumentumok Piszkozati pótlapok száma Beadott

More information

INFORMATIKA ANGOL NYELVEN INFORMATION TECHNOLOGY KÖZÉPSZINTŰ GYAKORLATI VIZSGA STANDARD LEVEL PRACTICAL EXAM 2005. október 27.

INFORMATIKA ANGOL NYELVEN INFORMATION TECHNOLOGY KÖZÉPSZINTŰ GYAKORLATI VIZSGA STANDARD LEVEL PRACTICAL EXAM 2005. október 27. ÉRETTSÉGI VIZSGA 2005. október 27. INFORMATIKA ANGOL NYELVEN INFORMATION TECHNOLOGY KÖZÉPSZINTŰ GYAKORLATI VIZSGA STANDARD LEVEL PRACTICAL EXAM 2005. október 27., 8:00 A gyakorlati vizsga időtartama: 180

More information

KERESKEDELMI ÉS MARKETING ALAPISMERETEK ANGOL NYELVEN

KERESKEDELMI ÉS MARKETING ALAPISMERETEK ANGOL NYELVEN Kereskedelmi és marketing alapismeretek angol nyelven középszint 1311 ÉRETTSÉGI VIZSGA 2014. május 20. KERESKEDELMI ÉS MARKETING ALAPISMERETEK ANGOL NYELVEN KÖZÉPSZINTŰ ÍRÁSBELI ÉRETTSÉGI VIZSGA JAVÍTÁSI-ÉRTÉKELÉSI

More information

ECDL / ICDL Word Processing Syllabus Version 5.0

ECDL / ICDL Word Processing Syllabus Version 5.0 ECDL / ICDL Word Processing Syllabus Version 5.0 Purpose This document details the syllabus for ECDL / ICDL Word Processing. The syllabus describes, through learning outcomes, the knowledge and skills

More information

ECDL / ICDL Spreadsheets Syllabus Version 5.0

ECDL / ICDL Spreadsheets Syllabus Version 5.0 ECDL / ICDL Spreadsheets Syllabus Version 5.0 Purpose This document details the syllabus for ECDL / ICDL Spreadsheets. The syllabus describes, through learning outcomes, the knowledge and skills that a

More information

Business Objects Version 5 : Introduction

Business Objects Version 5 : Introduction Business Objects Version 5 : Introduction Page 1 TABLE OF CONTENTS Introduction About Business Objects Changing Your Password Retrieving Pre-Defined Reports Formatting Your Report Using the Slice and Dice

More information

Word processing software

Word processing software Unit 244 Word processing software UAN: Level: 2 Credit value: 4 GLH: 30 Assessment type: Relationship to NOS: Assessment requirements specified by a sector or regulatory body: Aim: R/502/4628 Portfolio

More information

INFORMATIKA ANGOL NYELVEN INFORMATION TECHNOLOGY

INFORMATIKA ANGOL NYELVEN INFORMATION TECHNOLOGY ÉRETTSÉGI VIZSGA 2005. május 19. INFORMATIKA ANGOL NYELVEN INFORMATION TECHNOLOGY KÖZÉPSZINTŰ GYAKORLATI VIZSGA STANDARD LEVEL PRACTICAL EXAM A gyakorlati vizsga időtartama: 180 perc The duration of the

More information

KÖZGAZDASÁGI ALAPISMERETEK (ÜZLETI GAZDASÁGTAN) ANGOL NYELVEN

KÖZGAZDASÁGI ALAPISMERETEK (ÜZLETI GAZDASÁGTAN) ANGOL NYELVEN Közgazdasági alapismeretek középszint (üzleti gazdaságtan) angol nyelven 0921 ÉRETTSÉGI VIZSGA 2010. május 14. KÖZGAZDASÁGI ALAPISMERETEK (ÜZLETI GAZDASÁGTAN) ANGOL NYELVEN KÖZÉPSZINTŰ ÍRÁSBELI ÉRETTSÉGI

More information

F9D7 04 (ESKWP2): Word Processing Software 2

F9D7 04 (ESKWP2): Word Processing Software 2 F9D7 04 (ESKWP2): Word Processing Software 2 4 SCQF credit points at SCQF level 5 Description: This is the ability to use a software application designed for the creation, editing and production of largely

More information

Formatting Text in Microsoft Word

Formatting Text in Microsoft Word Formatting Text - 1 of 44 Formatting Text in Microsoft Word Page Setup 2 Centering Text 3 Line Spacing 4 Paragraph Spacing 4 Indenting a Paragraph s First Line 5 Hanging Indentation 5 Indenting an Entire

More information

KERESKEDELMI ÉS MARKETING ALAPISMERETEK ANGOL NYELVEN

KERESKEDELMI ÉS MARKETING ALAPISMERETEK ANGOL NYELVEN ÉRETTSÉGI VIZSGA 2015. május 19. KERESKEDELMI ÉS MARKETING ALAPISMERETEK ANGOL NYELVEN KÖZÉPSZINTŰ ÍRÁSBELI VIZSGA 2015. május 19. 8:00 Az írásbeli vizsga időtartama: 180 perc Pótlapok száma Tisztázati

More information

Section 1 Spreadsheet Design

Section 1 Spreadsheet Design Section 1 Spreadsheet Design Level 6 Spreadsheet 6N4089 Contents 1. Assess the suitability of using a spreadsheet to achieve a given requirement from a given specification... 1 Advantages of using Spreadsheet

More information

Getting Started with Excel 2008. Table of Contents

Getting Started with Excel 2008. Table of Contents Table of Contents Elements of An Excel Document... 2 Resizing and Hiding Columns and Rows... 3 Using Panes to Create Spreadsheet Headers... 3 Using the AutoFill Command... 4 Using AutoFill for Sequences...

More information

KÖZGAZDASÁGI- MARKETING ALAPISMERETEK ANGOL NYELVEN

KÖZGAZDASÁGI- MARKETING ALAPISMERETEK ANGOL NYELVEN emelt szint angol nyelven 0801 ÉRETTSÉGI VIZSGA 2009. május 22. KÖZGAZDASÁGI- MARKETING ALAPISMERETEK ANGOL NYELVEN EMELT SZINTŰ ÍRÁSBELI ÉRETTSÉGI VIZSGA JAVÍTÁSI-ÉRTÉKELÉSI ÚTMUTATÓ OKTATÁSI ÉS KULTURÁLIS

More information

INFORMATIKA ANGOL NYELVEN

INFORMATIKA ANGOL NYELVEN ÉRETTSÉGI VIZSGA 2008. május 27. INFORMATIKA ANGOL NYELVEN KÖZÉPSZINTŰ GYAKORLATI VIZSGA 2008. május 27. 8:00 A gyakorlati vizsga időtartama: 180 perc Beadott dokumentumok Piszkozati pótlapok száma Beadott

More information

Tutorial 2: Using Excel in Data Analysis

Tutorial 2: Using Excel in Data Analysis Tutorial 2: Using Excel in Data Analysis This tutorial guide addresses several issues particularly relevant in the context of the level 1 Physics lab sessions at Durham: organising your work sheet neatly,

More information

Level 1 Certificate in Practical ICT Skills

Level 1 Certificate in Practical ICT Skills LCCI International Qualifications Level 1 Certificate in Practical ICT Skills Syllabus Effective from 2001 For further information contact us: Tel. +44 (0) 8707 202909 Email. enquiries@ediplc.com www.lcci.org.uk

More information

Excel 2007 Tutorials - Video File Attributes

Excel 2007 Tutorials - Video File Attributes Get Familiar with Excel 2007 42.40 3.02 The Excel 2007 Environment 4.10 0.19 Office Button 3.10 0.31 Quick Access Toolbar 3.10 0.33 Excel 2007 Ribbon 3.10 0.26 Home Tab 5.10 0.19 Insert Tab 3.10 0.19 Page

More information

Basic Excel Handbook

Basic Excel Handbook 2 5 2 7 1 1 0 4 3 9 8 1 Basic Excel Handbook Version 3.6 May 6, 2008 Contents Contents... 1 Part I: Background Information...3 About This Handbook... 4 Excel Terminology... 5 Excel Terminology (cont.)...

More information

MS Excel. Handout: Level 2. elearning Department. Copyright 2016 CMS e-learning Department. All Rights Reserved. Page 1 of 11

MS Excel. Handout: Level 2. elearning Department. Copyright 2016 CMS e-learning Department. All Rights Reserved. Page 1 of 11 MS Excel Handout: Level 2 elearning Department 2016 Page 1 of 11 Contents Excel Environment:... 3 To create a new blank workbook:...3 To insert text:...4 Cell addresses:...4 To save the workbook:... 5

More information

BLACKBOARD 9.1: Text Editor

BLACKBOARD 9.1: Text Editor BLACKBOARD 9.1: Text Editor The text editor in Blackboard is a feature that appears in many different areas, but generally has the same look and feel no matter where it appears. The text editor has changed

More information

Excel 2003 Tutorials - Video File Attributes

Excel 2003 Tutorials - Video File Attributes Using Excel Files 18.00 2.73 The Excel Environment 3.20 0.14 Opening Microsoft Excel 2.00 0.12 Opening a new workbook 1.40 0.26 Opening an existing workbook 1.50 0.37 Save a workbook 1.40 0.28 Copy a workbook

More information

BCS IT User Syllabus Version 2.0 Sample Test Word Processing Level 1 Version SampleMQTB/2.0/WP1/v1.0_XP07 SAMPLE TEST

BCS IT User Syllabus Version 2.0 Sample Test Word Processing Level 1 Version SampleMQTB/2.0/WP1/v1.0_XP07 SAMPLE TEST BCS IT User Syllabus Version 2.0 Sample Test Word Processing Level 1 Version SampleMQTB/2.0/WP1/v1.0_XP07 SAMPLE TEST You work for a travel company. One of your duties is to edit a visitors guide to Wimbledon.

More information

Ohio University Computer Services Center August, 2002 Crystal Reports Introduction Quick Reference Guide

Ohio University Computer Services Center August, 2002 Crystal Reports Introduction Quick Reference Guide Open Crystal Reports From the Windows Start menu choose Programs and then Crystal Reports. Creating a Blank Report Ohio University Computer Services Center August, 2002 Crystal Reports Introduction Quick

More information

BUSINESS OBJECTS XI WEB INTELLIGENCE

BUSINESS OBJECTS XI WEB INTELLIGENCE BUSINESS OBJECTS XI WEB INTELLIGENCE SKW USER GUIDE (Skilled Knowledge Worker) North Carolina Community College Data Warehouse Last Saved: 3/31/10 9:40 AM Page 1 of 78 Contact Information Helpdesk If you

More information

In this session, we will explain some of the basics of word processing. 1. Start Microsoft Word 11. Edit the Document cut & move

In this session, we will explain some of the basics of word processing. 1. Start Microsoft Word 11. Edit the Document cut & move WORD PROCESSING In this session, we will explain some of the basics of word processing. The following are the outlines: 1. Start Microsoft Word 11. Edit the Document cut & move 2. Describe the Word Screen

More information

Word Processing programs and their uses

Word Processing programs and their uses Word Processing programs and their uses An application that provides extensive tools for creating all kinds of text based programs. They are not limited to working with text and enable you to add images

More information

Help on Icons and Drop-down Options in Document Editor

Help on Icons and Drop-down Options in Document Editor Page 1 of 5 Exact Synergy Enterprise Help on Icons and Drop-down Options in Document Editor Introduction The following table provides descriptions on the icons and drop-down options that are available

More information

Word processing OpenOffice.org Writer

Word processing OpenOffice.org Writer STUDENT S BOOK 3 rd module Word processing OpenOffice.org Writer This work is licensed under a Creative Commons Attribution- ShareAlike 3.0 Unported License. http://creativecommons.org/license s/by-sa/3.0

More information

Star News. St. Luke s Church. Fire Station. Library. Mini- Super market. Post Office. Hans Flour Café & Bakery OUT. Sure fit Leisure Centre

Star News. St. Luke s Church. Fire Station. Library. Mini- Super market. Post Office. Hans Flour Café & Bakery OUT. Sure fit Leisure Centre IN OUT Star News Hans Flour Café & Bakery Post Office Mini- Super market COMMUNITY GREEN Sure fit Leisure Centre St. Luke s Church Community Centre Church Hall Library Fire Station Local Police NAME: FORM:

More information

MS Word 2007 practical notes

MS Word 2007 practical notes MS Word 2007 practical notes Contents Opening Microsoft Word 2007 in the practical room... 4 Screen Layout... 4 The Microsoft Office Button... 4 The Ribbon... 5 Quick Access Toolbar... 5 Moving in the

More information

Sample Table. Columns. Column 1 Column 2 Column 3 Row 1 Cell 1 Cell 2 Cell 3 Row 2 Cell 4 Cell 5 Cell 6 Row 3 Cell 7 Cell 8 Cell 9.

Sample Table. Columns. Column 1 Column 2 Column 3 Row 1 Cell 1 Cell 2 Cell 3 Row 2 Cell 4 Cell 5 Cell 6 Row 3 Cell 7 Cell 8 Cell 9. Working with Tables in Microsoft Word The purpose of this document is to lead you through the steps of creating, editing and deleting tables and parts of tables. This document follows a tutorial format

More information

Question: 1 You type a document and you want to insert header from third page. Which of the following technique will you use to accomplish the task?

Question: 1 You type a document and you want to insert header from third page. Which of the following technique will you use to accomplish the task? Question: 1 You type a document and you want to insert header from third page. Which of the following technique will you use to accomplish the task? A. Go to the third page and insert header. B. Use a

More information

Creating Web Pages with HTML Simplified. 3rd Edition

Creating Web Pages with HTML Simplified. 3rd Edition Brochure More information from http://www.researchandmarkets.com/reports/2248215/ Creating Web Pages with HTML Simplified. 3rd Edition Description: Are you new to computers? Does new technology make you

More information

LEWIS-CLARK STATE COLLEGE BUSINESS TECHNOLOGY AND SERVICE DIVISION SYLLABUS

LEWIS-CLARK STATE COLLEGE BUSINESS TECHNOLOGY AND SERVICE DIVISION SYLLABUS LEWIS-CLARK STATE COLLEGE BUSINESS TECHNOLOGY AND SERVICE DIVISION SYLLABUS Course Title: Business Computer Skills Course Number: CITPT 110-01/PT01 and CITPT 110-02/PT02 Credit Hours: 3 Semester: Fall

More information

Working with Tables: How to use tables in OpenOffice.org Writer

Working with Tables: How to use tables in OpenOffice.org Writer Working with Tables: How to use tables in OpenOffice.org Writer Title: Working with Tables: How to use tables in OpenOffice.org Writer Version: 1.0 First edition: January 2005 First English edition: January

More information

Enhanced Formatting and Document Management. Word 2010. Unit 3 Module 3. Diocese of St. Petersburg Office of Training Training@dosp.

Enhanced Formatting and Document Management. Word 2010. Unit 3 Module 3. Diocese of St. Petersburg Office of Training Training@dosp. Enhanced Formatting and Document Management Word 2010 Unit 3 Module 3 Diocese of St. Petersburg Office of Training Training@dosp.org This Page Left Intentionally Blank Diocese of St. Petersburg 9/5/2014

More information

Computer Applications (10004)

Computer Applications (10004) Computer Applications (10004) Rationale Statement: With the growing need for computers in school and business, it is important that South Dakota high school students have an understanding of common application

More information

Serif PagePlusX4. Group Listing

Serif PagePlusX4. Group Listing File Menu New Startup Wizard New Publication New Book Open File Open Browse Files Browse Revert Close File Save Save As Save As Package Export As Picture Properties Page Setup Layout Guides Print Print

More information

Web Developer Jr - Newbie Course

Web Developer Jr - Newbie Course Web Developer Jr - Newbie Course Session Course Outline Remarks 1 Introduction to web concepts & view samples of good websites. Understand the characteristics of good website Understand the importance

More information

Microsoft Word 2010 Prepared by Computing Services at the Eastman School of Music July 2010

Microsoft Word 2010 Prepared by Computing Services at the Eastman School of Music July 2010 Microsoft Word 2010 Prepared by Computing Services at the Eastman School of Music July 2010 Contents Microsoft Office Interface... 4 File Ribbon Tab... 5 Microsoft Office Quick Access Toolbar... 6 Appearance

More information

Google Docs Basics Website: http://etc.usf.edu/te/

Google Docs Basics Website: http://etc.usf.edu/te/ Website: http://etc.usf.edu/te/ Google Docs is a free web-based office suite that allows you to store documents online so you can access them from any computer with an internet connection. With Google

More information

INFORMATIKA ANGOL NYELVEN

INFORMATIKA ANGOL NYELVEN ÉRETTSÉGI VIZSGA 2010. május 11. INFORMATIKA ANGOL NYELVEN EMELT SZINTŰ GYAKORLATI VIZSGA 2010. május 11. 8:00 A gyakorlati vizsga időtartama: 240 perc Beadott dokumentumok Piszkozati pótlapok száma Beadott

More information

As in the example above, a Budget created on the computer typically has:

As in the example above, a Budget created on the computer typically has: Activity Card Create a How will you ensure that your expenses do not exceed what you planned to invest or spend? You can create a budget to plan your expenditures and earnings. As a family, you can plan

More information

DOING MORE WITH WORD: MICROSOFT OFFICE 2010

DOING MORE WITH WORD: MICROSOFT OFFICE 2010 University of North Carolina at Chapel Hill Libraries Carrboro Cybrary Chapel Hill Public Library Durham County Public Library DOING MORE WITH WORD: MICROSOFT OFFICE 2010 GETTING STARTED PAGE 02 Prerequisites

More information

Excel 2007: Basics Learning Guide

Excel 2007: Basics Learning Guide Excel 2007: Basics Learning Guide Exploring Excel At first glance, the new Excel 2007 interface may seem a bit unsettling, with fat bands called Ribbons replacing cascading text menus and task bars. This

More information

Introduction to Microsoft Word 2008

Introduction to Microsoft Word 2008 1. Launch Microsoft Word icon in Applications > Microsoft Office 2008 (or on the Dock). 2. When the Project Gallery opens, view some of the available Word templates by clicking to expand the Groups, and

More information

DIGITAL DESIGN APPLICATIONS Word Exam REVIEW

DIGITAL DESIGN APPLICATIONS Word Exam REVIEW DIGITAL DESIGN APPLICATIONS Word Exam REVIEW Directions: Complete the following word processing document, and know how to use proper formatting techniques on it. 1. Before keying in the text in the box

More information

Avery DesignPro 2000 User Guide

Avery DesignPro 2000 User Guide Avery DesignPro 2000 User Guide Creating labels and cards for your personal needs is easy with Avery DesignPro 2000 Avery DesignPro 2000 User Guide First edition of the condensed user manual for Avery

More information

Basic Microsoft Excel 2007

Basic Microsoft Excel 2007 Basic Microsoft Excel 2007 The biggest difference between Excel 2007 and its predecessors is the new layout. All of the old functions are still there (with some new additions), but they are now located

More information

Joomla Article Advanced Topics: Table Layouts

Joomla Article Advanced Topics: Table Layouts Joomla Article Advanced Topics: Table Layouts An HTML Table allows you to arrange data text, images, links, etc., into rows and columns of cells. If you are familiar with spreadsheets, you will understand

More information

Publisher 2010 Cheat Sheet

Publisher 2010 Cheat Sheet April 20, 2012 Publisher 2010 Cheat Sheet Toolbar customize click on arrow and then check the ones you want a shortcut for File Tab (has new, open save, print, and shows recent documents, and has choices

More information

Microsoft Excel Training - Course Topic Selections

Microsoft Excel Training - Course Topic Selections Microsoft Excel Training - Course Topic Selections The Basics Creating a New Workbook Navigating in Excel Moving the Cell Pointer Using Excel Menus Using Excel Toolbars: Hiding, Displaying, and Moving

More information

Excel 2003 Tutorial I

Excel 2003 Tutorial I This tutorial was adapted from a tutorial by see its complete version at http://www.fgcu.edu/support/office2000/excel/index.html Excel 2003 Tutorial I Spreadsheet Basics Screen Layout Title bar Menu bar

More information

Creating a Poster Presentation using PowerPoint

Creating a Poster Presentation using PowerPoint Creating a Poster Presentation using PowerPoint Course Description: This course is designed to assist you in creating eye-catching effective posters for presentation of research findings at scientific

More information

ECDL / ICDL Presentation Syllabus Version 5.0

ECDL / ICDL Presentation Syllabus Version 5.0 ECDL / ICDL Presentation Syllabus Version 5.0 Purpose This document details the syllabus for ECDL / ICDL Presentation. The syllabus describes, through learning outcomes, the knowledge and skills that a

More information

KÖZGAZDASÁGI ALAPISMERETEK (ÜZLETI GAZDASÁGTAN) ANGOL NYELVEN

KÖZGAZDASÁGI ALAPISMERETEK (ÜZLETI GAZDASÁGTAN) ANGOL NYELVEN ÉRETTSÉGI VIZSGA 2011. május 13. KÖZGAZDASÁGI ALAPISMERETEK (ÜZLETI GAZDASÁGTAN) ANGOL NYELVEN KÖZÉPSZINTŰ ÍRÁSBELI VIZSGA 2011. május 13. 8:00 Az írásbeli vizsga időtartama: 180 perc Pótlapok száma Tisztázati

More information

Excel Project Creating a Stock Portfolio Simulation

Excel Project Creating a Stock Portfolio Simulation Background Vocabulary Excel Project Creating a Stock Portfolio Simulation 1. What is a stock? A stock is a share in the ownership of a corporation, a large business organization. A stock, also, represents

More information

Advanced Word for Windows

Advanced Word for Windows Advanced Word for Windows Version: 2002 Academic Computing Support Information Technology Services Tennessee Technological University September 2003 1. Opening Word for Windows In the PC labs, click on

More information

Excel Unit 4. Data files needed to complete these exercises will be found on the S: drive>410>student>computer Technology>Excel>Unit 4

Excel Unit 4. Data files needed to complete these exercises will be found on the S: drive>410>student>computer Technology>Excel>Unit 4 Excel Unit 4 Data files needed to complete these exercises will be found on the S: drive>410>student>computer Technology>Excel>Unit 4 Step by Step 4.1 Creating and Positioning Charts GET READY. Before

More information

Tutorial Microsoft Office Excel 2003

Tutorial Microsoft Office Excel 2003 Tutorial Microsoft Office Excel 2003 Introduction: Microsoft Excel is the most widespread program for creating spreadsheets on the market today. Spreadsheets allow you to organize information in rows and

More information

WebCT 4.x: HTML Editor

WebCT 4.x: HTML Editor Competencies After reading this document, you will be able to: Employ the HTML Editor capabilities to create and publish content. About HTML Editor The HTML editor provides word-processor-like features

More information

ÉRETTSÉGI VIZSGA 2007. május 25.

ÉRETTSÉGI VIZSGA 2007. május 25. ÉRETTSÉGI VIZSGA 2007. május 25. KÖZGAZDASÁGI ALAPISMERETEK (ELMÉLETI GAZDASÁGTAN) ANGOL NYELVEN THE BASICS OF ECONOMICS (THEORETICAL ECONOMICS) 2007. május 25. 8:00 EMELT SZINTŰ ÍRÁSBELI VIZSGA ADVANCED

More information

ESKIWP1 Word processing software

ESKIWP1 Word processing software Overview This is the ability to use a software application designed for the creation, editing and production of largely text-based documents ESKIWP1 1 Performance criteria You must be able to: Input and

More information

Lower School. Third Grade

Lower School. Third Grade Lower School The goal of the Lower School Computer curriculum is to continue to develop technology skills for both academic learning and personal productivity in the 21 st century. Students learn the science

More information

Level 2 Certificate in Practical ICT Skills

Level 2 Certificate in Practical ICT Skills LCCI International Qualifications Level 2 Certificate in Practical ICT Skills Syllabus Effective from 1 May 2007 For further information contact us: Tel. +44 (0) 8707 202909 Email. enquiries@ediplc.com

More information

Middle School. Sixth Grade

Middle School. Sixth Grade Middle School The goal of the Middle School Computer curriculum is to further develop technology skills for both academic learning and personal productivity in the 21 st century. Students learn the science

More information

CREATING FORMAL REPORT. using MICROSOFT WORD. and EXCEL

CREATING FORMAL REPORT. using MICROSOFT WORD. and EXCEL CREATING a FORMAL REPORT using MICROSOFT WORD and EXCEL TABLE OF CONTENTS TABLE OF CONTENTS... 2 1 INTRODUCTION... 4 1.1 Aim... 4 1.2 Authorisation... 4 1.3 Sources of Information... 4 2 FINDINGS... 4

More information

Microsoft Word defaults to left justified (aligned) paragraphs. This means that new lines automatically line up with the left margin.

Microsoft Word defaults to left justified (aligned) paragraphs. This means that new lines automatically line up with the left margin. Microsoft Word Part 2 Office 2007 Microsoft Word 2007 Part 2 Alignment Microsoft Word defaults to left justified (aligned) paragraphs. This means that new lines automatically line up with the left margin.

More information

ADMINISTRATORS GUIDE EPISUITE 6

ADMINISTRATORS GUIDE EPISUITE 6 ADMINISTRATORS GUIDE EPISUITE 6 A quick tutorial on how to set up and implement Episuite Software created by IDentiphoto Specialists in IDentification 1810 Joseph Lloyd Pkwy. Willoughby, OH 44094 Phone:

More information

Excel 2003 A Beginners Guide

Excel 2003 A Beginners Guide Excel 2003 A Beginners Guide Beginner Introduction The aim of this document is to introduce some basic techniques for using Excel to enter data, perform calculations and produce simple charts based on

More information

Excel 2007 A Beginners Guide

Excel 2007 A Beginners Guide Excel 2007 A Beginners Guide Beginner Introduction The aim of this document is to introduce some basic techniques for using Excel to enter data, perform calculations and produce simple charts based on

More information

As in the example given, a Newsletter created on the computer typically has: A title that explains what sort of information is in the newsletter

As in the example given, a Newsletter created on the computer typically has: A title that explains what sort of information is in the newsletter Create a How do you let others know about events and activities taking place in your community? Do you want to create a newsletter to share the information? A newsletter is a publication that is distributed

More information

11 Printing Designs. When you have completed this chapter, you will be able to:

11 Printing Designs. When you have completed this chapter, you will be able to: 11 Printing Designs Creating printed documents is the end we have worked towards from the beginning of this course. We have already been introduced to it very briefly with Printing - A First Look on page

More information

Microsoft Office PowerPoint 2013

Microsoft Office PowerPoint 2013 Microsoft Office PowerPoint 2013 Navigating the PowerPoint 2013 Environment The Ribbon: The ribbon is where you will access a majority of the commands you will use to create and develop your presentation.

More information

Microsoft Excel Basics

Microsoft Excel Basics COMMUNITY TECHNICAL SUPPORT Microsoft Excel Basics Introduction to Excel Click on the program icon in Launcher or the Microsoft Office Shortcut Bar. A worksheet is a grid, made up of columns, which are

More information

Microsoft Excel 2010 Tutorial

Microsoft Excel 2010 Tutorial 1 Microsoft Excel 2010 Tutorial Excel is a spreadsheet program in the Microsoft Office system. You can use Excel to create and format workbooks (a collection of spreadsheets) in order to analyze data and

More information

CREATING A TABLE IN WORD 2003

CREATING A TABLE IN WORD 2003 CREATING A TABLE IN WORD 2003 Introduction This document explains the different options available for creating tables with Microsoft Office 2003 and explains how to create and format a table using Microsoft

More information

KÖZGAZDASÁGI ALAPISMERETEK (ELMÉLETI GAZDASÁGTAN) ANGOL NYELVEN

KÖZGAZDASÁGI ALAPISMERETEK (ELMÉLETI GAZDASÁGTAN) ANGOL NYELVEN ÉRETTSÉGI VIZSGA 2010. május 14. KÖZGAZDASÁGI ALAPISMERETEK (ELMÉLETI GAZDASÁGTAN) ANGOL NYELVEN EMELT SZINTŰ ÍRÁSBELI VIZSGA 2010. május 14. 8:00 Az írásbeli vizsga időtartama: 180 perc Pótlapok száma

More information

University of Miami Information Technology

University of Miami Information Technology University of Miami Information Technology Word 2013 is fairly similar to Word 2010 but has a few variations. Word 2013, however, still uses the same file extension (.docx) This manual will discuss the

More information

DIRECTIONS FOR SETTING UP LABELS FOR MARCO S INSERT STOCK IN WORD PERFECT, MS WORD AND ACCESS

DIRECTIONS FOR SETTING UP LABELS FOR MARCO S INSERT STOCK IN WORD PERFECT, MS WORD AND ACCESS DIRECTIONS FOR SETTING UP LABELS FOR MARCO S INSERT STOCK IN WORD PERFECT, MS WORD AND ACCESS WORD PERFECT FORMAT MARCO ITEM #A-3LI - 2.25 H x 3W Inserts First create a new document. From the main page

More information

customer community Getting started Visual Editor Guide! www.pure360community.co.uk

customer community Getting started Visual Editor Guide! www.pure360community.co.uk Getting started! 1 Contents Introduction... 3 Visual Editor Options... 3-5 Advanced Tips... 6-7 Do s and Don ts... 7-9 Testing Messages... 10 2 Welcome The Visual Editor tool is the ideal resource for

More information

Utilizing Microsoft Access Forms and Reports

Utilizing Microsoft Access Forms and Reports Utilizing Microsoft Access Forms and Reports The 2014 SAIR Conference Workshop #3 October 4 th, 2014 Presented by: Nathan Pitts (Sr. Research Analyst The University of North Alabama) Molly Vaughn (Associate

More information

Understanding Start-Up Costs

Understanding Start-Up Costs Understanding Start-Up Costs One of the many tasks you have to do when you plan to start any business is to calculate the initial costs involved in starting and operating your business. Almost every business

More information

Mass Email. General Use

Mass Email. General Use Mass Email The Q Mass Email application allows users to compose and mass email students and/or their contacts. The application will mass send emails based on the selected Sender and creation of a Recipients

More information

Microsoft Access 2010 Overview of Basics

Microsoft Access 2010 Overview of Basics Opening Screen Access 2010 launches with a window allowing you to: create a new database from a template; create a new template from scratch; or open an existing database. Open existing Templates Create

More information

Create a Poster Using Publisher

Create a Poster Using Publisher Contents 1. Introduction 1. Starting Publisher 2. Create a Poster Template 5. Aligning your images and text 7. Apply a background 12. Add text to your poster 14. Add pictures to your poster 17. Add graphs

More information

Scientific Graphing in Excel 2010

Scientific Graphing in Excel 2010 Scientific Graphing in Excel 2010 When you start Excel, you will see the screen below. Various parts of the display are labelled in red, with arrows, to define the terms used in the remainder of this overview.

More information

EXCEL 2010: PAGE LAYOUT

EXCEL 2010: PAGE LAYOUT EXCEL 2010: PAGE LAYOUT PAGE SET UP Options to change the page layout of a spreadsheet are available from the PAGE LAYOUT tab. Most of these options are available from the PAGE SETUP group on this tab.

More information

Creating and Editing Workbooks. STUDENT LEARNING OUTCOMES (SLOs) After completing this chapter, you will be able to:

Creating and Editing Workbooks. STUDENT LEARNING OUTCOMES (SLOs) After completing this chapter, you will be able to: CHAPTER 1 Creating and Editing Workbooks CHAPTER OVERVIEW Microsoft Excel (Excel) is a spreadsheet program you can use to create electronic workbooks to organize numerical data, perform calculations, and

More information

Computer Literacy Syllabus Class time: Mondays 5:00 7:00 p.m. Class location: 955 W. Main Street, Mt. Vernon, KY 40456

Computer Literacy Syllabus Class time: Mondays 5:00 7:00 p.m. Class location: 955 W. Main Street, Mt. Vernon, KY 40456 Computer Literacy Syllabus Class time: Mondays 5:00 7:00 p.m. Class location: 955 W. Main Street, Mt. Vernon, KY 40456 INSTRUCTOR: Jamie A. McFerron OFFICE: 245 Richmond Street Mt. Vernon, KY 40456 PHONE:

More information

MICROSOFT WORD TUTORIAL

MICROSOFT WORD TUTORIAL MICROSOFT WORD TUTORIAL G E T T I N G S T A R T E D Microsoft Word is one of the most popular word processing programs supported by both Mac and PC platforms. Microsoft Word can be used to create documents,

More information

Introduction to Microsoft Access 2007

Introduction to Microsoft Access 2007 Introduction to Microsoft Access 2007 Introduction A database is a collection of information that's related. Access allows you to manage your information in one database file. Within Access there are four

More information

7 th Annual LiveText Collaboration Conference. Advanced Document Authoring

7 th Annual LiveText Collaboration Conference. Advanced Document Authoring 7 th Annual LiveText Collaboration Conference Advanced Document Authoring Page of S. La Grange Road, nd Floor, La Grange, IL 6055-455 -866-LiveText (-866-548-3839) edu-solutions@livetext.com Page 3 of

More information

Microsoft Word 2010: How to Resize and Move Clip Art

Microsoft Word 2010: How to Resize and Move Clip Art Microsoft Word 2010: How to Resize and Move Clip Art Resizing Clip Art If your clip art is too big or too small you can resize to suit your needs. Click on your image with the left mouse button. You should

More information

VENDÉGLÁTÓ- IDEGENFORGALMI ALAPISMERETEK ANGOL NYELVEN

VENDÉGLÁTÓ- IDEGENFORGALMI ALAPISMERETEK ANGOL NYELVEN középszint 0811 ÉRETTSÉGI VIZSGA 2008. május 26. VENDÉGLÁTÓ- IDEGENFORGALMI ALAPISMERETEK ANGOL NYELVEN KÖZÉPSZINTŰ ÍRÁSBELI ÉRETTSÉGI VIZSGA JAVÍTÁSI-ÉRTÉKELÉSI ÚTMUTATÓ OKTATÁSI ÉS KULTURÁLIS MINISZTÉRIUM

More information