Day 2:
Q2.Name the Arithmetic operators used in MS-Excel As
well as in Visual Basic.
[5]
Answers
Answer:
don't study
Explanation:
di nt study
Answer:
You can add two values in an expression together with the + Operator, or subtract one from another with the - Operator (Visual Basic), as the following example demonstrates.
Negation also uses the - Operator (Visual Basic), but with only one operand, as the following example demonstrates.Multiplication and division use the * Operator and / Operator (Visual Basic), respectively, as the following example demonstrates.
VBInteger division is carried out using the \ Operator (Visual Basic). Integer division returns the quotient, that is, the integer that represents the number of times the divisor can divide into the dividend without consideration of any remainder. Both the divisor and the dividend must be integral types (SByte, Byte, Short, UShort, Integer, UInteger, Long, and ULong) for this operator. All other types must be converted to an integral type first. The following example demonstrates integer division.