InterviewSolution
Saved Bookmarks
| 1. |
Describe the structure of a spreadsheet with small example |
|
Answer» dsheet is a document that stores data in a grid of HORIZONTAL rows and VERTICAL columns. Rows are typically LABELED using numbers (1, 2, 3, etc.), while columns are labeled with letters (A, B, C, etc). Individual row/column locations, such as C3 or B12, are referred to as cells. |
|