© 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.

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.
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.
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
Chapter 3: Using Variables and Constants
Programming with Microsoft Visual Basic th Edition CHAPTER THREE USING VARIABLES AND CONSTANTS.
Tutorial 11 Using and Writing Visual Basic for Applications Code
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.
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.
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.
Variables When programming it is often necessary to store a value for use later on in the program. A variable is a label given to a location in memory.
Data Types and Variables. Data Type! Computers are all about Data! Data can be in the form of Text Dates Sounds Pictures.
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.
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 Hold information that may be manipulated, used to manipulate other information or remembered for later use A storage location in memory (RAM)
Variables in VB.NET. Variables  A storage location in memory (RAM)  Holds data/information while the program is running  These storage locations can.
© 2006 Lawrenceville Press Slide 1 Chapter 6 The Post-Test Do…Loop Statement  Loop structure that executes a set of statements as long as a condition.
Slide 1 Controls v Control naming convention –Label: lblName –Command Button: cmdName –Text Box: txtName.
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.
Addison Wesley is an imprint of © 2011 Pearson Addison-Wesley. All rights reserved. Addison Wesley is an imprint of Chapter 3 Variables and Calculations.
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.
Programming with Microsoft Visual Basic 2012 Chapter 3: Using Variables and Constants.
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.
© 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.
Microsoft Visual Basic 2010 CHAPTER FOUR Variables and Arithmetic Operations.
Egyptian Language School Computer Department
A variable is a name for a value stored in memory.
Chapter 4 Assignment Statement
Visual Basic Variables
Lecture 3: Operators, Expressions and Type Conversion
Variables and Arithmetic Operations
Chapter 3 Assignment Statement
Variables and Arithmetic Operations
Microsoft Visual Basic 2005 BASICS
Numbers.
Unit-1 Introduction to Java
CIS16 Application Development Programming with Visual Basic
CHAPTER FOUR VARIABLES AND CONSTANTS
Chapter 2 Primitive Data Types and Operations
Variables and Constants
Presentation transcript:

© 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 statement. For example: Dim intLength As Integer  Declaration statements include the keyword Dim, the variable name, and the data type.

© 2006 Lawrenceville Press Slide 2 Chapter 4 Variable Assignment A variable can store only one value at any time. Dim x As Integer; x = 5; x = 10; x 5 10

© 2006 Lawrenceville Press Slide 3 Chapter 4 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.

© 2006 Lawrenceville Press Slide 4 Chapter 4 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.  TextChange event is used with a TextBox object to clear a Label object. The event is fired when the user types in the text box.

© 2006 Lawrenceville Press Slide 5 Chapter 4 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 intHeight As Integer intHeight = Val("62 cm.") 'height = 62 intHeight = Val("33")'height = 33 intHeight = Val(Me.txtHeight.Text)

© 2006 Lawrenceville Press Slide 6 Chapter 4 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 and must have a value assigned in the declaration. For example: Const PI As Double = 3.14  Constant identifiers are typically all uppercase with an underscore ( _ ) separating words within the identifier name.

© 2006 Lawrenceville Press Slide 7 Chapter 4 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

© 2006 Lawrenceville Press Slide 8 Chapter 4 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

© 2006 Lawrenceville Press Slide 9 Chapter 4 Variable Scope

© 2006 Lawrenceville Press Slide 10 Chapter 4 Integer Division Integer division ( \ ) truncates the decimal portion of the quotient. Only the integer portion of the quotient is returned:

© 2006 Lawrenceville Press Slide 11 Chapter 4 Modulus Division Modulus division returns the remainder of a division operation:

© 2006 Lawrenceville Press Slide 12 Chapter 4 Visual Basic Keywords AndDimFalseLongReturn BooleanDoFinallyMeSelect ByteDoubleForModShort CallEachFriendModuleSingle CaseElseFunctionNewStatic CatchElseIfGetNotStop ConstEndHandlesNothingString DateEnumIfObjectStructure DecimalEraseInOrSub DeclareErrorIntegerPrivateThen DefaultEventIsProtectedTo DelegateExitLikePublicTrue

© 2006 Lawrenceville Press Slide 13 Chapter 4 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.  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.

© 2006 Lawrenceville Press Slide 14 Chapter 4 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.

© 2006 Lawrenceville Press Slide 15 Chapter 4 The Visual Basic Debugger

© 2006 Lawrenceville Press Slide 16 Chapter 4 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.