Introduction to Video Game Programming (VGP) Mr. Shultz.

Slides:



Advertisements
Similar presentations
Introduction to Video Game Programming (VGP) Mr. Shultz.
Advertisements

VBA for MS Excel Hamze Msheik. Open the Visual Basic Editor in Excel 2007 Click on the Microsoft Office button in the top left of the Excel window and.
File Handling Advanced Higher Programming. What is a file? Up until now, any stored data within a program is lost when the program closes. A file is a.
Information Technology Fundamentals (ITF) Mr. Shultz.
Variables in VB Keeping Track. Variables Variables are named places in the computer memory that hold information. Variables hold only a single value at.
CVEV 118/698 Visual Basic Lecture 1 Prof. Mounir Mabsout Expert 1: Elsa Sulukdjian Expert 2: Walid El Asmar.
Chapter 31 Fundamentals of Programming in VB(Continue I) Numbers Arithmetic Operations Variables Incrementing the Value of a Variable.
Manipulating Strings.
Introduction to Video Game Programming (VGP) Mr. Shultz.
Introduction to Video Game Programming (VGP) Mr. Shultz.
Information Technology Fundamentals (ITF) Mr. Shultz.
Information Technology Fundamentals (ITF) Mr. Shultz.
Today’s Objective(s) and Bell-Ringer Bell-Ringer Assignment 1.No Bell-Ringer today 2.Complete Alice Introduction Guided Notes Objective Using Alice, TSW.
Mr C Johnston ICT Teacher BTEC IT Unit 06 - Lesson 05 Learning To Program.
Class 3 Programming in Visual Basic. Class Objectives Learn about input/output Learn about strings Learn about subroutines Learn about arrays Learn about.
National Diploma Unit 4 Introduction to Software Development Data types, variables and constants.
INTRODUCTION TO KODU PROGRAMMING PGCE IT & CS Steve & Jean.
Programming Examples to Accompany Structure Topic Please use speaker notes for additional information!
Introduction to Video Game Programming (VGP) Mr. Shultz.
Problem Solving with the Sequential Logic Structure Lesson 5 McManusCOP10061.
PL/SQLPL/SQL Oracle10g Developer: PL/SQL Programming Chapter 2 Basic PL/SQL Block Structures.
Information Technology Fundamentals (ITF) Mr. Shultz.
Introduction to Video Game Programming (VGP) Mr. Shultz.
Introduction to Video Game Programming (VGP) Mr. Shultz.
Lesson 6. Python 3.3 Objectives. In this lesson students will learn how to output data to the screen and request input from the user. Students will also.
Information Technology Fundamentals (ITF) Mr. Shultz.
Data Types and Variables. Data Type! Computers are all about Data! Data can be in the form of Text Dates Sounds Pictures.
Information Technology Fundamentals (ITF) Mr. Shultz.
Arrays. Lesson Objectives  To understand what an array is and it’s function  To know how code and array in VB.
Information Technology Fundamentals (ITF) Mr. Shultz.
Information Technology Fundamentals (ITF) Mr. Shultz.
# 1# 1 Using Procedures and Functions What is a procedure? What is a sub procedure (subroutine)? Built-in functions in your code What is a function? CS.
Introduction to Video Game Programming (VGP) Mr. Shultz.
Introduction to Video Game Programming (VGP) Mr. Shultz.
Information Technology Fundamentals (ITF) Mr. Shultz.
Information Technology Fundamentals (ITF) Mr. Shultz.
Introduction to Video Game Programming (VGP) Mr. Shultz.
Introduction to Video Game Programming (VGP) Mr. Shultz.
Introduction to Video Game Programming (VGP) Mr. Shultz.
Information Technology Fundamentals (ITF) Mr. Shultz.
Information Technology Fundamentals (ITF) Mr. Shultz.
Values, Types, and Variables. Values Data Information Numbers Text Pretty much anything.
Slide 1 Controls v Control naming convention –Label: lblName –Command Button: cmdName –Text Box: txtName.
Variables in VB. What is a variable? ► A named memory location that stores a value.
DATA TYPES, VARIABLES AND CONSTANTS. LEARNING OBJECTIVES  Be able to identify and explain the difference between data and information  Be able to identify,
Visual Basic Declaring Variables Dim x as Integer = 0 In the statement above, x is being declared as an Integer (whole number) and is initialised.
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.
Phase 3: Game Creation. Phase 3: Game Creation Outcomes (Slide 1) I can create a flowchart to solve a problem, for example to make a cup of tea. I can.
Introduction to Python Lesson 2a Print and Types.
Welcome to Computer Programming II! Computer Programming II Summer 2015.
VB Script V B S.
what is computer programming?
Input and Output Upsorn Praphamontripong CS 1110
LESSON 4 AIM: Complete the Whack-A-Witch game
Lesson 1 An Introduction
Oracle11g: PL/SQL Programming Chapter 2 Basic PL/SQL Block Structures.
Chapter 4: The Selection Structure
Starter Question In your jotter write the pseudocode to take in two numbers, add them together then display the answer. Declare variables RECEIVE firstNumber.
Microsoft Visual Basic 2005 BASICS
Unit-1 Introduction to Java
ICT Programming Lesson 4:
Intro to Programming Concepts
Introduction to VB programming
Just Basic Lessons 9 Mr. Kalmes.
Just Basic Lessons Mr. Kalmes.
Python 8 Mr. Husch.
Basic 9 Mr. Husch.
Just Basic Lessons 8 Mr. Kalmes.
WRITING AN ALGORITHM, PSEUDOCODE, AND FLOWCHART LESSON 2.
Presentation transcript:

Introduction to Video Game Programming (VGP) Mr. Shultz

Today’s Objective(s) and Bell-Ringer Bell-Ringer Assignment 1.In Visual Basic (VB), what line of code would you type to create a subroutine called “ConvertBoth”? 2.In VB, what Variable Type would you use if you need to store any kind of character, including letters? 3.In VB, what line of code would you type to create a variable called “TempChoice” using the Variable Type Single? Objective Given an online lesson on flowcharts, TSW create a flowchart using a decision with no errors. (BUS )

Bell-Ringer 1. In Visual Basic (VB), what line of code would you type to create a subroutine called “ConvertBoth”? Sub ConvertBoth()

Bell-Ringer 2. In VB, what Variable Type would you use if you need to store any kind of character, including letters? String

Bell-Ringer 3. In VB, what line of code would you type to create a variable called “TempChoice” using the Variable Type Single? Dim TempChoice As Single

Class Work If you haven’t completed the Algorithm, Flowcharting, and Visual Basic lessons and worksheets (in order), do them first Complete the Flowcharting Lesson 2 and worksheet Complete the Visual Basic Lesson 2 and worksheet

Introduction to Video Game Programming (VGP)