VBScript Session 3.

Slides:



Advertisements
Similar presentations
Lecture Set 4 Data Types and Variables Part B – Variables, Constants, Expressions Conversion Rules Options Strict, Option Explicit Scope of Definition.
Advertisements

Java Programming, 3e Concepts and Techniques Chapter 3 Section 63 – Manipulating Data Using Methods – Day 2.
CS 3850 Lecture 5 Operators. 5.1 Binary Arithmetic Operators Binary arithmetic operators operate on two operands. Register and net (wire) operands are.
The UNIVERSITY of NORTH CAROLINA at CHAPEL HILL Adrian Ilie COMP 14 Introduction to Programming Adrian Ilie June 27, 2005.
JavaScript, Third Edition
1 Expressions, Operators Expressions Operators and Precedence Reading for this class: L&L, 2.4.
1 Chapter Two Using Data. 2 Objectives Learn about variable types and how to declare variables Learn how to display variable values Learn about the integral.
Java Primitives The Smallest Building Blocks of the Language (corresponds with Chapter 2)
2440: 211 Interactive Web Programming Expressions & Operators.
Chapter 3: Data Types and Operators JavaScript - Introductory.
Dani Vainstein1 VBScript Session 1. Dani Vainstein2 Subjets for Session 1 Vbscript fundamentals. Variant subtypes. Variables. Option Explicit statement.
VBScript Language. What is VBScript Based on the Visual Basic family of languages Supports object oriented features Interpreted Loosely Typed Implicitly.
CPS120: Introduction to Computer Science Operations Lecture 9.
Microsoft Visual Basic 2005: Reloaded Second Edition Chapter 3 Variables, Constants, Methods, and Calculations.
Operators Precedence - Operators with the highest precedence will be executed first. Page 54 of the book and Appendix B list C's operator precedence. Parenthesis.
IFS Intro to Data Management Chapter 5 Getting More Than Simple Columns.
Variables & Function Calls. Overview u Variables  Programmer Defined & Intrinsic  Data Types  Calculation issues u Using Functions  The val() function.
Dani Vainstein1 VBScript Session 3. Dani Vainstein2 What We learn Last seasson? How to declare arrays. Working with one dimensional a multi- dimensional.
Operators and Expressions. 2 String Concatenation  The plus operator (+) is also used for arithmetic addition  The function that the + operator performs.
CIVIL AND GEOMATIC ENGINEERING FT Okyere. CIV 257- COMPUTER PROGRAMMING Lecture 3.
Doing math In java.
Chapter 14 JavaScript: Part II The Web Warrior Guide to Web Design Technologies.
CSCI 1100/1202 January 18, Arithmetic Expressions An expression is a combination of operators and operands Arithmetic expressions compute numeric.
Chapter 4.  Variables – named memory location that stores a value.  Variables allows the use of meaningful names which makes the code easier to read.
Lecture 3: More Java Basics Michael Hsu CSULA. Recall From Lecture Two  Write a basic program in Java  The process of writing, compiling, and running.
CompSci 230 S Programming Techniques
VBScript Session 1 Dani Vainstein.
VBScript Session 1 IT Professional Academy.
Operators and Expressions
BASIC ELEMENTS OF A COMPUTER PROGRAM
Chap. 2. Types, Operators, and Expressions
Visual Basic Variables
Exponents and Order of Operations
Data Types, Arithmetic Operations
Overview: Programming Concepts
Fundamentals of PL/SQL part 1 (Basics)
Data Types, Identifiers, and Expressions
Multiple variables can be created in one declaration
Variables and Arithmetic Operators in JavaScript
Variables, Expressions, and IO
Other Kinds of Arrays Chapter 11
Java Programming: From Problem Analysis to Program Design, 4e
Lecture Set 4 Data Types and Variables
Operators and Expressions
Unit 2 Programming.
Chapter 6 Variables What is VBScript?
All the Operators 22-Nov-18.
Introduction to C++ Programming
Chapter 8 JavaScript: Control Statements, Part 2
Lecture 2 Python Programming & Data Types
Arithmetic Expressions & Data Conversions
All the Operators 4-Dec-18.
Chapter 2 Variables.
PHP.
C Operators, Operands, Expressions & Statements
Lecture 2 Python Programming & Data Types
Chapter 2: Java Fundamentals
All the Operators 6-Apr-19.
All the Operators 13-Apr-19.
Spreadsheets Objective 6.02
Winter 2019 CISC101 4/28/2019 CISC101 Reminders
VBScript Session 1.
Spreadsheets Objective 6.02
ENERGY 211 / CME 211 Lecture 5 October 1, 2008.
Quick Test Professional Training Part 1
Operator King Saud University
Algoritma & Pemrograman 1
5.03 Apply operators and Boolean expressions
Arithmetic Expressions & Data Conversions
Chapter 12 Variables and Operators
Presentation transcript:

VBScript Session 3

What We learn Last seasson? How to declare arrays. Working with one dimensional a multi-dimensional arrays. Working with Dynamic arrays. Arrays utilities (Array,UBound, LBound)

