Posts
What is a string operator? Write operator symbol for the string operator
- Get link
- X
- Other Apps
Define Logical operator with two types.
- Get link
- X
- Other Apps
Logical Operators combine two or more relational expressions to evaluate a single value as True (Non Zero) or False (Zero). The result of evaluation is used to make decisions about the program flow. The commonly used logical operators in QBASIC are AND, OR and NOT. It's any two types are as follows: a)AND b) OR
Define relational operator with two examples.
- Get link
- X
- Other Apps
Relational Operator are used to compare to values two values of some type either both numeric or both string. A comparison of sting data with numeric data cannot be done. The comparison of sting data is done on the basis of ASCII value. The result of comparison is either true (non zero) or false (zero). Two example of relational operator are < and >.