Slide 1 Chapter 3 Variables  A variable is a name for a value stored in memory.  Variables are created using a declaration statement. For example: Dim.

Slides:



Advertisements
Similar presentations
© 2007 Lawrenceville Press Slide 1 Assignment Statement An assignment statement gives a value to a variable. Assignment can take several forms: x = 5;
Advertisements

Chapter 3: Using Variables and Constants Programming with Microsoft Visual Basic 2005, Third Edition.
Slide 1 Chapter 4 Assignment Statement An assignment statement gives a value to a variable. Assignment can take several forms: x = 5; a literal (5) is.
Liang, Introduction to Java Programming, Sixth Edition, (c) 2005 Pearson Education, Inc. All rights reserved Chapter 2 1 Chapter 2 Primitive.
1.
Primitive Data Types and Operations. Introducing Programming with an Example public class ComputeArea { /** Main method */ public static void main(String[]
An Introduction to Programming with C++ Fifth Edition Chapter 4 Chapter 4: Variables, Constants, and Arithmetic Operators.
An Introduction to Programming with C++ Fifth Edition Chapter 4 Chapter 4: Variables, Constants, and Arithmetic Operators.
Data Types and Operations Programming Fundamentals (Writing Code)Programming Fundamentals (Writing Code)
Chapter 3: Introducing the Microsoft.NET Framework and Visual Basic.NET Visual Basic.NET Programming: From Problem Analysis to Program Design.
Chapter Three Using Variables and Constants Programming with Microsoft Visual Basic th Edition.
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.
Chapter 5 new The Do…Loop Statement
T U T O R I A L  2009 Pearson Education, Inc. All rights reserved. 1 6 Enhancing the Inventory Application Introducing Variables, Memory Concepts and.
Variables and Constants
Programming with Microsoft Visual Basic th Edition CHAPTER THREE USING VARIABLES AND CONSTANTS.
Microsoft Visual Basic 2005 BASICS Lesson 4 Mathematical Operators.
Chapter 4 Variables and Constants. Goals and Objectives 1. Understand simple data types (int, boolean, double). 2. Declare and initialize variables using.
Introduction to Java Applications Part II. In this chapter you will learn:  Different data types( Primitive data types).  How to declare variables?
Chapter 2: Using Data.
Computer Programming TCP1224 Chapter 4 Variables, Constants, and Arithmetic Operators.
Microsoft Visual Basic 2005 CHAPTER 4 Variables and Arithmetic Operations.
Chapter 4 Variables and constants. 4.1 Variables -Use of variables is good programming style -easier to modify -easier for a programmer to understand.
Chapter 6 Sub Procedures
Fundamentals of GUI Programming. Objectives: At the end of the session, you should be able to: describe the guidelines that are used for creating user-friendly.
Microsoft Visual Basic 2005: Reloaded Second Edition Chapter 3 Variables, Constants, Methods, and Calculations.
Chapter 3 Syntax, Errors, and Debugging Fundamentals of Java.
Chapter 2 Variables.
Microsoft Visual Basic 2010: Reloaded Fourth Edition Chapter Three Memory Locations and Calculations.
Chapter 4 Variables and constants. 4.1 Variables -Use of variables is good programming style -easier to modify -easier for a programmer to understand.
Programming with Microsoft Visual Basic 2008 Fourth Edition Chapter Three Using Variables and Constants.
A Simple Java Program //This program prints Welcome to Java! public class Welcome { public static void main(String[] args) { public static void main(String[]
COMP Primitive and Class Types Yi Hong May 14, 2015.
VISUAL C++ PROGRAMMING: CONCEPTS AND PROJECTS Chapter 2A Reading, Processing and Displaying Data (Concepts)
Programming with Microsoft Visual Basic th Edition
Tutorial 3: Using Variables and Constants1 Tutorial 3 Using Variables and Constants.
PROGRAM ESSENTIALS. TOKENS  SMALLEST UNITS OF A PROGRAM LANGUAGE  Special Symbols  Mathematical Operators  Punctuation  Word Symbols  Key Words.
© 2005 Lawrenceville Press Slide 1 Chapter 4 Assignment Statement An assignment statement gives a value to a variable. Assignment can take several forms:
Variables in VB.NET. Variables  A storage location in memory (RAM)  Holds data/information while the program is running  These storage locations can.
Java – Variables and Constants By: Dan Lunney. Declaring Variables All variables must be declared before they can be used A declaration takes the form:
Variables and Expressions Programming Right from the Start with Visual Basic.NET 1/e 7.
Microsoft Visual Basic 2012 CHAPTER FOUR Variables and Arithmetic Operations.
Variables in C Topics  Naming Variables  Declaring Variables  Using Variables  The Assignment Statement Reading  Sections
CMSC 104, Version 8/061L09VariablesInC.ppt Variables in C Topics Naming Variables Declaring Variables Using Variables The Assignment Statement Reading.
Variables and Constants Chapter 4 Review. Declaring Variables A variable is a name for a value stored in memory. Variables and constants are used in programs.
1 1 Chapter 2 Elementary Programming. 2 2 Motivations In the preceding chapter, you learned how to create, compile, and run a Java program. Starting from.
Chapter 4 Chapter 4: Variables, Constants, and Arithmetic Operators.
Making Interactive Programs with Visual Basic .NET
Chapter 4.  Variables – named memory location that stores a value.  Variables allows the use of meaningful names which makes the code easier to read.
Slide 1 Chapter 3 Variables  A variable is a name for a value stored in memory.  Variables are used in programs so that values can be represented with.
© 2006 Lawrenceville Press Slide 1 Chapter 4 Variables  A variable is a name for a value stored in memory.  Variables are created using a declaration.
© 2010 Lawrenceville Press Slide 1 Chapter 5 The Do…Loop Statement  Loop structure that executes a set of statements as long as a condition is true. 
Chapter 2 Variables and Constants. Objectives Explain the different integer variable types used in C++. Declare, name, and initialize variables. Use character.
Chapter 3 Using Variables, Constants, Formatting Mrs. UlshaferSept
Egyptian Language School Computer Department
A variable is a name for a value stored in memory.
Chapter 4 Assignment Statement
An Application Uses Variables to Hold Information So It May Be Manipulated, Used to Manipulate Other Information, or Remembered for Later Use.
Visual Basic Variables
Lecture 3: Operators, Expressions and Type Conversion
Chapter 3 Assignment Statement
Variables and Arithmetic Operations
Numbers.
Unit-1 Introduction to Java
CIS16 Application Development Programming with Visual Basic
Chapter 2 Variables.
CHAPTER FOUR VARIABLES AND CONSTANTS
An Introduction to Programming with C++ Fifth Edition
Chapter 2 Primitive Data Types and Operations
Variables and Constants
Presentation transcript:

Slide 1 Chapter 3 Variables  A variable is a name for a value stored in memory.  Variables are created using a declaration statement. For example: Dim length As Integer  Declaration statements include the keyword Dim, the variable name, and the type. © 2012 EMC Publishing, LLC

Slide 2 Chapter 3 Variable Assignment A variable can store only one value at any time. Dim x As Integer; x = 5; x = 10; x 5 10 © 2012 EMC Publishing, LLC

Slide 3 Chapter 3 Retrieving User Input  Input can be in the form of data typed by the user at run time.  A TextBox object allows users to enter values.  A text box usually displays a prompt to inform the user what type of data is expected. © 2012 EMC Publishing, LLC

Slide 4 Chapter 3 The TextBox Control  (Name) should begin with txt.  Text is what is displayed in the text box. At run time, this property can be used in an assignment statement to retrieve the data typed by the user.  TextAlign sets the alignment of text relative to the text box. © 2012 EMC Publishing, LLC

Slide 5 Chapter 3 The Val() Function  A function performs a single, well-defined task and returns a value.  Val() is used to convert text box data to a numeric value.  Val() requires a string and then returns a number corresponding to the string. For example: Dim height As Integer height = Val("62 cm.")'height = 62 height = Val("33")'height = 33 height = Val(Me.txtHeight.Text) © 2012 EMC Publishing, LLC

Slide 6 Chapter 3 Built-In Data Types TypeUsed For Integer whole numbers Double numbers with a decimal portion Decimal currency values Date dates Char individual characters String a set of characters Boolean true/false, on/off, yes/no values © 2012 EMC Publishing, LLC

Slide 7 Chapter 3 Type Conversion In an assignment statement, Visual Basic automatically converts data to match the type of the variable it is being assigned to. For example: Dim x As Integer x = 6.7'x assigned 7 © 2012 EMC Publishing, LLC

Slide 8 Chapter 3 Variable Scope © 2012 EMC Publishing, LLC

Slide 9 Chapter 3 Integer Division Integer division ( \ ) truncates the decimal portion of the quotient. Only the integer portion of the quotient is returned: © 2012 EMC Publishing, LLC

Slide 10 Chapter 3 Modulus Division Modulus division returns the remainder of a division operation: © 2012 EMC Publishing, LLC

Slide 11 Chapter 3 Named Constants  A constant is a name for a memory location that stores a value that cannot be changed from its initial assignment.  Constants are created using a declaration statement. For example: Const PI As Double = 3.14  Constant identifiers are typically all uppercase with an underscore ( _ ) separating words within the identifier name. © 2012 EMC Publishing, LLC

Slide 12 Chapter 3 Visual Basic Keywords AndDimFalseLongReturn BooleanDoFinallyMeSelect ByteDoubleForModShort CallEachFriendModuleSingle CaseElseFunctionNewStatic CatchElseIfGetNotStop ConstEndHandlesNothingString DateEnumIfObjectStructure DecimalEraseInOrSub DeclareErrorIntegerPrivateThen DefaultEventIsProtectedTo DelegateExitLikePublicTrue © 2012 EMC Publishing, LLC

Slide 13 Chapter 3 Programming Errors  Syntax errors violate the rules of Visual Basic.  Logic errors, also called semantic errors, occur in statements that are syntactically correct, but produce undesired or unexpected results.  Run-time errors, also called exceptions, halt program execution at the statement that cannot be executed. © 2012 EMC Publishing, LLC

Slide 14 Chapter 3 The Visual Basic Debugger © 2012 EMC Publishing, LLC

Slide 15 Chapter 3 Application Deployment © 2012 EMC Publishing, LLC

Slide 16 Chapter 3 Code Conventions  Variable identifiers should begin with a lowercase letter and any word after the first within the identifier should begin with an uppercase letter. (camel case)  Group variables together in the same declarations only when variables represent related items.  Use a blank line after a group of declarations to make it clear where declarations end.  Use a descriptive prompt next to a text box to tell the user what kind of input is expected. © 2012 EMC Publishing, LLC

Slide 17 Chapter 3 Code Conventions (cont.)  Choose data types that appropriate for the type of data being represented.  Declare variables so that their scope is limited to where they are needed.  Constant identifiers should be all uppercase with underscore characters separating words.  Group constant declarations before variable declarations. © 2012 EMC Publishing, LLC