PROBLEM SOLVING AND OFFICE AUTOMATION. A Program consists of a series of instruction that a computer processes to perform the required operation.

Size: px
Start display at page:

Download "PROBLEM SOLVING AND OFFICE AUTOMATION. A Program consists of a series of instruction that a computer processes to perform the required operation."

Transcription

1 UNIT III PROBLEM SOLVING AND OFFICE AUTOMATION Planning the Computer Program Purpose Algorithm Flow Charts Pseudo code -Application Software Packages- Introduction to Office Packages (not detailed commands for examination). COMPUTER PROGRAMMING AND LANGUAGES Computer Program: Computers work on a set of instructions called computer program, which clearly specifies the ways to carry out a task. Developing a Program: A Program consists of a series of instruction that a computer processes to perform the required operation. Program Development Cycle: Before starting the process of writing a program, the programmer has to determine the problem that needs to be solved. There are different approaches to problem solving. One such approach is program development cycle. Program development cycle has the following phases. 1. Analyze/Define the Problem: The problem is analysed precisely and completely. Based on understanding, the developer knows about the scope within which the problem needs to be analysed. 2. Task Analysis: After analyzing the problem, the developer needs to develop various solutions to solve the given problem. From these solutions, an

2 optimum solution is chosen, which can solve the problem comfortably and economically. 3. Designing Phase: After selecting the appropriate solution, algorithm is developed to depict the basic logic of the selected solution. An algorithm depicts the solution in logical steps. Algorithm is represented by flowcharts and pseudo codes. 4. Testing the Algorithm for Accuracy : The purpose of checking algorithm is to identify major logical errors at an early stage, because logical errors are often difficult to detect and correct at later stages. The testing also ensures that the algorithm is a correct one. 5. Coding: The actual coding of the program takes place in the chosen programming language. Depending upon application domain and available resources, a program can be written by using programming languages. 6. Test and debug the program: It is common for the initial program code to contain errors. A program compiler and programmer-designed test data machine tests the code for syntax errors. Depending upon the complexity of the program, several rounds of testing may be required. 7. Documentation and Implementation: Once the progam is free from all the errors, it is the duty of the program developers to ensure that the program is supported by suitable

3 documentation. After documentation, the program is installed on the end use s machine. Analyse Problem Documentation & Implementation Task Analysis Test & Debug the Program Designing Phase Coding Algorithm Testing PROGRAM DEVELOPMENT CYCLE PROBLEM SOLVING TECHNIQUES: Problem solving technique is a set of techniques and graphical tools that helps in providing logic for solving a problem. These tools are used to express the logic of the problem by specifying the correct sequence of all instructions to be carried out There are three important problem solving tools used for program development. They are: i. Algorithms ii. Flowcharts iii. Pseudo codes.

4 i. Algorithms: Algorithms are one the most basic tools that are used to develop the problem solving logic. An algorithm is defined as a finite sequence of explicit instruction that when provided with a set of input values process an output and then terminates. Algorithms can have steps that repeat or require decisions until the task is completed. Example: To find out the largest number among three numbers A, B & C. Step 1: Start Step 2: Read three Numbers A, B & C. Step 3: Find the largest number between A & B and store it in Max_AB. Step 4: Find the larger number between MAX_AB and C and store it in MAX. Step 5: Display MAX. Step 6: Stop. Properties: 1. There must be no ambiguity in any instruction. 2. There should not be any uncertainty about which instruction is to be executed next. 3. The algorithm should conclude after a finite number of steps. 4. The algorithm must be general enough to deal with any contingency.

5 ii. Flowchart: A flowchart is a pictorial representation of an algorithm in which the steps are drawn in the form of different shapes of boxes and the logical flow is indicated by interconnecting arrows. The boxes represent operations and the arrows represent the sequence in which the operations are implemented. Flowchart Symbols: Symbol Symbol Name Description Flow Lines Used to connect Terminal symbols Used to represent start, pause or halt in the program logic. Input/Output Represents the information entering or leaving the system. Processing Represents arithmetic and logical instructions. Decision Represents a decision to be made. Connector Used to join different flow lines. Guidelines for preparing flowcharts:

6 1. The flowchart should be clear, neat and easy to follow. 2. The flowchart must have a logical start and finish. 3. Only one flow line should come out from a process symbol. 4. Only one flow line should enter a decision symbol. However, two or three flow lines may leave the decision symbol. 5. Only one flow line is used with a terminal symbol. 6. Within standard symbols, write briefly and precisely. 7. Intersection of flow lines should be avoided. 8. It is useful to test the validity of the flowchart with normal/unusual test data. Benefits of Flow charts: A flowchart helps to clarify how things are currently working and how they could be improved. It also assists in finding the key elements of a process by drawing clear lines between the end of one process and the start of next one. Reasons for using flowcharts as a problem solving tool are given below: i. Makes Logic Clear.

7 ii. Communication. iii. Effective Analysis. iv. Useful in coding. v. Proper testing and debugging. vi. Appropriate documentation. Limitations of Flowcharts: The limitations of flowcharts are: i. Complex. ii. Costly. iii. Difficult to modify. iv. No update. iii. Pseudo code: Pseudo code is made up of two words: Pseudo and code. It means imitation and code refers to instructions, written in a programming language. Pseudo code is an outline of a program. It uses plain English statements rather than symbols. It is also knows as PDL (Program Design Language). Example: Pseudo code to calculate the area of a rectangle PROMPT the user to enter the height of the rectangle. PROMPT the user to enter the width of the rectangle. COMPUTE the area by multiplying the height with width. DISPLAY the area.

8 STOP. Some of the keywords used in pseudo code are given below: Input: READ, OBTAIN, GET and PROMPT. Output: PRINT, DISPLAY and SHOW. Compute: COMPUTE, CALCULATE and DETERMINE. Initialise: SET and INITIALISE Add ONE: INCREMENT. Benefits of Pseudo code: Since it is independent of any language, it can be used by most programmers. It is easy to develop a program from pseudo code than with a flowchart. It is easy to translate pseudo code into a programming language. Pseudo code is compact and does not tend to run over many pages. Limitations of Pseudo code: It does not provide visual representation of the program s logic. There are no accepted standards for writing pseudo codes. Program Control Structures; Program statements that affect the order in which statements are executed, or that affect whether statements are executed, are called control structures. They affect the flow of simulation code since a control structure

