1. FIBONACCI SERIES. Write a C++ program to generate the Fibonacci for n terms. To write a C++ program to generate the Fibonacci for n terms.

Size: px
Start display at page:

Download "1. FIBONACCI SERIES. Write a C++ program to generate the Fibonacci for n terms. To write a C++ program to generate the Fibonacci for n terms."

Transcription

1 PROBLEM: 1. FIBONACCI SERIES Write a C++ program to generate the Fibonacci for n terms. AIM: To write a C++ program to generate the Fibonacci for n terms. PROGRAM CODING: #include<iostream.h> #include<conio.h> void main() int f1= -1,f2=1,f3; int i,n; cout<<"\n Enter the no of terms."; cin>>n; cout<<"\n Fibonacci series is "<< \n ; for(i=1;i<=n;i++) f3=f1+f2; cout<<f3<<'\n'; f1=f2; f2=f3; getch(); EXECUTION AND OUTPUT: Enter the no of terms.10 Fibonacci series is

2 PROBLEM: 2. FACTORIAL OF A NUMBER Write a C++ program using Function to find the factorial of a given number AIM: To write a C++ program using Function to find the factorial of a given number PROGRAM CODING: #include<iostream.h> #include<conio.h> unsigned long int fact(int n) int f=1; for(int i=1;i<=n;i++) f*= i; return (f); void main() int a; clrscr(); cout<<"\n Enter the value."; cin>>a; cout<<"\n Factorial of given number is..."<<fact(a); getch(); EXECUTION AND OUTPUT: Enter the value. 5 Factorial of given number is

3 PROBLEM: 3. NUMBER IN WORDS Write a C++ program by using Switch case structure to display the given number in words.( numbers between 1 to 9) AIM: To write a C++ program by using Switch case structure to display the given number in words.( numbers between 1 to 9) #include<iostream.h> #include<conio.h> void main() int n; clrscr(); cout<<"\n Enter the number "; cin>>n; switch(n) case 1:cout<<"\n ONE";break; case 2:cout<<"\n TWO";break; case 3:cout<<"\n THREE";break; case 4 :cout<<"\n FOUR";break; case 5 :cout<<"\n FIVE";break; case 6 :cout<<"\n SIX";break; case 7 :cout<<"\n SEVEN";break; case 8 :cout<<"\n EIGHT";break; case 9 :cout<<"\n NINE";break; default :cout<<"\n INVALID INPUT";break; getch(); EXECUTION AND OUTPUT: Enter the number 2 TWO Enter the number 11 INVALID INPUT

4 PROBLEM: 4. PALINDROME Write a C++ program to check whether the given string is PALINDROME or NOT. AIM: Write a C++ program to check whether the given string is PALINDROME or NOT. PROGRAM CODING: #include<iostream.h> (or) #include<conio.h> #include<string.h> #include<stdio.h> void main() char str[50],rstr[50]; clrscr( ); cout<< \n Enter the string. ; gets(str); strcpy(rstr, str); strrev(rstr); cout<<"\n Reversed string is "<<rstr; if(strcmp(str,rstr)==0) cout<<"\n Given string is a palindrome"; else cout<<"\n Given string is not a palindrome ; getch ( ); EXECUTION AND OUTPUT: Enter the string MADAM Reversed string is MADAM Given string is a palindrome Enter the string SURESH Reversed string is HSERUS Given string is not a palindrome

5 5. NUMBER OF ODD AND EVEN NUMBERS PROBLEM: Write a C++ program to find the number of Odd and Even numbers in a given array. AIM: To write a C++ program to find the number of Odd and Even numbers in a given array. PROGRAM CODING: #include<iostream.h> #include<conio.h> void main() int x[100],n,i,even=0,odd=0; clrscr(); cout<<"\n Enter the value of n "; cin>>n; cout<<"\n Enter the value one by one "<< \n ; for(i=0;i<n;i++) cin>>x[i]; if(x[i]%2==0) even++; else odd++; cout<<"\n No. of even no s "<<even; cout<<"\n No. of odd no s "<<odd; getch(); EXECUTION AND OUTPUT: Enter the value of n 5 Enter the value one by one No. of even no s 2 No. of odd no s 3

6 6. TRANSPOSE OF 3 x 3 MATRIX PROBLEM: Write a C++ program to Transpose a 3 x 3 matrix AIM: To write a C++ program to Transpose a 3 x 3 matrix. PROGRAM CODING: #include<iostream.h> #include<conio.h> void main() int mata[3][3]; int i,j; clrscr(); cout<<"\n Enter matrix in row wise..."<< \n ; for(i=0;i<3;i++) for(j=0;j<3;j++) cin>>mata[i][j]; cout<<"\n The given matrix is.. "<< \n ; for(i=0;i<3;i++) for(j=0;j<3;j++) cout<<mata[i][j]<<'\t'; cout<<'\n'; cout<<"\n Transpose matrix is.."<< \n ; for(i=0;i<3;i++) for(j=0;j<3;j++) cout<<mata[j][i]<<'\t'; cout<<'\n'; getch();

7 EXECUTION AND OUTPUT Enter matrix in row wise The given matrix is Transpose matrix is

8 7. ADDITION OF TWO MATRICES PROBLEM: Write a C++ program to add two 3 x 3 matrices AIM: To write a C++ program to add two 3 x 3 matrices. PROGRAM CODING: #include<iostream.h> #include<conio.h> void main() int mata[3][3],matb[3][3],matc[3][3]; int i,j; clrscr(); cout<<"\n Enter mata in row wise..\n "; for(i=0;i<3;i++) for(j=0;j<3;j++) cin>>mata[i][j]; cout<<"\n Enter matb in row wise..\n "; for(i=0;i<3;i++) for(j=0;j<3;j++) cin>>matb[i][j]; cout<<"\n Sum of matrix is.."<< \n ; for(i=0;i<3;i++) for(j=0;j<3;j++) matc[i][j]=mata[i][j]+matb[i][j]; for(i=0;i<3;i++) for(i=0;i<3;i++) cout<<matc[i][j]<<'\t';

