UFT Class 24

UFT Class 24 I) VBScript Operators a) Arithmetic Operators: Arithmetic Operators return value based result. ————————— 1) Exponentiation ^ 2) Multiplication * 3) Division / 4) Integer Division \ 5) Modules mod 6) Addition 7) Subtraction 8) Concatenation ———————- Example: Dim a, b, c a = 10 b = 3 c = a ^ b … Read more

Interview Questions on VBScript Operators

  Interview Questions on VBScript Operators 1) What is an Operator in Computer Programming or in Scripting? A symbol that represents a specific action or operations, we can find operators in all programming and Scripting languages. Ex: + (Addition) – (Subtraction) * (Multiplication) Note: Operators or not only Symbol oriented, some text oriented operators also … Read more