9 evaluates statements and then executes code according to the result. There are 3 control structures. They are: i. Sequence Control Structures: Information flows in a straight line. ii. Selection Control Structures: Decisions are made according to predefined conditions. iii. Repetition Control Structures: Sequence of steps is repeated in a loop until the desired output. i. Sequence Control Structure In a sequence structure, the instructions to be computed follow one another in a logical progression. This structure is denoted by writing one action after another, each action on a line by itself. In addition, all actions aligned with the logical indent. Diagrammatic Representation: Flow Chart Pseudo code

10 Action 1 Action 1 Action 2 Action 3 Action 2 Action 3.. Action N Action N Example: Start X=10, Y=20 Z=X+Y Print Z Stop ii. Selection Control Structure:

11 A selection structure allows the program to make a choice between two alternate paths, whether it is true or false. The first statement of a selection structure is a conditional statement. Once the sequence of steps in the selected path has been carried out, the paths are rejoined and then the next instruction is carried out. Thus, the selection structure has only a single entry and single exit. Diagrammatic Representation: Flow Chart Pseudo code No Is Yes IF Condi tion (Condition is True) THEN true? List of Actions ELSE List of Different Actions Action 2 Action 1 ENDIF..

12 Example: Start Read A, B No Is A>B? Yes Display B Display A Stop iii. Repetition Control Structure: Repetition or loop pattern causes an interruption in the normal sequence of processing. It directs the system to loop back to a previous statement in the program, repeating the same sequence over and again, usually with new data. When a sequence of statements is repeated against a condition, it is said to be in a loop. The looping process can either be one time or multiple times until the desired output is obtained within a single program.

13 Diagrammatic Representation: Flow Chart Repeated Task Con diti on true Pseudo code REPEAT Sequence 1 Sequence 2. False. Sequence N UNTIL condition is false Example: Start Count = 0 Count=count+1 Display count Is count<1 0 Yes Stop

14 Characteristics of Good program: Every computer requires appropriated instruction set to perform the required task. The quality of the processing depends upon the given instructions. Hence, proper and correct instructions should be provided to the computer so that it provides the correct output. Important characteristics of a good program are: Portability Readability Efficiency Structural Flexibility Generality Documentation OFFICE AUTOMATION: Definition: Office Automation refers to the use of integrated computers and communication system to support administrative procedures in an office environment. Commonly used office automations software are: 1. MS-WORD 2. MS-EXCEL 3. MS-ACCESS 4. MS-POWERPOINT

15 Application Software Packages: Application software is a set of programs that used to perform some specific task, such as word processing, drawing figures, maintaining data base etc. 1. Word Processing Programs : Word Processing software allows our computer to be used like an advanced typewriter. We can type and print any letter or report, and then easily change words or move blocks of text around. Example: MS-WORD, Star Writer 2. Spreadsheet Programs : A spreadsheet is made up of cells which can number in thousands and arranged in a grid. Mostly spreadsheet programs also include charting features with tools that allow you to plot the values stored in rows and columns as a graph or chart. Example: MS-EXCEL. 3. Database Programs: Database programs are useful for storing, sorting and retrieving data. Database software lets us enter new data, search through the data. Example: Oracle, MS-ACCESS

16 4. Graphics Programs The graphics programs allow us to sketch any objects. It can be used for scientific drawing. 5. Personal Assistance Package: Personal Assistance package is to use personal computers for storing and retrieving their personal information. It is commonly used to support business people to know the current states of the company. WORD PROCESSOR Word processor is used to produce documents for business or personal use such as newsletter, reports, letters and essays. Features of Word Processor: 1. Fast 2. Editing Features 3. Permanent Storage 4. Formatting features 5. Graphics 6. Object Linking & Embedding (OLE) 7. Spell Check 8. Tables 9. Revise without retyping 10. Mail merge

17 Introduction to MS-WORD: Ms-Word is a Word Processing Program that lets us to create documents such as Letters, Reports, Manuals and Newsletters. Word provides many features that make it easy for creating professional looking documents. The various options provided by Ms-Word are given below: 1. Entering & Editing Text 2. Viewing Documents 3. Formatting Text 4. Formatting Documents 5. Tables 6. Graphics 7. Mail Merge & Labelling 8. Printing Working with Documents The various operations are: 1. Entering Text into the Document 2. Saving a Document 3. Previewing a Document 4. Opening a Document 5. Closing a Document Moving & Copying Text Moving the text is the process of cutting the text from one place and pasting it in the desired location. Copying the text is the process of making the duplication of the existing text in the document. Finding & Replacing Text

18 Finding is the process of locating or searching the required text in the document. Replacing is the process of locating the required text and replaces the located text with specified text. Formatting Documents: Formatting documents means changing the appearance of the document by choosing the difference font types, sizes, colours, alignments etc. Applying Superscript and subscript formats: The superscript format places text slightly above a line of normal printed text. The subscript format places text slightly below a line of normal printed text. We can apply superscript and subscript formats to the selected text, by clicking superscript and subscript check boxes in the effect frames of the font dialog box. Changing the case: The case of a text can be changed by first selecting the text which we want to change, then choosing change case option on the format menu. Changing line spacing: For better presentation of the document, we can give space between the lines in a document. To set line space, we can type the key combinations or choose Paragraph option from the format menu. A Paragraph dialog box is displayed. From that choose Line space drop down list, in which there are six line space formats are available. Choose required one and click ok. Headers & Footers:

19 Headers & Footers allow text, page numbers or section titles, to appear on every page of a document above or below the text area. Headers appear at the top of each page. Footers appear at the bottom of each page. Bullets & Numbering : We can automatically add numbers or bullets to the selected text, by using bullets and numbering option from the format menu, or by clicking the bullets and numbering buttons on the formatting tool bar. Inserting Symbols: We can easily insert special symbols in the document using either the Autocorrect feature or the Symbol option from the Insert Menu. Adding page numbers: We can insert page numbers by using insert-> page numbers options from the menu bar. SPREADSHEET An electronic spreadsheet or spreadsheet is a table of rows and columns into which data is entered. It makes it possible to enter data into a task format, manipulate, stores, print, and create reports and graphics using them. Features of Spreadsheet: 1. Several mathematical, financial and statistical functions are built-in. All complicated calculations can be performed very easily using these functions, facilitating rapid operation. 2. The results of a calculation can be accurate. 3. The worksheet can be quite big in size and any part of it can be viewed or edited.

20 4. Data can also be viewed in the form of graphs. 5. The information entered in a worksheet can be sorted in desired format. 6. We can easily produce reports using the spreadsheet. Introduction to MS-EXCEL Microsoft Excel is the most widely used and versatile spreadsheet package and lets us to organize our data into lists and then summarizes, compare and present our data graphically. Excel allows us 1. to enter and edit data in a worksheet 2. to use functions and formulas to calculate and analyze data 3. to create colorful charts and graphs 4. to save time by combining a series of commands into a single command by using Macros Parts of a Spreadsheet: Columns: Columns are vertical lines of cells. They are named from A to Z afterwards AA to AZ and so on. There are 256 columns in a spreadsheet. Rows: Rows are horizontal lines of cells. A number identifies each row. There are rows. Cells: A cell is a point where the row and the column intersect. The width of cell space can be altered to suit the application. Cell Pointer: It is a highlighted cell boundary that specifies which cell is active at the moment. Working with worksheets: 1. Saving the worksheet 2. Closing the worksheet 3. Editing data in cells 4. Formatting text with Bold, italic and underline

21 5. Adding lines and colours 6. Inserting rows and columns 7. Adding headers and footers in the worksheet 8. Displaying page breaks in a worksheet 9. Working with multiple worksheets 10.Inserting & deleting worksheets 11.Renaming the worksheets 12.Hiding & displaying worksheets 13.Entering formulae in cells

FUNDAMENTALS OF COMPUTING & COMPUTER PROGRAMMING UNIT III. 2 Marks PROBLEM SOLVING AND OFFICE AUTOMATION

FUNDAMENTALS OF COMPUTING & COMPUTER PROGRAMMING UNIT III. 2 Marks PROBLEM SOLVING AND OFFICE AUTOMATION FUNDAMENTALS OF COMPUTING & COMPUTER PROGRAMMING UNIT III 2 Marks PROBLEM SOLVING AND OFFICE AUTOMATION Planning the Computer Program Purpose Algorithm Flow Charts Pseudocode -Application Software Packages-

More information

UNIT-3 PROBLEM SOLVING AND OFFICE AUTOMATION

UNIT-3 PROBLEM SOLVING AND OFFICE AUTOMATION UNIT-3 PROBLEM SOLVING AND OFFICE AUTOMATION 1. PLANNING THE COMPUTER To solve a problem using computer, three phases are necessary. They are i. Identifying the purpose i. Identifying the purpose ii. Developing

More information

Table of Contents. Word. Using the mouse wheel 39 Moving the insertion point using the keyboard 40 Resume reading 41

Table of Contents. Word. Using the mouse wheel 39 Moving the insertion point using the keyboard 40 Resume reading 41 Table of Contents iii Table of Contents Word Starting Word What is word processing? 2 Starting Word 2 Exploring the Start screen 4 Creating a blank document 4 Exploring the Word document window 5 Exploring

More information

B.V. Patel Institute of Business Management, Computer & Information Technology, Uka Tarsadia University : Advanced Applications of MS-Office

B.V. Patel Institute of Business Management, Computer & Information Technology, Uka Tarsadia University : Advanced Applications of MS-Office Unit-1 MS-WORD Answer the following. (1 mark) 1. Which submenu contains the watermark option? 2. Which is used for the Cell merge in the table? 3. Which option creates a large capital letter at the beginning

More information

CHRIST THE KING BOYS MATRIC HR. SEC. SCHOOL, KUMBAKONAM CHAPTER 2 TEXT FORMATTING

CHRIST THE KING BOYS MATRIC HR. SEC. SCHOOL, KUMBAKONAM CHAPTER 2 TEXT FORMATTING CHAPTER 2 TEXT FORMATTING 1. Explain how to create a Bulleted and Numbered List in Star Office Writer? One way to create a list of points or topics in a document is to create a bulleted list. A bullet

More information

Chapter 1 INTRODUCTION TO COMPUTER AND PROGRAMMING

Chapter 1 INTRODUCTION TO COMPUTER AND PROGRAMMING Chapter 1 INTRODUCTION TO COMPUTER AND PROGRAMMING Computer programming BTI 10202 Compiled by SIA CHEE KIONG DEPARTMENT OF MATERIAL AND DESIGN ENGINEERING FACULTY OF MECHANICAL AND MANUFACTURING ENGINEERING

More information

Microsoft Office. Microsoft Office

Microsoft Office. Microsoft Office is an office suite of interrelated desktop applications, servers and services for the Microsoft Windows. It is a horizontal market software that is used in a wide range of industries. was introduced by

More information

12 BASICS OF MS-EXCEL

12 BASICS OF MS-EXCEL 12 BASICS OF MS-EXCEL 12.1 INTRODUCTION MS-Excel 2000 is a Windows based application package. It is quite useful in entering, editing, analysis and storing of data. Arithmetic operations with numerical

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

3. What is the smallest and largest font size available in Font Size tool on formatting toolbar? A. 8 and 72 B. 8 and 68 C. 6 and 72 D.

3. What is the smallest and largest font size available in Font Size tool on formatting toolbar? A. 8 and 72 B. 8 and 68 C. 6 and 72 D. 1. The minimum number of rows and columns in MS Word document is A. 1 and 1 B. 2 and 1 C. 1 and 2 D. 2 and 2 2. How many columns can you insert in a word document in maximum? A. 40 B. 45 C. 50 D. 55 3.