9 cout<<'\n'; getch(); EXECUTION AND OUTPUT Enter mata in row wise Enter matb in row wise Sum of matrix is

10 8. PRIME NUMBER PROBLEM: Write a C++ program using Function to determine whether the given number is PRIME or NOT. AIM: To write a C++ program using Function to determine whether the given number is PRIME or NOT. PROGRAM CODING: #include<iostream.h> #include<conio.h> void prime(int x) for(int i=2;i<x;i++) if(x%i= =0) cout<<x<<"\n The given number is not a prime number "; return; cout<<x<<"\n The given number is a prime number "; return; void main() int n; clrscr(); cout<<"\n Enter the number..."; cin>>n; prime(n); getch(); EXECUTION AND OUTPUT Enter the number The given number is a prime number Enter the number The given number is not a prime number

11 9. NET PAY PROBLEM: Write a C++ program to define a class employee with following specifications Private members of class employee Empno - interger Ename - 20 characters Basic - float Netpay, hra, da - float Calculate( ) A function to find the basic+hra+da with float return type Public member function havedata( ) A function to accept values for empno,ename,basic, hra, da and call calculate ( ) to compute netpay dispdata( ) A function to display all the data members on the screen. AIM: To Write a C++ program to find out the net pay of an employee using classes. PROGRAM CODING: #include<iostream.h> #include<conio.h> class employee private: int empno; char ename[20]; float basic,netpay,hra,da; float calculate( ) netpay = basic+hra+da; return netpay; public: void havedata( ) cout<< \n Enter the ename, empno,basic,hra,da.. << \n ; cin>>ename>>empno>>basic>>hra>>da; calculate( ); void dispdata( ) cout<< \n Employee Name.: <<ename; cout<< \n Employee Empno.: <<empno; cout<< \n Employee Basic.: <<basic;

12 cout<< \n Employee Hra.: <<hra; cout<< \n Employee Da.: <<da; cout<< \n Employee Netpay.: <<netpay; ; void main( ) clrscr( ); employee emp; emp.havedata( ); emp.dispdata( ); getch( ); EXECUTION AND OUTPUT Enter the ename, empno,basic,hra,da.. SURESH KUMAR Employee Name.: SURESH KUMAR Employee Empno : 003 Employee Basic : Employee Hra..: 2250 Employee Da : 750 Employee Netpay.: 16000

13 PROBLEM: AIM: 10. MAXIMUM OF TWO NUMBERS OR THREE NUMBERS Write a C++ program that uses function overloading to do the following tasks. a) Find the maximum of two numbers (integers) b) Find the maximum of three numbers (integers) To write a C++ program to find the maximum of two numbers or maximum of three numbers using overloading. PROGRAM CODING # include<iostream.h> # include<conio.h> int max ( int a, int b) if ( a>b) return (a); else return(b); int max ( int a, int b, int c) if ( a>b && a>c) return (a); else if(b>c) return(b); else return (c); void main( ) int x, y, z, ch; clrscr( ); cout<< \n\n1. Maximum of two numbers ; cout<< \n\n2. Maximum of three numbers ; cout<< \n\n Enter your choice ; cin>>ch; switch(ch) case 1: cout<< \n Enter the two numbers << \n ; cin>>x>>y; cout<<max(x, y);

14 break; case 2: cout<< \n Enter the three numbers << \n ; cin>>x>>y>>z; cout<<max(x, y, z); break; default: cout<< \n Exit ; getch( ); EXECUTION AND OUTPUT 1. Maximum of two numbers 2. Maximum of three numbers Enter your choice 1 Enter the two numbers Maximum of two numbers 2. Maximum of three numbers Enter your choice 2 Enter the three numbers

15 PROBLEM: 11. SUM AND DIFFERENCE Write a C++ program to find the sum and difference of two numbers using inheritance. Add Subtract public add( ),accept ( ), Plus ( ) subtract( ), minus ( ) private sum sub protected num1, num2 AIM: To write a C++ program to find the sum and difference of two numbers using inheritance. PROGRAM CODING # include<iostream.h> # include<conio.h> class add private: int sum; protected: int num1,num2; public: add( ) num1=num2= sum=0; cout<< \n Add constructor.. ; void accept( ) cout<< \n Enter the numbers << \n ; cin>>num1>>num2; void plus( ) sum= num1+num2; cout<< \n The sum of two numbers are. <<sum; ; class subtract : public add int sub; public: subtract( )

16 sub=0; cout<< \n Subtract constructor.. ; void minus( ) add : : accept( ); sub= num1 num2; cout<< \n The differences of two numbers are <<sub; ; void main( ) subtract s; int ch; clrscr( ); cout<< \n 1. Add ; cout<< \n 2. subtract ; cout<< \n Enter your choice. ; cin>>ch; switch( ch) case 1: s.accept( ); s. plus( ); break; case 2: s.minus( ); break; default: cout<< \n Exit ; getch( );

17 EXECUTION AND OUTPUT Add Subtract Enter your choice 1 Enter the numbers The sums of two numbers are 60 Add Subtract Enter your choice 2 Enter the numbers The differences of two numbers are 15

18 PROBLEM: Write a C++ program to get following output C CO COM COMP COMPU COPMUT COMPUTE COMPUTER AIM: To write a C++ program to display a string pattern PROGRAM CODING: #include<iostream.h> #include<conio.h> void main ( ) clrscr( ); char name[ ]="COMPUTER"; int i=1; while(i<9) cout.write(name,i); cout<<'\n'; i++; getch( ); EXECUTION AND OUTPUT C CO COM COMP COMPU COPMUT COMPUTE COMPUTER

19 SECTION B C++ EX.NO DESCRIPTION 1 FIBONACCI SERIES 2 FACTORIAL OF A GIVEN NUMBER USING FUNCTION 3 NUMBER IN WORDS USING SWITCH 4 PALINDROME OT NOT 5 NUMBER OF EVEN AND ODD NUMBERS 6 TRANSPOSE OF 3x3 MATRIX 7 ADDITION OF TWO MATRICES 8 PRIME NUMBER OR NOT 9 NET PAY USING CLASSES 10 MAXIMUM OF TWO AND THREE NUMBERS USING OVERLOADING 11 SUM AND DIFERENCE OF TWO NUMBERS USING INHERITANCE 12 DISPLAY A STRING PATTERN

