Computer Studies
Complete the table with reference to arithmetical operators as shown below:
| Operation | Operand | Format used in QBASIC |
|---|---|---|
| Multiplication | M * N | |
| Addition | + | |
| M / N | ||
| ^ | ||
| Subtraction | M - N |
QBASIC: Character Sets
18 Likes
Answer
| Operation | Operand | Format used in QBASIC |
|---|---|---|
| Multiplication | * | M * N |
| Addition | + | M + N |
| Division | / | M / N |
| Exponent | ^ | M ^ N |
| Subtraction | - | M - N |
Answered By
11 Likes
Related Questions
Write down the symbols of the special characters
Name Symbol hash forward slash asterisk colon semi-colon dollar sign double quotes exclamation Write down the names of the following relational operators:
Relational Operator Meaning > <= = <> < >= Name the three types of logical operators and also mention how they are used in QBASIC.
Convert the following mathematical expressions into QBASIC expressions.
Mathematical Expressions QBASIC Expressions 4 x 5 + 15 a + bc (ab + cd)/2 pqr a2 + b3 + c4