More information

Microsoft Word Important Notice

Microsoft Word Important Notice Microsoft Word 2013 Important Notice All candidates who follow an ICDL/ECDL course must have an official ICDL/ECDL Registration Number (which is proof of your Profile Number with ICDL/ECDL and will track

More information

Productivity Tools Objectives 1

Productivity Tools Objectives 1 Productivity Tools Objectives 1 Word 2003 Understand Microsoft Office Word 2003 Launch Microsoft Office Word 2003 Open Documents Understand The Working Screen Experiment With The Working Screen Navigate

More information

Creating a Spreadsheet by Using Excel

Creating a Spreadsheet by Using Excel The Excel window...40 Viewing worksheets...41 Entering data...41 Change the cell data format...42 Select cells...42 Move or copy cells...43 Delete or clear cells...43 Enter a series...44 Find or replace

More information

FLOW CHART AND PSEUDO CODE

FLOW CHART AND PSEUDO CODE FLOW CHART AND PSEUDO CODE Flowchart A Flowchart is a pictorial representation of an algorithm. The First flowchart is made by John Von Newman in 1945. It is a symbolic diagram of operation sequence, dataflow,

More information

Table of Contents. Chapter 1

Table of Contents. Chapter 1 Table of Contents iii Table of Contents Chapter 1 Starting Excel Using an electronic spreadsheet 2 Starting Excel 2 Exploring the Start screen 4 Creating a blank workbook 4 Exploring the Excel window 5

More information

Skills Exam Objective Objective Number

Skills Exam Objective Objective Number Overview 1 LESSON SKILL MATRIX Skills Exam Objective Objective Number Starting Excel Create a workbook. 1.1.1 Working in the Excel Window Customize the Quick Access Toolbar. 1.4.3 Changing Workbook and

More information

Create a new document based on default template, other available template like: memo, fax, agenda.

Create a new document based on default template, other available template like: memo, fax, agenda. Word Processing 3 Objectives: Working with Documents Enhancing Productivity Using the Application Open, close a word processing application. Open, close documents. Create a new document based on default

More information

Spreadsheets Microsoft Office Button Ribbon

Spreadsheets Microsoft Office Button Ribbon Getting started with Excel 2007 you will notice that there are many similar features to previous versions. You will also notice that there are many new features that you ll be able to utilize. There are

More information

EXCEL 2003 DISCLAIMER:

EXCEL 2003 DISCLAIMER: EXCEL 2003 DISCLAIMER: This reference guide is meant for experienced Microsoft Excel users. It provides a list of quick tips and shortcuts for familiar features. This guide does NOT replace training or

More information

Microsoft Excel Important Notice

Microsoft Excel Important Notice Microsoft Excel 2013 Important Notice All candidates who follow an ICDL/ECDL course must have an official ICDL/ECDL Registration Number (which is proof of your Profile Number with ICDL/ECDL and will track

More information

Day : Date : Objects : Open MS Excel program * Open Excel application. Select : start. Choose: programs. Choose : Microsoft Office.

Day : Date : Objects : Open MS Excel program * Open Excel application. Select : start. Choose: programs. Choose : Microsoft Office. Day : Date : Objects : Open MS Excel program * Open Excel application. Select : start Choose: programs Choose : Microsoft Office Select: Excel *The interface of Excel program - Menu bar. - Standard bar.

More information

Unit-II Programming and Problem Solving (BE1/4 CSE-2)

Unit-II Programming and Problem Solving (BE1/4 CSE-2) Unit-II Programming and Problem Solving (BE1/4 CSE-2) Problem Solving: Algorithm: It is a part of the plan for the computer program. An algorithm is an effective procedure for solving a problem in a finite

More information

COIMBATORE EDUCATIONAL DISTRICT

COIMBATORE EDUCATIONAL DISTRICT COIMBATORE EDUCATIONAL DISTRICT REVISION EXAMINATION JANUARY 2015 STD-12 COMPUTER SCIENCE ANSEWR KEY PART-I Choose the Correct Answer QNo Answer QNo Answer 1 B Absolute Cell Addressing 39 C Void 2 D

More information

Microsoft Excel 2010 Level 1

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

More information

Fall 2016 Exam Review 3 Module Test

Fall 2016 Exam Review 3 Module Test 1. What is the block of text at the bottom of the page called? Header Footer Document Area Ribbon 2. Which word processing tool can help you find synonyms to improve your word choice? Spelling and Grammar

More information

STAR OFFICE CALC. Lesson 6

STAR OFFICE CALC. Lesson 6 Lesson 6 STAR OFFICE CALC 1. command is used to insert special characters? a. Insert Characters b. Special characters Insert c. Insert Special characters d. None of these 2. icon is used to present the

More information

Productivity Tools Objectives

Productivity Tools Objectives Word 2003 Understand Microsoft Office Word 2003 Launch Microsoft Office Word 2003 Open Documents Understand The Working Screen Experiment With The Working Screen Navigate Documents Close Documents And

More information

Microsoft Excel 2016 Level 1

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

More information

Microsoft Word 2007 on Windows

Microsoft Word 2007 on Windows 1 Microsoft Word 2007 on Windows Word is a very popular text formatting and editing program. It is the standard for writing papers and other documents. This tutorial and quick start guide will help you

More information

Excel. Tutorial 1 Getting Started with Excel. Tutorial 2 Formatting a Workbook. Tutorial 3 Working with Formulas and Functions COMPREHENSIVE

Excel. Tutorial 1 Getting Started with Excel. Tutorial 2 Formatting a Workbook. Tutorial 3 Working with Formulas and Functions COMPREHENSIVE Excel Tutorial 1 Getting Started with Excel Tutorial 2 Formatting a Workbook Tutorial 3 Working with Formulas and Functions COMPREHENSIVE Excel Tutorial 1 Getting Started with Excel COMPREHENSIVE Objectives

More information

Exploring Microsoft Office Excel 2007

Exploring Microsoft Office Excel 2007 Exploring Microsoft Office Excel 2007 Chapter 1: Introduction to Excel What Can I Do with a Spreadsheet Objectives Define worksheets and workbooks Use spreadsheets across disciplines Plan for good workbook

More information

Introduction to MS Office Somy Kuriakose Principal Scientist, FRAD, CMFRI

Introduction to MS Office Somy Kuriakose Principal Scientist, FRAD, CMFRI Introduction to MS Office Somy Kuriakose Principal Scientist, FRAD, CMFRI Email: somycmfri@gmail.com 29 Word, Excel and Power Point Microsoft Office is a productivity suite which integrates office tools

More information

Unit II. (i) Computer Programming Languages

Unit II. (i) Computer Programming Languages Unit II. (i) Computer Programming Languages Need of a computer programming language: A programming language is an artificial language designed to communicate instructions to a computer. Thousands of different

More information

HIGHER SECONDARY COMPUTER SCIENCE

HIGHER SECONDARY COMPUTER SCIENCE PUGAL PRESENTS HIGHER SECONDARY COMPUTER SCIENCE 2 MARK & 5 MARK IMPORTANT QUESTIONS PREPARED BY P.CHANDRASEKARAN. M.C.A., B.ED ERODE(DT) FOR ¼ : 95781 90256. XII COMPUTER SCIENCE Star Office 2 MARK QUESTIONS:

More information

Basic Excel 2010 Workshop 101

Basic Excel 2010 Workshop 101 Basic Excel 2010 Workshop 101 Class Workbook Instructors: David Newbold Jennifer Tran Katie Spencer UCSD Libraries Educational Services 06/13/11 Why Use Excel? 1. It is the most effective and efficient

More information

Microsoft Excel 2016 / 2013 Basic & Intermediate

Microsoft Excel 2016 / 2013 Basic & Intermediate Microsoft Excel 2016 / 2013 Basic & Intermediate Duration: 2 Days Introduction Basic Level This course covers the very basics of the Excel spreadsheet. It is suitable for complete beginners without prior

More information

Word Select New in the left pane. 3. Select Blank document in the Available Templates pane. 4. Click the Create button.

Word Select New in the left pane. 3. Select Blank document in the Available Templates pane. 4. Click the Create button. Microsoft QUICK Word 2010 Source Getting Started The Word Window u v w x z Opening a Document 2. Select Open in the left pane. 3. In the Open dialog box, locate and select the file you want to open. 4.

More information

A new workbook contains 256 worksheets. The worksheet is a grid of COLUMNS and ROWS. The intersection of a column and a row is called a CELL.

A new workbook contains 256 worksheets. The worksheet is a grid of COLUMNS and ROWS. The intersection of a column and a row is called a CELL. MICROSOFT EXCEL INTRODUCTION Microsoft Excel is allow you to create professional spreadsheets and charts. It is quite useful in entering, editing, analysis and storing of data. It performs numerous functions

More information

Quick Reference Card Business Objects Toolbar Design Mode

Quick Reference Card Business Objects Toolbar Design Mode Icon Description Open in a new window Pin/Unpin this tab Close this tab File Toolbar New create a new document Open Open a document Select a Folder Select a Document Select Open Save Click the button to

More information

Microsoft Excel 2010

Microsoft Excel 2010 Microsoft Excel 2010 omar 2013-2014 First Semester 1. Exploring and Setting Up Your Excel Environment Microsoft Excel 2010 2013-2014 The Ribbon contains multiple tabs, each with several groups of commands.

More information

Application of Skills: Microsoft Excel 2013 Tutorial

Application of Skills: Microsoft Excel 2013 Tutorial Application of Skills: Microsoft Excel 2013 Tutorial Throughout this module, you will progress through a series of steps to create a spreadsheet for sales of a club or organization. You will continue to

More information

S ignature WORD. Nita Rutkosky MICROSOFT. Pierce College at Puyallup Puyallup, Washington

S ignature WORD. Nita Rutkosky MICROSOFT. Pierce College at Puyallup Puyallup, Washington S ignature S E R I E S MICROSOFT WORD 2002 Nita Rutkosky Pierce College at Puyallup Puyallup, Washington Introduction About Microsoft Office Specialist Certification Getting Started Identifying Computer

More information

In so many ways summary

In so many ways summary In so many ways summary Many of Word s functions can be activated in a variety of different ways. Often you can use the menu, a tool on the toolbar or a shortcut key to achieve the same result. Rather

More information

Basics of Spreadsheet

Basics of Spreadsheet 106 :: Data Entry Operations 6 Basics of Spreadsheet 6.1 INTRODUCTION A spreadsheet is a large sheet having data and information arranged in rows and columns. As you know, Excel is one of the most widely

More information

Excel Select a template category in the Office.com Templates section. 5. Click the Download button.

Excel Select a template category in the Office.com Templates section. 5. Click the Download button. Microsoft QUICK Excel 2010 Source Getting Started The Excel Window u v w z Creating a New Blank Workbook 2. Select New in the left pane. 3. Select the Blank workbook template in the Available Templates

More information

1 THE PNP BASIC COMPUTER ESSENTIALS e-learning (MS Powerpoint 2007)

1 THE PNP BASIC COMPUTER ESSENTIALS e-learning (MS Powerpoint 2007) 1 THE PNP BASIC COMPUTER ESSENTIALS e-learning (MS Powerpoint 2007) 2 THE PNP BASIC COMPUTER ESSENTIALS e-learning (MS Powerpoint 2007) TABLE OF CONTENTS CHAPTER 1: GETTING STARTED... 4 MICROSOFT OFFICE

More information

Practical File Answer key Class X (402)

Practical File Answer key Class X (402) Practical File Answer key Class X (402) 1) Create a Word Document and write all the steps to do following instructions. a) (i) Click on Indent Option of Paragraph group of Layout Tab. (ii) Set Left to