20 1. TEXT EDITING AND FORMATTING Question: Enter the given text Heaven from all creatures hides the book of fate All but the page prescribe the present state A hero perishes or a sparrow fall Apply the following commands to the text given above a) Cut, Copy, Paste using Mouse and Keyboard shortcut keys b) Find Heaven and Replace with God c) Change the font style and color d) Align the first line by left, right, center and justify alignments e) Align the second line by bulleted or numbered lists f) Correct typographical mistake using Autocorrect option Aim: 1. To enter the given text 2. To perform Cut, Copy, Paste using Mouse and Keyboard shortcut keys 3. To find Heaven and Replace with God 4. To change the font style and color 5. To align the first line by left, right, center and justify alignments 6. To align the second line by bulleted or numbered lists 7. To correct typographical mistake using Autocorrect option Procedure: Start All programs Star office 8 StarOffice Writer. Enter the given text To perform Cut and Paste using Mouse and Keyboard shortcut keys Select the text to be moved Select Edit Cut from menu or Ctrl + X from keyboard Place the insertion point in the desired location Select Edit Paste from menu or Ctrl + V from keyboard To perform Copy and Paste using Mouse and Keyboard shortcut keys Select the text to be copied Select Edit Copy from menu or Ctrl + C from keyboard

21 Place the insertion point in the desired location Select Edit Paste from menu or Ctrl + V from keyboard To find Heaven and Replace with God Select Edit Find & Replace from menu Enter the word Heaven in Search for text box Enter the word God in Replace with text box Click on Replace All to replace all the occurrences To change the font style and color Select the text whose font style and color is to be changed Select Format Character from menu Click on Font tab and select the required style from the list Click on Font effects and select the desired color from the Font color drop down list Click OK To align the first line by left, right, center and justify alignments Select the paragraph to be aligned To left align press Ctrl + L from keyboard To right align press Ctrl + R from keyboard To center align press Ctrl + E from keyboard To justify press Ctrl + J from keyboard To align the second line by bulleted or numbered lists Select the second line Select Format Bullets and Numbering from menu Select the required style from the list Click OK To correct typographical mistake using Autocorrect option Select Tools Autocorrect from menu Enter the misspelled word in Replace text box Enter the correct word in With text box Click on New button Click OK

22 Output: Heaven from all creatures hides the book of fate All but the page prescribe the present state A hero perishes or a sparrow fall God from all creatures hides the book of fate All but the page prescribe the present state A hero perishes or a sparrow fall

23 2. PAGE FORMATTING Question: Create a text with four lines. To the text increase or decrease the margin by ½ inch. Change the original setting using ruler option. Change the page orientation. Insert Topic name as Header and Page number as Footer. Aim: 1. To enter four lines of text 2. To change the original setting using ruler option. 3. To increase or decrease the margin by ½ inch and change page orientation 4. To insert topic name as Header and page number as Footer. Procedure: Start All programs Star office 8 StarOffice Writer. Enter four lines of text To change the original setting using ruler option. Click on View Ruler to display the ruler if not visible Move the mouse pointer between white and grey area, when it is in the right position It changes to double headed arrow Press and hold down the left mouse button and drag to resize. To change the margin and page orientation. Click on Format Page, select Page tab Change the Left and Right margin value using spin arrows under Margins Select Landscape radio button under orientation Click OK To insert topic name as Header and page number as Footer. Click on Format Page, select Header tab Click on Header on check box Click on Format Page, select Footer tab Click on Footer on check box Click OK

24 Header and Footer area seen separately by a thin lined box at the top and bottom respectively. Place the insertion point in the Header area and enter the topic name. Place the insertion point in the Footer area Select Insert Fields Page Number from the menu to add page number to footer. Output: Book of Fate Heaven from all creatures hides the book of fate All but the page prescribe the present state A hero perishes or a sparrow fall This is the destiny of life 1

25 3. TABLE CREATION Question: Create a table and enter the names of the five students and marks in three subjects. Change the borders, line style and background color of table. Add two more names and marks respectively. Aim: To create a table and enter the names of the five students and marks in three subjects, change the borders, line style and background color of table and add two more names and marks respectively. Procedure: Start All programs Star office 8 StarOffice Writer. To create a table and enter data Select Table Insert Table from menu Enter Marks in Name text box. Enter 4 in Columns spin box. Enter 6 in Rows spin box. Click OK A blank table with 4 columns and 6 rows is created. Enter the data in the table using TAB and Shift + Tab to move forward and backward in a table respectively. Name Physics Chemistry Maths Kailash Sanjay John Paul Arjun Siddharth To change the borders, line style and background color of table

26 Select the table, table formatting toolbar is displayed Click Border icon from the table formatting toolbar, select the required style from the list. Click Line style icon from the table formatting toolbar, select the required style from the list. Click Background icon from the table formatting toolbar, select the required color from the color palette. To add two more names and marks Select Table Insert Rows from menu Enter 2 in the Amount spin box Click OK Enter the data name and marks under the respective heading. Output: Name Physics Chemistry Maths Kailash Sanjay John Paul Arjun Siddharth Gowtham Sarvesh

27 4. WORKSHEET MARKLIST Question: Create a worksheet to enter the names and marks of five students in three subjects. Find the class average for one subject and copy using Fill to others. Aim: To create a worksheet and enter the names and marks of five students in three subjects. Find the class average for one subject and copy using Fill to others. Procedure: Start All programs Star office 8 StarOffice Calc. To enter the names and marks of five students in three subjects. Enter Name in cell A1 Enter Physics in cell B1 Enter Chemistry in cell C1 Enter Maths in cell D1 Enter the details of five students under each heading respectively, using TAB and Shift + Tab to move forward and backward in worksheet.. To find the class average for one subject and copy using Fill command. Type Sub-Average in cell A7

28 Enter the formulae = AVERAGE ( B2 : B6 ) in cell B7 Select the range B7 to D7 Select Edit Fill Right from the menu.