Subjets for Session 3 Const Statement. Operators. Arithmetic. Comparision. Logical.

Constants Const Statement [Public | Private] Const constname = expression A constant is a meaningful name that takes the place of a number or string and never changes. VBScript defines a number of intrinsic constants. You create user-defined constants in VBScript using the Const statement.

Constants Const Statement You may want to adopt a naming scheme to differentiate constants from variables. This will prevent you from trying to reassign constant values while your script is running. For example, you might want to use a "vb" or "con" prefix on your constant names, or you might name your constants in all capital letters: conMaxValue, vbMyValue, MY_VALUE Differentiating constants from variables eliminates confusion as you develop more complex scripts. Const MyString = "This is my string." Const MyAge = 19 Const CutoffDate = #6-1-97#

VBScript Operators VBScript has a full range of operators, including arithmetic operators, comparison operators, concatenation operators, and logical operators. When several operations occur in an expression, each part is evaluated and resolved in a predetermined order called operator precedence. You can use parentheses to override the order of precedence and force some parts of an expression to be evaluated before others. Operations within parentheses are always performed before those outside.

VBScript Operators When expressions contain operators from more than one category, arithmetic operators are evaluated first, comparison operators are evaluated next, and logical operators are evaluated last. Comparison operators all have equal precedence; that is, they are evaluated in the left-to-right order in which they appear. Arithmetic and logical operators are evaluated in the following order of precedence.

VBScript Operators Arithmetic Operators Exponentation operator Symbol : ^ Description: Raises a number to the power of an exponent. Syntax: result = number^exponent Note: If either number or exponent is a Null expression, result is also Null. Substraction operator Symbol : - Description: Finds the difference between two numbers or indicates the negative value of a numeric expression. Syntax: result = number1-number2 : -number Note: If one or both expressions are Null expressions, result is Null. If an expression is Empty, it is treated as if it were 0.

VBScript Operators Arithmetic Operators Multiplication operator Symbol : * Description: Multiplies two numbers. Syntax: result = number1*number2 If one or both expressions are Null expressions, result is Null. If an expression is Empty, it is treated as if it were 0. Division operator Symbol : / Description: Divides two numbers and returns a floating-point result. Syntax: result = number1/number2 Note: If one or both expressions are Null expressions, result is Null. If an expression is Empty, it is treated as if it were 0.

VBScript Operators Arithmetic Operators Integer Division operator Symbol : \ Description: Divides two numbers and returns an integer result. Syntax: result = number1\number2 Note: Before division is performed, numeric expressions are rounded to Byte, Integer, or Long subtype expressions. If any expression is Null, result is also Null. Any expression that is Empty is treated as 0.

VBScript Operators Arithmetic Operators Modulus arithmetic operator Symbol : Mod Description: Divides two numbers and returns only the remainder. Syntax: result = number1 Mod number2 Notes: The modulus, or remainder, operator divides number1 by number2 (rounding floating-point numbers to integers) and returns only the remainder as result. If any expression is Null, result is also Null. Any expression that is Empty is treated as 0.

VBScript Operators Arithmetic Operators Addition operator Symbol : + Description: Sums two numbers. Syntax: result = number1+number2 Note: Although you can also use the + operator to concatenate two character strings, you should use the & operator for concatenation to eliminate ambiguity and provide self-documenting code.

VBScript Operators Arithmetic Operators Concatenation operator Symbol : & Description: Forces string concatenation of two expressions. Syntax: result = expression1 & expression2 Notes: Whenever an expression is not a string, it is converted to a String subtype. If both expressions are Null, result is also Null. However, if only one expression is Null, that expression is treated as a zero-length string ("") when concatenated with the other expression. Any expression that is Empty is also treated as a zero-length string.

VBScript Operators Comparision Operators Equality and Inequality operators Symbol : =, <, <=, >, >=, <> Description: Used to compare expressions. Syntax: result = expression1 comparisonoperator expression2 Note: When comparing two expressions, you may not be able to easily determine whether the expressions are being compared as numbers or as strings. In operator Symbol : Is Description: Compares two object reference variables. Syntax: result = object1 Is object2 Note: If object1 and object2 both refer to the same object, result is True; if they do not, result is False.

VBScript Operators Logical Operators Logical Conjuction (And) operator Symbol : Not Description: Performs logical negation on an expression. Syntax: result = Not expression If Expression is The result is True False Null

VBScript Operators Logical Operators Logical Conjuction (And) operator Symbol : And Description: Performs a logical conjunction on two expressions. Syntax: result = expression1 And expression2 The result is And expression2 is If expression1 is True False Null

VBScript Operators Logical Operators Logical disjuction (Or) operator Symbol : Or Description: Performs a logical disjunction on two expressions. Syntax: result = expression1 Or expression2 The result is And expression2 is If expression1 is True False Null

VBScript Operators Logical Operators Logical Exclusion (Xor) operator Symbol : Xor Description: Performs a logical exclusion on two expressions. Syntax: result = expression1 Xor expression2 The result is And expression2 is If expression1 is False True