SlideShare a Scribd company logo
Introduction to programming
What is programming?
Programming - deals with the study of computerlanguage
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.
Algorithan – A set of step by step instruction to solve a problem.
Operator– An engine used to perform logical and Mathematical operations.
Variable – Amemory storage / container
Loop – An action that repeatedly andcontinuously perform until a certain
condition is done.
Operators
1) Arithmetic operators
+ ➸ Addition
- ➸ Subtraction
* ➸ Multiplication
/ ➸ Division
2) Relational operator
> ➸ greater than
< ➸ less than
>= ➸ greaterthan or equalto
<= ➸ less than or equalto
===or==or= ➸ equalto
<>or!= ➸ not equalto
3) Logical operators
|| ➸ OR
&& ➸ AND
Flowchart Algorithm Variable
Preparation
Collertion of the thing
need Variable X,Y
Z=X+Y
Is Z less than yes or no
If yes then repeat the
input Else if no Display
Result
End the operation
Ex) X=5 Ex:2
X=5 X=6 Y=6 Z=x+y
Z=x+y Condition
Print____Is__less then
100 yes or no If true
then repeatthe
operation Else if false
Display____
Then End the operation
Start
Inpu
t
Process
Conditi
onn
Outp
ut
End

More Related Content

DOCX
hjlhjljkl
DOCX
Introduction to programming
DOCX
Introduction to programming
DOCX
Introduction to programming
DOC
Introduction to-programming
DOCX
Introduction to programming
DOCX
Introduction to programming
DOCX
Introduction to programming
hjlhjljkl
Introduction to programming
Introduction to programming
Introduction to programming
Introduction to-programming
Introduction to programming
Introduction to programming
Introduction to programming

What's hot (15)

DOCX
งานคอมที่1
DOCX
Introduction to programming
DOCX
Introduction to-programming
DOCX
Introduction to programming
DOCX
Introduction to-programming
DOCX
Introduction to-programming
DOCX
Introduction to-programming
DOCX
Introduction to programming
DOCX
Introduction to-programming
DOCX
Introduction to programimg
DOCX
Introduction to-programimg
DOCX
Introduction to programming
DOCX
Introduction to programming
DOCX
Introductionto programming
งานคอมที่1
Introduction to programming
Introduction to-programming
Introduction to programming
Introduction to-programming
Introduction to-programming
Introduction to-programming
Introduction to programming
Introduction to-programming
Introduction to programimg
Introduction to-programimg
Introduction to programming
Introduction to programming
Introductionto programming
Ad

Similar to Introduction to programming per (16)

DOCX
Introduction to programming
DOCX
Introduction to-programming
DOCX
Introduction to-programming
DOCX
Introduction to-programming
DOCX
Introduction to-programming
DOCX
Introduction to-programming
DOCX
Introduction to prorammimg
DOCX
Introduction to-programimg
DOCX
Introduction to programming 2
DOCX
Karn rakamthong m63 no7
DOCX
Karn rakamthong m63 no7
DOCX
Introduction to programming
DOCX
DOCX
งาน
DOCX
Introduction to programming
DOCX
Introduction to programming
Introduction to programming
Introduction to-programming
Introduction to-programming
Introduction to-programming
Introduction to-programming
Introduction to-programming
Introduction to prorammimg
Introduction to-programimg
Introduction to programming 2
Karn rakamthong m63 no7
Karn rakamthong m63 no7
Introduction to programming
งาน
Introduction to programming
Introduction to programming
Ad

Recently uploaded (20)

PDF
Fluorescence-microscope_Botany_detailed content
PPTX
01_intro xxxxxxxxxxfffffffffffaaaaaaaaaaafg
PDF
Introduction to Data Science and Data Analysis
PPTX
iec ppt-1 pptx icmr ppt on rehabilitation.pptx
PPTX
DISORDERS OF THE LIVER, GALLBLADDER AND PANCREASE (1).pptx
PDF
Clinical guidelines as a resource for EBP(1).pdf
PDF
.pdf is not working space design for the following data for the following dat...
PPTX
Data_Analytics_and_PowerBI_Presentation.pptx
PDF
Mega Projects Data Mega Projects Data
PPTX
The THESIS FINAL-DEFENSE-PRESENTATION.pptx
PPTX
Introduction-to-Cloud-ComputingFinal.pptx
PDF
Business Analytics and business intelligence.pdf
PPTX
SAP 2 completion done . PRESENTATION.pptx
PPTX
climate analysis of Dhaka ,Banglades.pptx
PPTX
ALIMENTARY AND BILIARY CONDITIONS 3-1.pptx
PPTX
Microsoft-Fabric-Unifying-Analytics-for-the-Modern-Enterprise Solution.pptx
PPTX
MODULE 8 - DISASTER risk PREPAREDNESS.pptx
PPT
Miokarditis (Inflamasi pada Otot Jantung)
PPTX
STERILIZATION AND DISINFECTION-1.ppthhhbx
Fluorescence-microscope_Botany_detailed content
01_intro xxxxxxxxxxfffffffffffaaaaaaaaaaafg
Introduction to Data Science and Data Analysis
iec ppt-1 pptx icmr ppt on rehabilitation.pptx
DISORDERS OF THE LIVER, GALLBLADDER AND PANCREASE (1).pptx
Clinical guidelines as a resource for EBP(1).pdf
.pdf is not working space design for the following data for the following dat...
Data_Analytics_and_PowerBI_Presentation.pptx
Mega Projects Data Mega Projects Data
The THESIS FINAL-DEFENSE-PRESENTATION.pptx
Introduction-to-Cloud-ComputingFinal.pptx
Business Analytics and business intelligence.pdf
SAP 2 completion done . PRESENTATION.pptx
climate analysis of Dhaka ,Banglades.pptx
ALIMENTARY AND BILIARY CONDITIONS 3-1.pptx
Microsoft-Fabric-Unifying-Analytics-for-the-Modern-Enterprise Solution.pptx
MODULE 8 - DISASTER risk PREPAREDNESS.pptx
Miokarditis (Inflamasi pada Otot Jantung)
STERILIZATION AND DISINFECTION-1.ppthhhbx

Introduction to programming per

  • 1. Introduction to programming What is programming? Programming - deals with the study of computerlanguage 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. Algorithan – A set of step by step instruction to solve a problem. Operator– An engine used to perform logical and Mathematical operations. Variable – Amemory storage / container Loop – An action that repeatedly andcontinuously perform until a certain condition is done.
  • 2. Operators 1) Arithmetic operators + ➸ Addition - ➸ Subtraction * ➸ Multiplication / ➸ Division 2) Relational operator > ➸ greater than < ➸ less than >= ➸ greaterthan or equalto <= ➸ less than or equalto ===or==or= ➸ equalto <>or!= ➸ not equalto 3) Logical operators || ➸ OR
  • 3. && ➸ AND Flowchart Algorithm Variable Preparation Collertion of the thing need Variable X,Y Z=X+Y Is Z less than yes or no If yes then repeat the input Else if no Display Result End the operation Ex) X=5 Ex:2 X=5 X=6 Y=6 Z=x+y Z=x+y Condition Print____Is__less then 100 yes or no If true then repeatthe operation Else if false Display____ Then End the operation Start Inpu t Process Conditi onn Outp ut End