29 5. WORKSHEET EMPLOYEE GROSS PAY CALCULATION Question: Create a worksheet to enter the following details for five employees. a. Employee Name, Employee number, Basic pay, DA, CCA, HRA b. Calculate Gross pay using formulae. c. Change the Row height and Column width. d. Sort the record in alphabetical order of employee names. e. Add two more employee details. f. Delete one employee detail. g. Create a Line or Pie chart to show the variation of Basic pay. Aim: To create a worksheet to enter the following details for five To calculate Gross pay using formulae. To change the Row height and Column width. To sort the record in alphabetical order of employee names. To add two more employee details. To delete one employee detail. To create a Pie chart to show the variation of Basic pay. Procedure: Start All programs Star office 8 StarOffice Calc. To enter the following details for five Enter EmpNo in cell A1 Enter EmpName in cell B1 Enter Basic in cell C1 Enter DA in cell D1 Enter CCA in cell E1 Enter HRA in cell F1 Enter Gross Pay in cell G1 Enter the details of five employees under each heading respectively, using TAB and Shift + Tab to move forward and backward in worksheet.

30 To calculate Gross pay using formulae. Enter the formulae = SUM ( C2 : F2 ) in cell G2 Select the range G2 to G6 Select Edit Fill Down To change the Row height and Column width. Select Format Row Height from menu, to change the row height, enter new value and click OK Select Format Column Width from menu, to change the column width, enter new value and click OK To sort the record in alphabetical order of employee names. Select the range A2 to G6 Select Data Sort from menu Select Name from the drop down list under Sort by

31 Select Ascending radio button Click OK To add two more employee details. Place the cell pointer in A7 and enter the details of two employees under each heading respectively, using TAB and Shift + Tab to move forward and backward in worksheet. To delete one employee detail. Select the row to be deleted by clicking on the Row header Select Edit Delete Cells from menu Select Delete entire row(s) radio button Click OK To create a Pie chart to show the variation of Basic pay. Select Insert Chart Select the range C2 to C7 Click on the worksheet area where chart is to be placed. Click Next Select Pie chart from the list and Select Column radio button Click Create Output:

32

33 6. WORKSHEET FILL SERIES Question: Generate the following series using Star calc. a. 3/5/00, 3/12/00, 3/19/00.5/28/00. b. 16, 32, 64, c. 33, 30,.3. Aim: To generate the given series using Fill command. Procedure: Start All programs Star office 8 StarOffice Calc. To generate the date series 3/5/00, 3/12/00, 3/19/00.5/28/00. Select the range A1 to A20 Select Edit Fill Series Select Down under Direction Select Date under Series type Select Day under Time unit Enter 3/5/00 in Start value text box Enter 5/28/00 in End value text box Enter 7 in the Increment text box Click OK To generate the series 16, 32, 64, Select the range C1 to C20 Select Edit Fill Series Select Down under Direction Select Growth under Series type Enter 16 in Start value text box Enter 2048 in End value text box Enter 2 in the Increment text box Click OK

34 To generate the series 33, 30,.3. Select the range E1 to E20 Select Edit Fill Series Select Down under Direction Select Linear under Series type Enter 33 in Start value text box Enter 3 in End value text box Enter -3 in the Increment text box Click OK Output:

35 Prepared by Mr. Suresh Kumar.

---

--- Bharathi Hr. Sec. School, Reddipatty..1.. A. Prabhakar, M.C.A.,B.Ed., Enter the given text: Heaven from all creatures hides the book of fate. All but the page prescribe the present state. A hero perishes

More information

COMPUTER SCIENCE PRACTICAL GUIDE [ ENGLISH MEDIUM ]

COMPUTER SCIENCE PRACTICAL GUIDE [ ENGLISH MEDIUM ] +2 COMPUTER SCIENCE PRACTICAL GUIDE 2018-19 [ ENGLISH MEDIUM ] NAME : SUBJECT: SCHOOL : Sastra Matriculation Higher Secondary School 1 Kilpennathur, Tiruvannamalai INSTRUCTIONS FOR THE CONDUCT OF PRACTICAL

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

COMMON QUARTERLY EXAMINATION SEPTEMBER 2018

COMMON QUARTERLY EXAMINATION SEPTEMBER 2018 i.ne COMMON QUARTERLY EXAMINATION SEPTEMBER 2018 1. a) 12 2. a) Delete 3. b) Insert column 4. d) Ruler 5. a) F2 6. b) Auto fill 7. c) Label 8. c) Master page 9. b) Navigator 10. d) Abstraction 11. d) Void

More information

SRI SARASWATHI MATRIC HR SEC SCHOOL PANAPAKKAM +2 IMPORTANT 2 MARK AND 5 MARK QUESTIONS COMPUTER SCIENCE VOLUME I 2 MARKS

SRI SARASWATHI MATRIC HR SEC SCHOOL PANAPAKKAM +2 IMPORTANT 2 MARK AND 5 MARK QUESTIONS COMPUTER SCIENCE VOLUME I 2 MARKS SRI SARASWATHI MATRIC HR SEC SCHOOL PANAPAKKAM +2 IMPORTANT 2 MARK AND 5 MARK QUESTIONS COMPUTER SCIENCE VOLUME I 2 MARKS 1. How to work with multiple documents in StarOffice Writer? 2. What is meant by

More information

Aim : To Write a C++ Program that prints a Fibonacci series

Aim : To Write a C++ Program that prints a Fibonacci series Ex:B1 Fibonacci Series Aim : To Write a C++ Program that prints a Fibonacci series #include int f1 = -1, f2=1, f3, n, i; cout < < "\n\nenter the value of N : "; cin >> n ; cout < < "\n\nfibonacci

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

Chapter-6 Classes and Objects. stud.execute(); getch();} Output:

Chapter-6 Classes and Objects. stud.execute(); getch();} Output: Chapter-6 Classes and Objects Examples: 1.Specifying a class: class student char name[30]; int rollno,mark1,mark2,total_marks; void accept() cout>name>>rollno>>mark1>>mark2;

More information

