VBScript Operators

VBScript Operators

VBScript Operators, Arithmetic operators, Comparison or Relational Operators, Logical Operators, and Operator Precedence in VBScript. Operators in VBScript Operators are used to performing the mathematical, comparison, and logical operations. Categories of operators: 1. Arithmetic Operators 2. Comparison Operators 3. Logical Operators * Concatenation operators (Part of Arithmetic Operators) Operator precedence: Operator precedence is VBScript operator … Read more

VBScript Variables

VBScript Variables

VBScript Variables, Implicit Declaration of Data Types, What is VBScript Variable?, Assign Values to Variables, and Declare & Use Variables. VBScript Variables are variants, they can hold any type of data throughout the program. VBScript supports the implicit and explicit declaration of variables. Variables in VBScript 1. What is a Variable? 2. Declaration of variables … Read more

VBScript Tutorial

VBScript Tutorial

VBScript Tutorial, Environment, VBScript Syllabus, Variables, Control Flow, Functions, Automation Objects, and Write & Run VBScript Programs. VBScript began as part of the Microsoft Windows Script Technologies, launched in 1996. VBScript (“Microsoft Visual Basic Scripting Edition”) is an Active Scripting language developed by Microsoft that is modeled on Visual Basic VBScript stands for Visual Basic … Read more

VBScript Interview Questions on Variables

VBScript Interview Questions on Variables

VBScript Interview Questions on Variables, What a variable, how to declare variables in VBScript?, assign values to variables, and check data type. VBScript Variables Questions 1) What is a Variable? Variable is a named memory location to store data 2) Where variables store, in Primary Memory (RAM) or in Secondary Memory (HDD /CD-Rom, etc..)? Variables … Read more

UFT Class 23

UFT Class 23 (VBScript variables, Operators-1) III) VBScript Variables 1) What is Variable? A named memory location to store the data. Two types of Memory in Computer Environment: i) Primary Memory – RAM ii) Secondary Memory – HDD, DVD, USB drives etc… 2) Declaration of Variables Variables can be declared using either Public or Private … Read more

UFT Class 22

UFT Class 22 (VBScript Comments, Data Types) I) Comments in VBScript Comments are English words, we write comments for Code documentation. > Purpose of Comments: To make the code readable To make the code disable from execution > Syntax: Use Rem command before the statement followed by space. Use ‘ symbol before the statement Ex: … Read more