More information

11.1 Create Speaker Notes Print a Presentation Package a Presentation PowerPoint Tips... 44

11.1 Create Speaker Notes Print a Presentation Package a Presentation PowerPoint Tips... 44 Contents 1 Getting Started... 1 1.1 Presentations... 1 1.2 Microsoft Office Button... 1 1.3 Ribbon... 2 1.4 Mini Toolbar... 2 1.5 Navigation... 3 1.6 Slide Views... 4 2 Customize PowerPoint... 5 2.1 Popular...

More information

Table of Contents. Preface... iii COMPUTER BASICS WINDOWS XP

Table of Contents. Preface... iii COMPUTER BASICS WINDOWS XP Table of Contents Preface... iii COMPUTER BASICS Fundamentals of Computer 1 Various Types of Computers 2 Personal Computer 2 Personal Digital Assistant 3 Laptop Computer 3 Tablet PC 3 Main Frame Computer

More information

Advanced Excel. Click Computer if required, then click Browse.

Advanced Excel. Click Computer if required, then click Browse. Advanced Excel 1. Using the Application 1.1. Working with spreadsheets 1.1.1 Open a spreadsheet application. Click the Start button. Select All Programs. Click Microsoft Excel 2013. 1.1.1 Close a spreadsheet

More information

WAYNESBORO AREA SCHOOL DISTRICT COMPUTER APPLICATIONS