LORD P.C.A.A LIONS MAT.HR.SEC SCHOOL, RESERVE LINE, SIVAKASI

LORD P.C.A.A LIONS MAT.HR.SEC SCHOOL, RESERVE LINE, SIVAKASI www.p COMMON HALF YEARLY EXAMINATION DECEMBER 2018 Standard 12 ( Virudhunagar ) Computer Science Answer Key Section I Choose the correct answer : 15 X 1 = 15 www.p 1. d) Ctrl + A 2. d) Fajita 3. d) MM/DD/YY

More information

Changing Worksheet Views

Changing Worksheet Views PROCEDURES LESSON 1: TOURING EXCEL Starting Excel From the Windows Start screen, click the Excel 2013 program tile 1 Right-click a blank area of the Windows Start screen 2 Click the All Apps button 3 Click

More information

Changing Worksheet Views

Changing Worksheet Views PROCEDURES LESSON 1: TOURING EXCEL Starting Excel 1 Click the Start button 2 Click All Programs 3 Click the Microsoft Office folder icon 4 Click Microsoft Excel 2010 Naming and Saving (Ctrl+S) a Workbook

More information

HIGER SECONDARY FIRST YEAR COMPUTER SCIENCE

HIGER SECONDARY FIRST YEAR COMPUTER SCIENCE HIGER SECONDARY FIRST YEAR COMPUTER SCIENCE VOLUME I Chapter 1 : Introduction to computers and Number Systems 1.1 Introduction to Computers 1.1.1 History of Computers 1.1.2 Data, Information and program

More information

Correcting Grammar as You Type

Correcting Grammar as You Type PROCEDURES LESSON 11: CHECKING SPELLING AND GRAMMAR Selecting Spelling and Grammar Options 2 Click Options 3 In the Word Options dialog box, click Proofing 4 Check options as necessary under the When correcting

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

STAR OFFICE WRITER. Lesson 2

STAR OFFICE WRITER. Lesson 2 Lesson 2 STAR OFFICE WRITER 1. A is a named set of defaults for formatting text. a. Font b. Tab c. Page d. Style 2. is the keyboard shortcut for justified alignment. a. Ctrl + J b. Ctrl + C c. Ctrl + V

More information

Correcting Grammar as You Type. 1. Right-click the text marked with the blue, wavy underline. 2. Click the desired option on the shortcut menu.

Correcting Grammar as You Type. 1. Right-click the text marked with the blue, wavy underline. 2. Click the desired option on the shortcut menu. PROCEDURES LESSON 11: CHECKING SPELLING AND GRAMMAR Selecting Spelling and Grammar Options 2 Click Options 3 In the Word Options dialog box, click Proofing 4 Check options as necessary under the When correcting

More information

Lesson 13 Editing and Formatting documents

Lesson 13 Editing and Formatting documents Editing and Formatting documents Computer Literacy BASICS: A Comprehensive Guide to IC 3, 4 th Edition 1 Objectives Delete and insert text using Backspace, Delete, Insert, Overtype modes. Undo, redo, and

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

Excel Basics. TJ McKeon

Excel Basics. TJ McKeon Excel Basics TJ McKeon What is Excel? Electronic Spreadsheet in a rows and columns layout Can contain alphabetical and numerical data (text, dates, times, numbers) Allows for easy calculations and mathematical

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

SRE VIDYASAAGAR HIGHER SECONDARY SCHOOL. TWO MARKS

SRE VIDYASAAGAR HIGHER SECONDARY SCHOOL. TWO MARKS SRE VIDYASAAGAR HIGHER SECONDARY SCHOOL. COMPUTER SCIENCE - STAR OFFICE TWO MARKS LESSON I 1. What is meant by text editing? 2. How to work with multiple documents in StarOffice Writer? 3. What is the

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

Starting Excel application

Starting Excel application MICROSOFT EXCEL 1 2 Microsoft Excel: is a special office program used to apply mathematical operations according to reading a cell automatically, just click on it. It is called electronic tables Starting

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

Status Bar: Right click on the Status Bar to add or remove features.

Status Bar: Right click on the Status Bar to add or remove features. Excel 2013 Quick Start Guide The Excel Window File Tab: Click to access actions like Print, Save As, etc. Also to set Excel options. Ribbon: Logically organizes actions onto Tabs, Groups, and Buttons to

More information

PUGAL GUIDE COMPUTER SCIENCE. Star Office C++ 2 MARK & 5 MARK QUESTION & Answers NAME :

PUGAL GUIDE COMPUTER SCIENCE. Star Office C++ 2 MARK & 5 MARK QUESTION & Answers NAME : PUGAL GUIDE 12 COMPUTER SCIENCE Star Office & C++ 2 MARK & 5 MARK QUESTION & Answers NAME : CLASS : XII SEC : P.CHANDRASEKARAN M.C.A, B.ED, [PG ASST IN C.S] FOR ¼: 99420 12999 1 BLUE PRINT CLASS : XII

More information

Chapter 4. Microsoft Excel

Chapter 4. Microsoft Excel Chapter 4 Microsoft Excel Topic Introduction Spreadsheet Basic Screen Layout Modifying a Worksheet Formatting Cells Formulas and Functions Sorting and Filling Borders and Shading Charts Introduction A

More information

EXCEL 2010 PROCEDURES

EXCEL 2010 PROCEDURES EXCEL 2010 PROCEDURES Starting Excel 1 Click the Start 2 Click All Programs 3 Click the Microsoft Office folder icon 4 Click Microsoft Excel 2010 Naming and Saving (Ctrl+S) a Workbook 1 Click File 2 Click

More information

The American University in Cairo. Academic Computing Services. Excel prepared by. Maha Amer

The American University in Cairo. Academic Computing Services. Excel prepared by. Maha Amer The American University in Cairo Excel 2000 prepared by Maha Amer Spring 2001 Table of Contents: Opening the Excel Program Creating, Opening and Saving Excel Worksheets Sheet Structure Formatting Text

More information

«ï è : Fibonacci ªî ì ó Ü C C++ Gó ô â î. Pº ø : àœk : Enter the value of N : 5. ªõOf : Fibonacci Series. «ï è : ªî ì ªð ¼ è ô è ìp» C++ Gó ô â î

