 
                 
                InterviewSolution
| 1. | Dene the following 1. Cell 2. Range 3. Worksheet 4. Workbook | 
| Answer» 1. Cell: The intersection of a row and a column is called a cell. A cell is identified by a combination of an alpha – numeric character eg: A1, B6, C10, etc. This alpha numeric character is called cell address. Hence each cell has a unique address. 2. Ranges: Range is a group of adjacent cells that forms a rectangular area. A range is specified by giving the address for first cell in range and the last cell in the rage, eg: range starting from A10 to A20 is written as A10: A20 where colon (:) is the range operator. 3. Work sheets: The work area which consists of rows and columns in a spreadsheet is called worksheet. By default three worksheets sheet 1, sheet -2, sheet -3 are available in work book. 4. Workbook: A le in spread sheet is known as a workbook. A work book is a collection of a number of work sheets. | |