WAYNESBORO AREA SCHOOL DISTRICT COMPUTER APPLICATIONS UNIT: Publisher KEY LEARNING(S): Introduction to Microsoft Publisher and Publisher jumpstart UNIT ESSENTIAL QUESTIONS: How can you use Publisher to enhance your education/career? COMPETENCY: Publisher

More information

Portage Northern High School Computer Applications * Microsoft Office 2010 Course Syllabus Mrs. Meyer

Portage Northern High School Computer Applications * Microsoft Office 2010 Course Syllabus Mrs. Meyer Portage Northern High School Computer Applications * Microsoft Office 2010 Course Syllabus Mrs. Meyer www.mrsmeyersmap.weebly.com Course Description This course is recommended for ALL high school students!

More information

Word processing software

Word processing software Unit 351 Word processing software UAN: Level: 3 Credit value: 6 GLH: 45 Y/502/4629 Assessment type: Portfolio of Evidence or assignment (7574 ITQ Users) Relationship to NOS: Assessment requirements specified

More information

EDITOR GUIDE. Button Functions:...2 Inserting Text...4 Inserting Pictures...4 Inserting Tables...8 Inserting Styles...9

EDITOR GUIDE. Button Functions:...2 Inserting Text...4 Inserting Pictures...4 Inserting Tables...8 Inserting Styles...9 EDITOR GUIDE Button Functions:...2 Inserting Text...4 Inserting Pictures...4 Inserting Tables...8 Inserting Styles...9 1 Button Functions: Button Function Display the page content as HTML. Save Preview

More information

Making EXCEL Work for YOU!

Making EXCEL Work for YOU! Tracking and analyzing numerical data is a large component of the daily activity in today s workplace. Microsoft Excel 2003 is a popular choice among individuals and companies for organizing, analyzing,

More information

Getting Started. Custom Reports Software

Getting Started. Custom Reports Software Getting Started Custom Reports Software Custom Reports software Custom reporting The Custom Reports software lets you transfer quantitative results from Data Analysis into the Custom Reports spreadsheet

More information

Excel Tutorial 1

Excel Tutorial 1 IT٢.we Excel 2003 - Tutorial 1 Spreadsheet Basics Screen Layout Title bar Menu bar Standard Toolbar Other Tools Task Pane Adding and Renaming Worksheets Modifying Worksheets Moving Through Cells Adding

More information

STUDENT NAME ECDL: EXCEL MR BENNELL. This is an example of how to use this checklist / evidence document

STUDENT NAME ECDL: EXCEL MR BENNELL. This is an example of how to use this checklist / evidence document This part contains an instruction, task or a skill which you need to sow evidence of being able to do Once you have completed a task and shown evidence of it write the date underneath the task instruction

More information

Word Tutorial 3. Creating a Multiple- Page Report COMPREHENSIVE

Word Tutorial 3. Creating a Multiple- Page Report COMPREHENSIVE Word Tutorial 3 Creating a Multiple- Page Report COMPREHENSIVE Objectives Format headings with Quick Styles Insert a manual page break Create and edit a table Sort rows in a table Modify a table s structure

More information

STD: XII VOLUME - I MARKS: 150

STD: XII VOLUME - I MARKS: 150 STD: XII VOLUME - I MARKS: 150 SUB: COMPUTER SCIENCE TIME: 3 HRS I. Choose the correct answer: 75 X 1 = 75 1. Which key is used to copy the selected text in the document? a) Ctrl + X b) Ctrl + V c) Ctrl

More information

Open Office Calc (Spreadsheet) Tutorial

Open Office Calc (Spreadsheet) Tutorial Open Office Calc (Spreadsheet) Tutorial Table of Contents Introduction...3 What is a Spreadsheet?...3 Starting OpenOffice Calc...3 OpenOffice Calc (Spreadsheet) Basics...4 Creating a New Document...5 Entering

More information

SUMMARIES OF INTERACTIVE MULTIMEDIA

SUMMARIES OF INTERACTIVE MULTIMEDIA SUMMARIES OF INTERACTIVE MULTIMEDIA GRADE 10 SOLUTIONS DEVELOPMENT 1. Producing a Good Document This lesson is about the basics of word processing. In it you will learn how to use the ribbon in a word

More information

Microsoft How to Series

Microsoft How to Series Microsoft How to Series Getting Started with EXCEL 2007 A B C D E F Tabs Introduction to the Excel 2007 Interface The Excel 2007 Interface is comprised of several elements, with four main parts: Office

More information

Microsoft Office Excel 2013 Courses 24 Hours

Microsoft Office Excel 2013 Courses 24 Hours Microsoft Office Excel 2013 Courses 24 Hours COURSE OUTLINES FOUNDATION LEVEL COURSE OUTLINE Getting Started With Excel 2013 Starting Excel 2013 Selecting the Blank Worksheet Template The Excel 2013 Cell

More information

CATEGORY SKILL SET REF. TASK ITEM. 1.1 Working with Spreadsheets Open, close a spreadsheet application. Open, close spreadsheets.