«ï è : Fibonacci ªî ì ó Ü C C++ Gó ô â î. Pº ø : àœk : Enter the value of N : 5. ªõOf : Fibonacci Series. «ï è : ªî ì ªð ¼ è ô è ìp» C++ Gó ô â î Ex:B1 Fibonacci Series «ï è : Fibonacci ªî ì ó Ü C C++ Gó ô â î int f1=0, f2=1, f3, n, i; cout < < "\nenter the value of N : "; cin >> n ; cout < < "\n\nfibonacci Series\n"; cout < < f1 < < "\t" < < f2

More information

ST.KANAKADASA MATRIC.HR.SEC.SCHOOL AMMERI BARUGUR COMPUTER SCIENCE 1- MARKS Q/A. B.Ed., Cell: , Page 1

ST.KANAKADASA MATRIC.HR.SEC.SCHOOL AMMERI BARUGUR COMPUTER SCIENCE 1- MARKS Q/A. B.Ed., Cell: , Page 1 ST.KANAKADASA MATRIC.HR.SEC.SCHOOL AMMERI BARUGUR +2 COMPUTER SCIENCE 1- MARKS Q/A Education never ends, Because learning is a life game. -Correspondent B.Ed., Cell:9789633793, 9488832229 Page 1 First

More information

Microsoft Word (97, 98, 2000) Word Processing Instructions

Microsoft Word (97, 98, 2000) Word Processing Instructions Microsoft Word (97, 98, 2000) Word Processing Instructions Managing Toolbars Click on View. Select Toolbars. Click to select Standard, Formatting, and Drawing. Formatting Text 1. Once text is typed in,

More information

button Double-click any tab on the Ribbon to minimize it. To expand, click the Expand the Ribbon button

button Double-click any tab on the Ribbon to minimize it. To expand, click the Expand the Ribbon button PROCEDURES LESSON 1: CREATING WD DOCUMENTS WITH HEADERS AND FOOTERS Starting Word 1 Click the Start button 2 Click All Programs 3 Click the Microsoft Office folder icon 4 Click Microsoft Word 2010 1 Click

More information

Introduction to Excel

Introduction to Excel Office Button, Tabs and Ribbons Office Button The File menu selection located in the upper left corner in previous versions of Excel has been replaced with the Office Button in Excel 2007. Clicking on

More information

Computer Nashua Public Library Introduction to Microsoft Word 2010

Computer Nashua Public Library Introduction to Microsoft Word 2010 Microsoft Word is a word processing program you can use to write letters, resumes, reports, and more. Anything you can create with a typewriter, you can create with Word. You can make your documents more

More information

Excel 2016 Basics for Mac

Excel 2016 Basics for Mac Excel 2016 Basics for Mac Excel 2016 Basics for Mac Training Objective To learn the tools and features to get started using Excel 2016 more efficiently and effectively. What you can expect to learn from

More information

MS Word Professional Document Alignment

MS Word Professional Document Alignment MS Word Professional Document Alignment Table of Contents CHARACTER VS. PARAGRAPH FORMATTING...5 Character formatting...5 Paragraph Formatting...5 USING SHOW/HIDE TO REVEAL NON-PRINTING CHARACTERS...5

More information

Excel Main Screen. Fundamental Concepts. General Keyboard Shortcuts Open a workbook Create New Save Preview and Print Close a Workbook

Excel Main Screen. Fundamental Concepts. General Keyboard Shortcuts Open a workbook Create New Save Preview and Print Close a Workbook Excel 2016 Main Screen Fundamental Concepts General Keyboard Shortcuts Open a workbook Create New Save Preview and Print Close a Ctrl + O Ctrl + N Ctrl + S Ctrl + P Ctrl + W Help Run Spell Check Calculate

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

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

Table of Contents Getting Started with Excel Creating a Workbook

Table of Contents Getting Started with Excel Creating a Workbook Finney Learning Systems i Table of Contents Welcome........................... vii Copying the Student Files................ viii Setting up Excel to Work with This Course...... viii Lesson 1 Getting Started

More information

SRE VIDYASAAGAR HIGHER SECONDARY SCHOOL

SRE VIDYASAAGAR HIGHER SECONDARY SCHOOL SRE VIDYASAAGAR HIGHER SECONDARY SCHOOL Sub : Computer Science Full Portion Exam Max. Mark : 150 Class : XII - EM Time : 3.00 Hrs PART - I I. Choose the correct answer. 75 x 1 = 75 1. Cut, copy, paste,

More information

Office of Instructional Technology

Office of Instructional Technology Office of Instructional Technology Microsoft Excel 2016 Contact Information: 718-254-8565 ITEC@citytech.cuny.edu Contents Introduction to Excel 2016... 3 Opening Excel 2016... 3 Office 2016 Ribbon... 3

More information

Computer Science. Higher Secondary Second year. STUDENT Edition VOLUME - I. P.Simon Navis

Computer Science. Higher Secondary Second year. STUDENT Edition VOLUME - I. P.Simon Navis Computer Science Higher Secondary Second year STUDENT Edition VOLUME - I P.Simon Navis Academic Director Adarsh Vidya Kendra, Nagercoil simonnavis12@gmail.com Computer science Unit No. Blue Print Unit

More information

Introduction to Excel 2013

Introduction to Excel 2013 Introduction to Excel 2013 Copyright 2014, Software Application Training, West Chester University. A member of the Pennsylvania State Systems of Higher Education. No portion of this document may be reproduced

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 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

MICROSOFT WORD. MS. Office includes the following application:

MICROSOFT WORD. MS. Office includes the following application: MICROSOFT WORD MS. Office consists of group of application developed overtime by MS work together, both in terms of accomplishing things is a similar way and in terms of providing easy of data. MS. Office

More information

Beginning Excel for Windows

Beginning Excel for Windows Beginning Excel for Windows Version: 2002 Academic Computing Support Information Technology Services Tennessee Technological University September 2003 1. Opening Excel for Windows and Setting the Toolbars

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

