The basic features of a spreadsheet program are :
Grids, Rows & Columns. A spreadsheet consists of a grid of columns and rows.
Functions. Functions are used in the Spreadsheet software to evaluate values and perform different kinds of operations.
Formulas.
Commands.
Text Manipulation.
Printing.
Title Bar.
Menu Bar
Hope u understood!
pls mark me brainliest!
#staysafestayhome
Which is the right way to give comment if you are using Internet explorer as the browser? a) <!-- My First Webpage --> b) <comment> My First Webpage </comment>
Answer:
(a) <!-- My First Webpage -->
Explanation:
Comments in programming languages are chunks of texts, written as part of program code, that are not executed as actual code but rather used for making the program code easily readable and understandable. They allow programmers to explain certain lines of a program code.
Every programming language has its own way of representing comments. In HTML - HyperText Markup Language - comments are written between the following tags :
<!--
and
-->
For example, to put the text "My comment goes here" in a comment, we write:
<!-- My comment goes here -->
From the question, the text to be put is: Â "My First Webpage". Therefore, we write;
<!-- My First Webpage -->