CATEGORY SKILL SET REF. TASK ITEM. 1.1 Working with Spreadsheets Open, close a spreadsheet application. Open, close spreadsheets. ECDL / ICDL Spreadsheets This module sets out essential concepts and skills relating to understanding the concept of spreadsheets and demonstrating an ability to use a spreadsheet to produce accurate work

More information

Formatting Spreadsheets in Microsoft Excel

Formatting Spreadsheets in Microsoft Excel Formatting Spreadsheets in Microsoft Excel This document provides information regarding the formatting options available in Microsoft Excel 2010. Overview of Excel Microsoft Excel 2010 is a powerful tool

More information

To create, upload, share, or view shared files through Google Apps, go to Documents in the black bar above.

To create, upload, share, or view shared files through Google Apps, go to Documents in the black bar above. To create, upload, share, or view shared files through Google Apps, go to Documents in the black bar above. This will open another tab in your browser. Here you will see all files you own or that are shared

More information

Computer Applications Final Exam Study Guide

Computer Applications Final Exam Study Guide Name: Computer Applications Final Exam Study Guide Microsoft Word 1. To use -and-, position the pointer on top of the selected text, and then drag the selected text to the new location. 2. The Clipboard

More information

Contents SECTION-I : LINUX

Contents SECTION-I : LINUX Contents SECTION-I : LINUX 1. Introduction to Linux... 13 What is Linux?... 14 History of Linux... 14 Advantages of Using Linux... 15 Why Red Hat?... 1 6 Hardware Requirements... 16 Installing Fedora Core

More information

Microsoft Excel 2007

Microsoft Excel 2007 Learning computers is Show ezy Microsoft Excel 2007 301 Excel screen, toolbars, views, sheets, and uses for Excel 2005-8 Steve Slisar 2005-8 COPYRIGHT: The copyright for this publication is owned by Steve

More information

Lecture- 5. Introduction to Microsoft Excel

Lecture- 5. Introduction to Microsoft Excel Lecture- 5 Introduction to Microsoft Excel The Microsoft Excel Window Microsoft Excel is an electronic spreadsheet. You can use it to organize your data into rows and columns. You can also use it to perform

More information

Ms excel. The Microsoft Office Button. The Quick Access Toolbar

Ms excel. The Microsoft Office Button. The Quick Access Toolbar Ms excel MS Excel is electronic spreadsheet software. In This software we can do any type of Calculation & inserting any table, data and making chart and graphs etc. the File of excel is called workbook.

More information

Getting Started With Excel

Getting Started With Excel Chapter 1 Getting Started With Excel This chapter will familiarize you with various basic features of Excel. Specific features which you need to solve a problem will be introduced as the need arises. When

More information

Microsoft Excel 2002 M O D U L E 2

Microsoft Excel 2002 M O D U L E 2 THE COMPLETE Excel 2002 M O D U L E 2 CompleteVISUAL TM Step-by-step Series Computer Training Manual www.computertrainingmanual.com Copyright Notice Copyright 2002 EBook Publishing. All rights reserved.

More information

In this section you will learn some simple data entry, editing, formatting techniques and some simple formulae. Contents

In this section you will learn some simple data entry, editing, formatting techniques and some simple formulae. Contents In this section you will learn some simple data entry, editing, formatting techniques and some simple formulae. Contents Section Topic Sub-topic Pages Section 2 Spreadsheets Layout and Design S2: 2 3 Formulae

More information

Using Microsoft Word. Table of Contents

Using Microsoft Word. Table of Contents Using Microsoft Word Table of Contents The Word Screen... 2 Document View Buttons... 2 Selecting Text... 3 Using the Arrow Keys... 3 Using the Mouse... 3 Line Spacing... 4 Paragraph Alignment... 4 Show/Hide

More information

DOING MORE WITH WORD: MICROSOFT OFFICE 2007

DOING MORE WITH WORD: MICROSOFT OFFICE 2007 DOING MORE WITH WORD: MICROSOFT OFFICE 2007 GETTING STARTED PAGE 02 Prerequisites What You Will Learn USING MICROSOFT WORD PAGE 03 Viewing Toolbars Adding and Removing Buttons MORE TASKS IN MICROSOFT WORD

More information

SUM - This says to add together cells F28 through F35. Notice that it will show your result is

SUM - This says to add together cells F28 through F35. Notice that it will show your result is COUNTA - The COUNTA function will examine a set of cells and tell you how many cells are not empty. In this example, Excel analyzed 19 cells and found that only 18 were not empty. COUNTBLANK - The COUNTBLANK

More information

Microsoft Word Tutorial

Microsoft Word Tutorial Microsoft Word Tutorial 1 GETTING STARTED 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, brochures,

More information

Study Guide. PCIC 3 B2 GS3- Key Applications-Excel. Copyright 2010 Teknimedia Corporation

Study Guide. PCIC 3 B2 GS3- Key Applications-Excel. Copyright 2010 Teknimedia Corporation Study Guide PCIC 3 B2 GS3- Key Applications-Excel Copyright 2010 Teknimedia Corporation Teknimedia grants permission to any licensed owner of PCIC 3 B GS3 Key Applications-Excel to duplicate the contents

More information

Learning Map Excel 2007

Learning Map Excel 2007 Learning Map Excel 2007 Our comprehensive online Excel tutorials are organized in such a way that it makes it easy to obtain guidance on specific Excel features while you are working in Excel. This structure

More information

EXCEL 2007 TIP SHEET. Dialog Box Launcher these allow you to access additional features associated with a specific Group of buttons within a Ribbon.

EXCEL 2007 TIP SHEET. Dialog Box Launcher these allow you to access additional features associated with a specific Group of buttons within a Ribbon. EXCEL 2007 TIP SHEET GLOSSARY AutoSum a function in Excel that adds the contents of a specified range of Cells; the AutoSum button appears on the Home ribbon as a. Dialog Box Launcher these allow you to

More information

Personal Computing EN1301

