Download presentation
Presentation is loading. Please wait.
Published byArron Wade Modified over 8 years ago
1
Higher Computing Software Development -So Far- 5/10/10
2
ADITDEM Analysis – Program Specification Design – Pseduocode, Top down design, Bottom up Implementation – Visual Basic, Scratch Testing – Normal, Extreme & Exceptional Documentation – User guide, Technical guide Evaluation – Robust……….. Maintenance – Perfective, Corrective……
3
String Handling Concatenation – Joining strings together & Left, right, mid, Len function vbCrLf – new line on a string
4
Variables String – Text, numbers not used for calculation Numeric –Integer – whole numbers –Single – Real numbers –Boolean – true/false Array – a list of any data type Variant – data type that is not defined, its is created “on the fly” by VB Option Explicit – Gets rid of variant data types DIM – set up a variable
5
Selection Simple – IF with one comparator Complex – IF with more than one comparator and logic operator Else and ELIF – allows for changes in comparison SELECT CASE – Simplifies IF..ELIF..ELSE
6
Unconditional Loops Iteration (repetition) that happens a specific number of times. Nesting for loops For Length = 1 to 10 For Breadth = 1 to 10 Area = length * breadth Next
7
Conditional Loops Do...Loop Until –Loops until a condition is met –Must be executed at least once! –Condition is checked at the bottom Do While…Loop –Loops while condition is true –May never be executed if condition is false –Condition is checked at the top
Similar presentations
© 2024 SlidePlayer.com. Inc.
All rights reserved.