introduction to-programming

4
Introduction to Programming What is Programming ? Programming –deals with the study of computer language What is a Visual Basic? Visual Basic (Vb) – is a tool created by Microsoft to build a computer application in a user-friendly environment that supports Graphical User interface GUI – Graphical User Interface Flowchart – A graphical representation of step by step instructions to solve a problem. Algorithun – A set of step by step instruction to solve a problem. Operator – An enqine used to perform logical and mathematical operations. Variable – A memory storage/container Loop – An action that repeatedly and continuously perform until a certain condition is done.

Upload: markk-stk

Post on 20-Jan-2017

30 views

Category:

Art & Photos


0 download

TRANSCRIPT

Page 1: Introduction to-programming

Introduction to Programming What is Programming ?Programming –deals with the study of computer language What is a Visual Basic?Visual Basic (Vb) – is a tool created by Microsoft to build a computer application in a user-friendly environment that supports Graphical User interface GUI – Graphical User Interface Flowchart – A graphical representation of step by step instructions to solve a problem.Algorithun – A set of step by step instruction to solve a problem.Operator – An enqine used to perform logical and mathematical operations.Variable – A memory storage/containerLoop – An action that repeatedly and continuously perform until a certain condition is done.

Page 2: Introduction to-programming

Operators:1)Arithmetic operators+ Addition- Subtraction* Multiplication]/ Division2.) Relational Operatior> greater than< Less than>= greater than or equal to<= less than or equal to’===or==or= equal to<>or!= not equal to3.) Logical operators|| OR||&& AND

Flowchart Algorithm Variables

Page 3: Introduction to-programming

Preparation ex: 1.) ex: 2.) x=5 x=5 collect materials x=6 x=6 Variable : x,y z = x+y z = x+y Condition : Z = x+y Print ? Is ? less than 100% Yes or No If true , then re-start The operation Is Z less than100? Else is fales Yes or No Display ? Then End the Operation If true, re-sport the Operation Else is false Display result Then End operation

Start

INPUT

Process

Condition

Out put

END