Personal Computing EN1301 Personal Computing EN1301 (12 hrs.) Instructional Objectives Explain word processing Distinguish different word processing applications Discover the different features of a word processing application

More information

Creating & Using Tables

Creating & Using Tables Creating & Using Tables in Microsoft Word 2000 Created by and for: Internet and Technology Training Services Office of Information Technology What is a Table? A table is a structure that is divided into

More information

ALLAMA IQBAL OPEN UNIVERSITY ISLAMABAD (Department of Business Administration) COMPUTER APPLICATIONS FOR BUSINESS (184) CHECK LIST

ALLAMA IQBAL OPEN UNIVERSITY ISLAMABAD (Department of Business Administration) COMPUTER APPLICATIONS FOR BUSINESS (184) CHECK LIST Final on 13-3-2014 ALLAMA IQBAL OPEN UNIVERSITY ISLAMABAD (Department of Business Administration) COMPUTER APPLICATIONS FOR BUSINESS (184) CHECK LIST SEMESTER: SPRING 2014 This packet comprises following

More information

Glossary Unit 1: Hardware and Software

Glossary Unit 1: Hardware and Software Glossary Unit 1: Hardware and Software 1. 2. Application software computer software created to allow the user to perform specific a job or task Examples: Word processing, Spreadsheets, Database, and Graphics

More information

Quick Reference Summary

Quick Reference Summary Microsoft Excel 2010 Quick Reference Summary Microsoft Excel 2010 Quick Reference Summary 3-D Chart, Rotate EX 462 3-D Rotation button (Chart Tools Layout tab Background, change rotation (Format Chart

More information

download instant at

download instant at CHAPTER 1 - LAB SESSION INTRODUCTION TO EXCEL INTRODUCTION: This lab session is designed to introduce you to the statistical aspects of Microsoft Excel. During this session you will learn how to enter

More information

EXCEL BASICS: MICROSOFT OFFICE 2010

EXCEL BASICS: MICROSOFT OFFICE 2010 EXCEL BASICS: MICROSOFT OFFICE 2010 GETTING STARTED PAGE 02 Prerequisites What You Will Learn USING MICROSOFT EXCEL PAGE 03 Opening Microsoft Excel Microsoft Excel Features Keyboard Review Pointer Shapes

More information

Course Title: PC Packages Credit Units: 02 Course Level: UG Course Code: CSIT115. Course Objectives: Pre-requisites: NIL. Course Contents/Syllabus:

Course Title: PC Packages Credit Units: 02 Course Level: UG Course Code: CSIT115. Course Objectives: Pre-requisites: NIL. Course Contents/Syllabus: Course Title: PC Packages Credit Units: 02 Course Level: UG Course Code: CSIT115 L T P/S SW/FW TOTAL CREDIT 1-2 - 02 Course Objectives: The aim of this course is : To Operate on various applications such

More information

TABLE OF CONTENTS. i Excel 2016 Basic

TABLE OF CONTENTS. i Excel 2016 Basic i TABLE OF CONTENTS TABLE OF CONTENTS I PREFACE VII 1 INTRODUCING EXCEL 1 1.1 Starting Excel 1 Starting Excel using the Start button in Windows 1 1.2 Screen components 2 Tooltips 3 Title bar 4 Window buttons

More information

Excel 2010 Level 1: The Excel Environment

Excel 2010 Level 1: The Excel Environment Excel 2010 Level 1: The Excel Environment Table of Contents The Excel 2010 Environment... 1 The Excel Window... 1 File Tab... 1 The Quick Access Toolbar... 4 Access the Customize the Quick Access Toolbar

More information

Microsoft Word 2011 Tutorial

Microsoft Word 2011 Tutorial Microsoft Word 2011 Tutorial GETTING STARTED 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, brochures,

More information

SECTION - A ANSWER ALL THE QUESTIONS

SECTION - A ANSWER ALL THE QUESTIONS THIRU GVCHSS, ARCOT VOLUME I (1 TO 9) 12th Standard Computer Science Time : 03:00:00 Hrs Total Marks : 150 SECTION - A 75 x 1 = 75 ANSWER ALL THE QUESTIONS 1) 2) 3) 4) 5) 6) 7) 8) 9) The word to be used

More information

Master Degree Program Biomedical Engineering

Master Degree Program Biomedical Engineering Georgian Technical University Master Degree Program Biomedical Engineering Quiz- Basic Knowledge Test IT 1.MS OFFICE Is Application Software [A] True [B] False 2. Thesaurus tool in MS Word is used for...

More information

Office Applications II Lesson Objectives

Office Applications II Lesson Objectives Office Applications II Lesson Unit 1: MICROSOFT EXCEL SPREADSHEETS BASICS What is a Spreadsheet and What Are Its Uses? Define spreadsheets Define the Microsoft Excel application List business, consumer,

More information

Notes By: Shailesh Bdr. Pandey, TA, Computer Engineering Department, Nepal Engineering College

Notes By: Shailesh Bdr. Pandey, TA, Computer Engineering Department, Nepal Engineering College FLOWCHARTING The flowchart is a means of visually presenting the flow of data through an information processing systems, the operations performed within the system and the sequence in which they are performed.

More information

Computer, Software and Technology Skills

Computer, Software and Technology Skills Computer, Software and Technology s of Proficiency in Banner Use commands and menus to navigate between Banner forms Find, filter and select appropriate person/vendor records to perform look ups Generate

More information

For more tips on using this workbook, press F1 and click More information about this template.

For more tips on using this workbook, press F1 and click More information about this template. Excel: Menu to ribbon reference To view Office 2003 menu and toolbar commands and their Office 2010 equivalents, click a worksheet tab at the bottom of the window. If you don't see the tab you want, right-click

More information

EXCEL BASICS: MICROSOFT OFFICE 2007

EXCEL BASICS: MICROSOFT OFFICE 2007 EXCEL BASICS: MICROSOFT OFFICE 2007 GETTING STARTED PAGE 02 Prerequisites What You Will Learn USING MICROSOFT EXCEL PAGE 03 Opening Microsoft Excel Microsoft Excel Features Keyboard Review Pointer Shapes

More information