ECDL Module 4 REFERENCE MANUAL

ECDL Module 4 REFERENCE MANUAL ECDL Module 4 REFERENCE MANUAL Spreadsheets Microsoft Excel XP Edition for ECDL Syllabus Four PAGE 2 - ECDL MODULE 4 (USING MICROSOFT EXCEL XP) - MANUAL 4.1 USING THE APPLICATION... 4 4.1.1 FIRST STEPS

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

Formatting a Report with Word 2010

Formatting a Report with Word 2010 Formatting a Report with Word 2010 The basics Although you can use Word to do a great many formatting tasks, here we will concentrate on the basic requirements for good presentation of a report. These

More information

Excel Level 1

Excel Level 1 Excel 2016 - Level 1 Tell Me Assistant The Tell Me Assistant, which is new to all Office 2016 applications, allows users to search words, or phrases, about what they want to do in Excel. The Tell Me Assistant

More information

SURA's Guides for 3rd to 12th Std for all Subjects in TM & EM Available MARCH [1]

SURA's Guides for 3rd to 12th Std for all Subjects in TM & EM Available MARCH [1] 12 th STD. MARCH - 2017 [Time Allowed : 3 hours] COMPUTER SCIENCE with Answers [Maximum Marks : 150] PART-I Choose the most suitable answer from the given four alternatives and write the option code and

More information

Word 2007 Tables Objectives

Word 2007 Tables Objectives Word 2007 Tables In this lesson you will learn how to create, modify and format tables. You will also learn to use the AutoFormat table option and to sort table rows. Objectives Create a table Modify a

More information

Introduction to Microsoft Word 2010

Introduction to Microsoft Word 2010 Introduction to Microsoft Word 2010 Microsoft Word is a word processing program you can use to write letters, resumes, reports, and more. Anything you can create with a typewriter, you can create with

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

- HALF YEARLY EXAM ANSWER KEY DEC-2016 COMPUTER SCIENCE ENGLISH MEDIUM

- HALF YEARLY EXAM ANSWER KEY DEC-2016 COMPUTER SCIENCE ENGLISH MEDIUM www.padasalai.net - HALF YEARLY EXAM ANSWER KEY DEC-2016 COMPUTER SCIENCE ENGLISH MEDIUM 1 A 26 D 51 C 2 C 27 D 52 D 3 C 28 C 53 B 4 A 29 B 54 D 5 B 30 B 55 B 6 A 31 C 56 A 7 B 32 C 57 D 8 C 33 B 58 C

More information

Excel 2016 Basics for Windows

Excel 2016 Basics for Windows Excel 2016 Basics for Windows Excel 2016 Basics for Windows Training Objective To learn the tools and features to get started using Excel 2016 more efficiently and effectively. What you can expect to learn

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

Spreadsheet Software

Spreadsheet Software Spreadsheet Software Objectives: Working with Spreadsheets Enhancing Productivity Using the Application Open, close a spreadsheet application. Open, close documents. Create a new spreadsheet based on default

More information

HIGHER SECONDARY SECOND YEAR

HIGHER SECONDARY SECOND YEAR HIGHER SECONDARY SECOND YEAR STD: 12 COMPUTER SCIENCE TIME : 2.30 HRS MODEL QUESTION PAPER - 1 MAX MARKS : 70 Part I Choose the correct answer: 15 * 1 = 15 1. A flashing vertical bar is called: (A) Mouse

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

Sample Paper Class XI Subject Computer Sience UNIT TEST II

Sample Paper Class XI Subject Computer Sience UNIT TEST II Sample Paper Class XI Subject Computer Sience UNIT TEST II (General OOP concept, Getting Started With C++, Data Handling and Programming Paradigm) TIME: 1.30 Hrs Max Marks: 40 ALL QUESTIONS ARE COMPULSURY.

More information

Understanding Word Processing

Understanding Word Processing Understanding Word Processing 3.0 Introduction In this chapter you are going to learn how to create a simple memo or note or a complex and complicated multi column business document using word processing

More information

Intermediate Word for Windows

Intermediate Word for Windows Intermediate 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

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

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

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

GAZIANTEP UNIVERSITY INFORMATICS SECTION SEMETER

GAZIANTEP UNIVERSITY INFORMATICS SECTION SEMETER GAZIANTEP UNIVERSITY INFORMATICS SECTION 2010-2011-2 SEMETER Microsoft Excel is located in the Microsoft Office paket. in brief Excel is spreadsheet, accounting and graphics program. WHAT CAN WE DO WITH

More information

The HOME Tab: Cut Copy Vertical Alignments

The HOME Tab: Cut Copy Vertical Alignments The HOME Tab: Cut Copy Vertical Alignments Text Direction Wrap Text Paste Format Painter Borders Cell Color Text Color Horizontal Alignments Merge and Center Highlighting a cell, a column, a row, or the

More information

Part I OFFICE PRODUCTIVITY TOOLS 4.1 INTRODUCTION 4.2 OBJECTIVES

Part I OFFICE PRODUCTIVITY TOOLS 4.1 INTRODUCTION 4.2 OBJECTIVES 70 :: Computer and Office Applications 4 OFFICE PRODUCTIVITY TOOLS Part I 4.1 INTRODUCTION Office Productivity tools are software programs designed to make computer users more productive and efficient

More information

Getting Started with. Office 2008

Getting Started with. Office 2008 Getting Started with Office 2008 Copyright 2010 - Information Technology Services Kennesaw State University This document may be downloaded, printed, or copied, for educational use, without further permission

More information

Basic Microsoft Excel 2007

Basic Microsoft Excel 2007 Basic Microsoft Excel 2007 Contents Starting Excel... 2 Excel Window Properties... 2 The Ribbon... 3 Tabs... 3 Contextual Tabs... 3 Dialog Box Launchers... 4 Galleries... 5 Minimizing the Ribbon... 5 The

More information

MS Word Basics. Groups within Tabs

MS Word Basics. Groups within Tabs MS Word Basics Instructor: Bev Alderman L e t s G e t S t a r t e d! Open and close MS Word Open Word from the desktop of your computer by Clicking on the Start>All programs>microsoft Office >Word 2010

