VISUAL BASIC – CHAPTER ONE NOTES An Introduction to Visual Basic

Slides:



Advertisements
Similar presentations
CHAPTER 2 GC101 Program’s algorithm 1. COMMUNICATING WITH A COMPUTER  Programming languages bridge the gap between human thought processes and computer.
Advertisements

Chapter 1 - VB 2008 by Schneider1 Chapter 1 - An Introduction to Computers and Problem Solving 1.1 An Introduction to Computers 1.2 Windows, Folders, and.
Chapter 1 - An Introduction to Computers and Problem Solving
Chapter 2 - Problem Solving
Chapter 2- Visual Basic Schneider1 Chapter 2 Problem Solving.
Chapter 2 - Problem Solving
Al-Karma Language School Computer Department Prep. 3.
© Janice Regan Problem-Solving Process 1. State the Problem (Problem Specification) 2. Analyze the problem: outline solution requirements and design.
Programming Tools Flowcharts Pseudocode Algorithm Chapter 2.
Computers: Tools for an Information Age
Chapter 2: Input, Processing, and Output
Java Programming, 3e Concepts and Techniques Chapter 1 An Introduction to Java and Program Design.
Chapter 2: Developing a Program Extended and Concise Prelude to Programming Concepts and Design Copyright © 2003 Scott/Jones, Inc.. All rights reserved.
Chapter 2- Visual Basic Schneider1 Chapter 2 Problem Solving.
Chapter 3 Planning Your Solution
Copyright © 2007 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Extended Prelude to Programming Concepts & Design, 3/e by Stewart Venit and.
Microsoft Visual Basic 2005 CHAPTER 1 Introduction to Visual Basic 2005 Programming.
Chapter 1 Introduction to Computers and C++ Programming.
Java Programming, 2E Introductory Concepts and Techniques Chapter 1 An Introduction to Java and Program Design.
1 Chapter 1 - An Introduction to Computers and Problem Solving 1.1 An Introduction to Computers 1.2 Windows, Folders, and Files 1.3 Program Development.
CSE 1340 Introduction to Computing Concepts Class 2.
Extended Prelude to Programming Concepts & Design, 3/e by Stewart Venit and Elizabeth Drake Chapter 2: Developing a Program.
TMF1013 : Introduction To Computing Lecture 1 : Fundamental of Computer ComputerFoudamentals.
1 Nassau Community CollegeProf. Vincent Costa Acknowledgements: An Introduction to Programming Using Visual Basic 2012, All Rights ReservedAn Introduction.
Chapter 11 An Introduction to Visual Basic 2008 Why Windows and Why Visual Basic How You Develop a Visual Basic Application The Different Versions of Visual.
Programming Concepts Chapter 3.
Describe the Program Development Cycle. Program Development Cycle The program development cycle is a series of steps programmers use to build computer.
IXA 1234 : C++ PROGRAMMING CHAPTER 1. PROGRAMMING LANGUAGE Programming language is a computer program that can solve certain problem / task Keyword: Computer.
Chapter 11 An Introduction to Visual Basic 2005 Why Windows and Why Visual Basic How You Develop a Visual Basic Application The Different Versions of Visual.
The basics of the programming process The development of programming languages to improve software development Programming languages that the average user.
1 Program Planning and Design Important stages before actual program is written.
Structured Programming (4 Credits)
Chapter 14 Programming and Languages McGraw-Hill/Irwin Copyright © 2008 by The McGraw-Hill Companies, Inc. All rights reserved.
Chapter Topics 2.1 Designing a Program 2.2 Output, Input, and Variables 2.3 Variable Assignment and Calculations 2.4 Variable Declarations and Data Types.
Chapter 2 - VB 2005 by Schneider- modified by S. Jane '081 Chapter 2 - Problem Solving 2.1 Program Development Cycle 2.2 Programming Tools.
Problem-solving with Computers. 2Outline  Computer System  5 Steps for producing a computer program  Structured program and programming  3 types of.
Chapter 2- Visual Basic Schneider1 Chapter 2 Problem Solving.
Introduction to Computer Programming using Fortran 77.
Evolution of C and C++ n C was developed by Dennis Ritchie at Bell Labs (early 1970s) as a systems programming language n C later evolved into a general-purpose.
How Computers Solve Problems Computers also use Algorithms to solve problems, and change data into information Computers can only perform one simple step.
Microsoft Visual Basic 2012: Reloaded Fifth Edition Chapter One An Introduction to Visual Basic 2012.
Chapter 2- Visual Basic Schneider1 Chapter 2 Problem Solving.
Introduction to Problem Solving Programming is a problem solving activity. When you write a program, you are actually writing an instruction for the computer.
Visual Basic.NET Comprehensive Concepts and Techniques Chapter 1 An Introduction to Visual Basic.NET and Program Design.
Victoria Ibarra Mat:  Generally, Computer hardware is divided into four main functional areas. These are:  Input devices Input devices  Output.
 Problem Analysis  Coding  Debugging  Testing.
