Saved Bookmarks
| 1. |
Explain the variables with the hepl of a suitable example |
|
Answer» Answer: a variable is a value that can change, depending on conditions or on information passed to the program. Typically, a program consists of INSTRUCTION s that tell the computer what to do and data that the program uses when it is running. For example, if variable a has been defined int type, then it can STORE only integer. ... There are programming languages like PYTHON, PHP, Perl, etc., which do not want you to specify data type at the TIME of creating variables. |
|