More information

1. An Introduction to StarOffice Writer

1. An Introduction to StarOffice Writer 1. An Introduction to StarOffice Writer Two Mark Questions :- 01. List the Functions/Applications of Star Office? The various Functions / Applications of Star Office are as follows, StarOffice Writer,

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

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

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

MICROSOFT EXCEL BIS 202. Lesson 1. Prepared By: Amna Alshurooqi Hajar Alshurooqi

MICROSOFT EXCEL BIS 202. Lesson 1. Prepared By: Amna Alshurooqi Hajar Alshurooqi MICROSOFT EXCEL Prepared By: Amna Alshurooqi Hajar Alshurooqi Lesson 1 BIS 202 1. INTRODUCTION Microsoft Excel is a spreadsheet application used to perform financial calculations, statistical analysis,

More information

PART - I 75 x 1 = The building blocks of C++ program are (a) functions (b) classes (c) statements (d) operations

PART - I 75 x 1 = The building blocks of C++ program are (a) functions (b) classes (c) statements (d) operations OCTOBER 2007 COMPUTER SCIENCE Choose the best answer: PART - I 75 x 1 = 75 1. Which of the following functions will be executed first automatically, when a C++ Program is (a) void (b) Main (c) Recursive

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

LORD PCAA LIONS Mat.Hr.Sec School, Reserve Line, Sivakasi

LORD PCAA LIONS Mat.Hr.Sec School, Reserve Line, Sivakasi Virudhunagar District schools Common First Mid Term Test, July 2018 Standard 12 - computer science Part - I I. Choose the correct answer for the following : 10 X 1 = 10 1. Shift + Tab key is used to move

More information

Nauticom NetEditor: A How-to Guide

Nauticom NetEditor: A How-to Guide Nauticom NetEditor: A How-to Guide Table of Contents 1. Getting Started 2. The Editor Full Screen Preview Search Check Spelling Clipboard: Cut, Copy, and Paste Undo / Redo Foreground Color Background Color

More information

The same can also be achieved by clicking on Format Character and then selecting an option from the Typeface list box.

The same can also be achieved by clicking on Format Character and then selecting an option from the Typeface list box. CHAPTER 2 TEXT FORMATTING A text without any special formatting can have a monotonous appearance. To outline text, to highlight individual words, quotations, or references, or to separate certain parts

More information

Microsoft Excel Chapter 1. Creating a Worksheet and a Chart

Microsoft Excel Chapter 1. Creating a Worksheet and a Chart Microsoft Excel 2013 Chapter 1 Creating a Worksheet and a Chart Objectives Describe the Excel worksheet Enter text and numbers Use the Sum button to sum a range of cells Enter a simple function Copy the

More information

Business and Administration. Workbook 3 Learner Guide Introduction to using Computers in your workplace

Business and Administration. Workbook 3 Learner Guide Introduction to using Computers in your workplace Business and Administration Workbook 3 Learner Guide Introduction to using Computers in your workplace A word processor (more formally known as document preparation system) is a computer application used

More information

SRE VIDYASAAGAR HIGHER SECONDARY SCHOOL

SRE VIDYASAAGAR HIGHER SECONDARY SCHOOL SRE VIDYASAAGAR HIGHER SECONDARY SCHOOL Sub : Computer Science Full Portion Exam Max. Mark : 150 Class : XII - EM Time : 3.00 Hrs PART - I I. Choose the correct answer. 75 x 1 = 75 1. In Save As dialog

More information

Presenter: Susan Campbell Wild Rose School Division

Presenter: Susan Campbell Wild Rose School Division Presenter: Susan Campbell Wild Rose School Division What is Excel? An electronic spreadsheet program and a powerful tool for analyzing and presenting information: Spreadsheet Used for entering and analyzing

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

Introduction to Microsoft Word 2010

Introduction to Microsoft Word 2010 Introduction to Microsoft Word 2010 Microsoft Word is a word processing program you can use to write letters, resumes, reports, and more. Anything you can create with a typewriter, you can create with

More information

Microsoft Office Excel

Microsoft Office Excel Microsoft Office 2007 - Excel Help Click on the Microsoft Office Excel Help button in the top right corner. Type the desired word in the search box and then press the Enter key. Choose the desired topic

More information

Microsoft Word Part I Reference Manual

Microsoft Word Part I Reference Manual Microsoft Word 2002 Part I Reference Manual Instructor: Angela Sanderson Computer Training Coordinator Updated by: Angela Sanderson January 11, 2003 Prepared by: Vi Johnson November 20, 2002 THE WORD SCREEN

More information

TABLE OF CONTENTS TABLE OF CONTENTS... 1 INTRODUCTION... 2 USING WORD S MENUS... 3 USING WORD S TOOLBARS... 5 TASK PANE... 9

TABLE OF CONTENTS TABLE OF CONTENTS... 1 INTRODUCTION... 2 USING WORD S MENUS... 3 USING WORD S TOOLBARS... 5 TASK PANE... 9 TABLE OF CONTENTS TABLE OF CONTENTS... 1 INTRODUCTION... 2 USING WORD S MENUS... 3 DEFINITIONS... 3 WHY WOULD YOU USE THIS?... 3 STEP BY STEP... 3 USING WORD S TOOLBARS... 5 DEFINITIONS... 5 WHY WOULD

More information

Using Microsoft Word. Paragraph Formatting. Displaying Hidden Characters

Using Microsoft Word. Paragraph Formatting. Displaying Hidden Characters Using Microsoft Word Paragraph Formatting Every time you press the full-stop key in a document, you are telling Word that you are finishing one sentence and starting a new one. Similarly, if you press

More information

Excel 2007 Fundamentals

Excel 2007 Fundamentals Excel 2007 Fundamentals 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 that information.

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

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

COMPILED BY: WESLEY M. NYANDIKA 1

COMPILED BY: WESLEY M. NYANDIKA 1 MICROSOFT WD Word processing is the activity of entering, editing formatting, storing and printing text. It involves the use of word processors. Word processor: is a program or software package that has

More information