Chapter One Problem Solving
ICS 3UI - Introduction to Computer Science
Chapter 1 – Introduction to Computers, the Internet, and the Web
Introduction to Programming and Visual Basic
CSCI-235 Micro-Computer Applications
Computer Programming.
Introduction to Visual Basic 2008 Programming
2008/09/22: Lecture 6 CMSC 104, Section 0101 John Y. Park
Chapter 2: Input, Processing, and Output
1. Introduction to Visual Basic
Chapter Topics 2.1 Designing a Program 2.2 Output, Input, and Variables 2.3 Variable Assignment and Calculations 2.4 Variable Declarations and Data Types.
An Introduction to Visual Basic .NET and Program Design
Microsoft Visual Basic 2005 BASICS
Assembler, Compiler, Interpreter
Chapter 1 Introduction(1.1)
CSC128 FUNDAMENTALS OF COMPUTER PROBLEM SOLVING
Chapter 2- Visual Basic Schneider
Introduction to Systems Analysis and Design Stefano Moshi Memorial University College System Analysis & Design BIT
Assembler, Compiler, Interpreter
Chapter 2: Input, Processing, and Output
Chapter 10: Compilers and Language Translation
Computer Programming-1 CSC 111
Presentation transcript:

VISUAL BASIC – CHAPTER ONE NOTES An Introduction to Visual Basic VISUAL BASIC – CHAPTER ONE NOTES An Introduction to Visual Basic .NET and Program Design INTRODUCTION A ___________________________________ is a step-by-step series of instructions. ____________________________________________ is the process of writing these instructions. ____________________________________, or ___________________________________________, design and write programs. An __________________________________ is a collection of one or more programs. _____________________________________________________ is the process of writing applications. WHAT IS MICROSOFT VISUAL BASIC .NET? ____________________________ is a programming environment that allows you to build programs for the Windows operating system or any system that supports Microsoft’s .NET architecture VB.NET is based on the ____________________________________________________________. Evolved from BASIC (Beginner’s All-purpose Symbolic Instruction Code PROGRAMMING AND APPLICATION DEVELOPMENT _________________________________ _________________________________: -- This is how a computer processes information and it consists of four basic steps: ___________________________________________________________ APPLICATION TYPES – WHAT KIND OF THINGS CAN YOU MAKE WITH VB.NET? _______________________ THE DEVELOPMENT CYCLE – HOW DO YOU CREATE A PROGRAM? Phase 1 – ____________________________________________ Verify the requirements are complete Make the initial determination that it is possible to solve the problem using a program List _______________________and _____________________ data required Determine whether the input data is available for testing Ensure that the information provided explains how to convert the input data into output data so that a solution, or algorithm, can be developed

VISUAL BASIC – CHAPTER ONE NOTES An Introduction to Visual Basic VISUAL BASIC – CHAPTER ONE NOTES An Introduction to Visual Basic .NET and Program Design Phase 2 – _____________________________________ Develop a logical model that illustrates the sequence of steps you will take to solve the problem __________________________ are smaller pieces of a program _________________________ – illustrates the attributes and methods of an object ______________________ -- values that determine, for example, the appearance of an object. ______________________ -- instructions the object uses to generate output or perform actions. ___________________________ graphically represent the logic used to develop an algorithm _____________________________, included in flowcharts, allow the programmer to specify the code that will execute only if a condition is met _____________________________ expresses the step-by-step instructions using keywords and depicts logical groupings or structures using indentation Phase 3 – ______________________________________ Validate, or check, the program design Step through the solution with test data Compare the program design with the original requirements Phase 4 – ______________________________________ Write the code that translates the design into a program Create the user interface Create comments, or notes, within the code that explains the purpose of the code Test the code as it is written THIS IS WHERE IT GETS FUN! You tried to write a program … does it work? Does it do what you wanted it to do? Is it user-friendly? Phase 5 – ______________________________________ Test plan Test cases Make sure to set boundary values Phase 6 – ______________________________________ Includes the requirements documents, program design documents, user interface documents, and documentation of the code Code should be archived electronically OBJECT-ORIENTED PROGRAMMING AND OBJECT-ORIENTED DESIGN _________________________________________________________ Data and the code that operates on the data are packaged into a single unit called an object Represents the logical plan of a program as a set of interactions among objects and operations

VISUAL BASIC – CHAPTER ONE NOTES An Introduction to Visual Basic VISUAL BASIC – CHAPTER ONE NOTES An Introduction to Visual Basic .NET and Program Design Flowcharting 101: SHAPE DEFINITION