SlideShare une entreprise Scribd logo
1  sur  33
PROGRAMMING FOR ENGINEERS
By: MUBAREK KURT
INTRODUCTION TO COMPUTER AND
PROGRAMMING
Chapter 1:
WHAT IS PROGRAMMING?
• A set of instruction given to computer for
executing certain tasks
• Using computer language such as C++,
Fortran,Cobol etc
• Language comes with rules
• A commercial program is called a software
BASIC STRUCTURE OF A
PROGRAM
• 3 main stages: input of data, Processing of data
and producing results.
Data input
Data
processing
Producing
result
Arithmatic
Solution
Logical
Operation
WHY PROGRAMMING IS
IMPORTANT?
• We give difficult or easy tasks to computer to be
executed.
• Problem solving in shorter time.
• Software may not be available.
• It’s money saving if you developed your own
software.
• To increase your copetency as an engineer.
WHY C++?
• Old language such as C do have its specialty but also
contain weaknesses.
• Its specialty is as the pioneer language, many
softwares are written using this language.
• Its weakness is it uses structural programming.
• C++ is an object oriented programming (OOP).
• Thus C++ has been the main computer language in
the world.
COMPUTER
COMPONENTS
• HARDWARE
• SOFTWARE
COMPUTER
LANGUAGES
1. Machine language
2. Assembly language
3. High level language
MACHINE LANGUAGE
• Machine language is a combination of binary
digit 1 and 0.
• Every number, letter and symbols can be
translated to binary code.
• In computer programming, number, letter
and symbols is called character.
• Main standard of conversion is theAmerican
Standard Code for Information Interchange
(ASCII).
• In ASCII, there are 128 character, numbeed
between 0 to 127 and this number is
converted to binary number.
MACHINE LANGUAGE
Positions Character Binary number in
ASCII
Binary number in
Machine language
0 Null 0000000 00000000
1 SOTT 0000001 00000001
65 A 1000001 01000001
136 { 1111011 01111011
127 DEL 1111111 01111111
ASSEMBLY
LANGUAGE
• Assembly language is also called low level language
• Contain pneumonic codes that have special
meaning . For example, addition of 2 numbers to
become the third number is
ADD N1, N2, N3
• The meaning of codes is machine dependent.
HIGHER LEVEL
LANGUAGE
• Machine language that hss been standardly coded
• The language is like spoken language such as in english,
japan and france.
• There are more than 100 higher level language. Eg:
1. FORTRAN - FORmula TRANslation
2. C
3. C++ - Object oriented programming
4. BASIC - Beginning All-purpose Symbolic Instruction
Code
5. COBOL - Common Business Oriented Language
6. Java- Internet based language developed by
SunMicrosystem
7. C#. Similar to Java, developed by Microsoft Inc.
HIGHER LEVEL
LANGUAGE
• Command to computer is easily given.
• For example, in C++, to add 2 numbers and
keeping the answer,
hasilTambah = no1 + no2;
• However computer will not understand this
language. It needs a compiler to translate the
language to machine language.
APPLICATION PROCESS IN
C++
Source codes
Preprocessor
Modified source-code
Compiler
No error
Object codes
Linker
Executable codes
Library
DEVELOPING A
PROGRAM
Analyzing
the problem
Program Design
using
Algorithm
Conversion to
Program
Flow-chart Pseudo-code
ANALYZING THE
PROBLEM
• At this stage, think about the required:
1. Input
2. Output
3. Process
• Example: To develop a program to calculate
a circumference of a circle, give the radius
• Problem analyzing stage:
1. Input: Media – Keyboard
Data – a radius
2. Output: Media – Screen
Data – Circumference
3. Process: Circ = 2 x PAI x Radius
ALGORITHM
• Algorithm is a step by step procedure of
solving a problem.
– In the design stage.
– No algorithm No program  No
solution.
– Independent of computer language
(use your own language)
ALGORITHM
• What is needed in an algorithm
– input
– output
– Correct sequence: first comes first
– Simple/easy/non-confusing
– In general form-understood by any
readers
– Accurate in solving problem
– Finite – has an end
– Efficient
• Types: Pseudocodes, flow-chart etc
ALGORITHM
• 3 forms of algorithm:
1. Sequential
2. Control: decision making
3. Control : repeated solution
ALGORITHM
1. Sequential algorithm
Start
Step 1
:
Step n
End
2. Controlled algorithm: making decision
if condition then
true part
else
false part
endif
ALGORITHM
• 3. Controlled algotithm: Repeated solution
• While condition do
• Repeated part
• or
• Repeat n times
• Repeated part
ALGORITHM-
PSEUDOCODES
• Sequential steps written in own
language
• Each line is numbered.
• Each line represent 1 step, to be
executed only one time.
• It can be:
– In own language form totally
– In a mixed of own language and
programming language
ALGORITHM-
PSEUDOCODES
• Example: Sequential algorithm
• Pseudocode in own language
1. Start
2. Read (input) the radius
3. Circumference=2xxradius
4. Write the circumference
5. End
• Notice: The pseudocodes is numbered
and in sequence.
ALGORITHM-
PSEUDOCODES
• Pseudocode in mixed language
1. Start
2. cin the radius
3. Circumference=2xxradius
4. cout the circumference
5. End
DECISION MAKING
ALGORITHM
• Pseudocodes : making decision
1. Start
2. Read (input) the radius
3. if radius < 0 then
3a. Write circumference cannot be calculated
3b. Stop
4. Else
4a. Circumference=2xPAIxradius
4b. Write circumference
5. Endif
6. End
DECISION MAKING
ALGORITHM
• Pseudocodes : repeated solution-to
repeat radius input
1. Start
2. Read (input) the radius
3. Circumference=2xPAIxradius
4. Read yes or no to repeat
5. While yes to repeat
do 5a. Go to 2
5. End
FLOW-CHART
• Flow-chart contains boxes/symbols that
represent required operations and
arrows to show the sequence.
• Symbols:
– terminal (start, end)
– process (assign value, arithmatic
operation, etc)
– Input/ output
FLOW-CHART
– Document printing
– Decision making
– Loop (FOR)
– To continue on the same page
– To continue on different page
– Subrutine/ function
FLOW-CHART
Sequential flow-chart
Start
Read radius
Calculate
Circumference=2xpaixradius
Write circumference
End
FLOW-CHART
Decision
making flow-
chart
Calculate
Circumference=2xpaixradius
false
Start
Read radius
End
true
Radius<0
Write circumference
Flow-chart
for
repeated
solution
Start
Calculate
Circumference=2xpaixradius
Write circumference
Continue?
no
END
yes
Read radius
Read intention
to repeat
QUIZ
The second step before developing a program is
.
ASSIGNMENT 1
What is a flow-chart?

Contenu connexe

Tendances (20)

Compilers and interpreters
Compilers and interpretersCompilers and interpreters
Compilers and interpreters
 
Programming languages,compiler,interpreter,softwares
Programming languages,compiler,interpreter,softwaresProgramming languages,compiler,interpreter,softwares
Programming languages,compiler,interpreter,softwares
 
C++ programming languages lectures
C++ programming languages lectures C++ programming languages lectures
C++ programming languages lectures
 
Ppt 1
Ppt 1Ppt 1
Ppt 1
 
Programming Fundamentals and Programming Languages Concepts
Programming Fundamentals and Programming Languages ConceptsProgramming Fundamentals and Programming Languages Concepts
Programming Fundamentals and Programming Languages Concepts
 
Intro To Programming Concepts
Intro To Programming ConceptsIntro To Programming Concepts
Intro To Programming Concepts
 
Interpreted and compiled language
Interpreted and compiled languageInterpreted and compiled language
Interpreted and compiled language
 
Computer
ComputerComputer
Computer
 
Cmp2412 programming principles
Cmp2412 programming principlesCmp2412 programming principles
Cmp2412 programming principles
 
Basic Computer Programming
Basic Computer ProgrammingBasic Computer Programming
Basic Computer Programming
 
Unit 1. Problem Solving with Computer
Unit 1. Problem Solving with Computer   Unit 1. Problem Solving with Computer
Unit 1. Problem Solving with Computer
 
Programming
ProgrammingProgramming
Programming
 
The Programming Process
The Programming ProcessThe Programming Process
The Programming Process
 
Chapter 5
Chapter 5Chapter 5
Chapter 5
 
Programming in c
Programming in cProgramming in c
Programming in c
 
Compiler vs interpreter
Compiler vs interpreterCompiler vs interpreter
Compiler vs interpreter
 
Introduction to programming
Introduction to programmingIntroduction to programming
Introduction to programming
 
Lec 1 intro
Lec 1 introLec 1 intro
Lec 1 intro
 
notes on Programming fundamentals
notes on Programming fundamentals notes on Programming fundamentals
notes on Programming fundamentals
 
compiler vs interpreter
compiler vs interpretercompiler vs interpreter
compiler vs interpreter
 

En vedette

التقرير الدوري حول حالة المجتمع المدني بتونس للثلاثية الأولى لسنة 2016
التقرير الدوري حول حالة المجتمع المدني بتونس للثلاثية الأولى لسنة 2016التقرير الدوري حول حالة المجتمع المدني بتونس للثلاثية الأولى لسنة 2016
التقرير الدوري حول حالة المجتمع المدني بتونس للثلاثية الأولى لسنة 2016Hamdi Mohame Fadhel
 
R. Villano - Cd influenza diffusione h1 n1 in Italia
R. Villano - Cd influenza   diffusione h1 n1 in ItaliaR. Villano - Cd influenza   diffusione h1 n1 in Italia
R. Villano - Cd influenza diffusione h1 n1 in ItaliaRaimondo Villano
 
Quarry business Plan
Quarry business PlanQuarry business Plan
Quarry business PlanAbdi Hussein
 
活動二 - 啟航吧!卡密絲崔號
活動二 - 啟航吧!卡密絲崔號活動二 - 啟航吧!卡密絲崔號
活動二 - 啟航吧!卡密絲崔號學次方教育設計
 
Project Narrative for Juvenile Re-Entry Grant
Project Narrative for Juvenile Re-Entry GrantProject Narrative for Juvenile Re-Entry Grant
Project Narrative for Juvenile Re-Entry GrantCereta Gibbons
 
Build a Product Narrative
Build a Product NarrativeBuild a Product Narrative
Build a Product NarrativeSV.CO
 
تحليل بناء قدرات منظمات المجتمع المدني اليمنية
تحليل بناء قدرات منظمات المجتمع المدني اليمنيةتحليل بناء قدرات منظمات المجتمع المدني اليمنية
تحليل بناء قدرات منظمات المجتمع المدني اليمنيةCivil confederacy for peace & protection
 
الميثاق الجماعي
الميثاق الجماعيالميثاق الجماعي
الميثاق الجماعيOURAHOU Mohamed
 

En vedette (9)

Grandes inventos de la edad moderna
Grandes inventos de la edad moderna Grandes inventos de la edad moderna
Grandes inventos de la edad moderna
 
التقرير الدوري حول حالة المجتمع المدني بتونس للثلاثية الأولى لسنة 2016
التقرير الدوري حول حالة المجتمع المدني بتونس للثلاثية الأولى لسنة 2016التقرير الدوري حول حالة المجتمع المدني بتونس للثلاثية الأولى لسنة 2016
التقرير الدوري حول حالة المجتمع المدني بتونس للثلاثية الأولى لسنة 2016
 
R. Villano - Cd influenza diffusione h1 n1 in Italia
R. Villano - Cd influenza   diffusione h1 n1 in ItaliaR. Villano - Cd influenza   diffusione h1 n1 in Italia
R. Villano - Cd influenza diffusione h1 n1 in Italia
 
Quarry business Plan
Quarry business PlanQuarry business Plan
Quarry business Plan
 
活動二 - 啟航吧!卡密絲崔號
活動二 - 啟航吧!卡密絲崔號活動二 - 啟航吧!卡密絲崔號
活動二 - 啟航吧!卡密絲崔號
 
Project Narrative for Juvenile Re-Entry Grant
Project Narrative for Juvenile Re-Entry GrantProject Narrative for Juvenile Re-Entry Grant
Project Narrative for Juvenile Re-Entry Grant
 
Build a Product Narrative
Build a Product NarrativeBuild a Product Narrative
Build a Product Narrative
 
تحليل بناء قدرات منظمات المجتمع المدني اليمنية
تحليل بناء قدرات منظمات المجتمع المدني اليمنيةتحليل بناء قدرات منظمات المجتمع المدني اليمنية
تحليل بناء قدرات منظمات المجتمع المدني اليمنية
 
الميثاق الجماعي
الميثاق الجماعيالميثاق الجماعي
الميثاق الجماعي
 

Similaire à INTRODUCTION TO C++, Chapter 1

Similaire à INTRODUCTION TO C++, Chapter 1 (20)

week 2 - INTRO TO PROGRAMMING.pptx
week 2 - INTRO TO PROGRAMMING.pptxweek 2 - INTRO TO PROGRAMMING.pptx
week 2 - INTRO TO PROGRAMMING.pptx
 
Introduction_to_Programming.pptx
Introduction_to_Programming.pptxIntroduction_to_Programming.pptx
Introduction_to_Programming.pptx
 
Introduction to Computer Programming
Introduction to Computer ProgrammingIntroduction to Computer Programming
Introduction to Computer Programming
 
CHAPTER-1.ppt
CHAPTER-1.pptCHAPTER-1.ppt
CHAPTER-1.ppt
 
Ic lecture8
Ic lecture8 Ic lecture8
Ic lecture8
 
Compilers.pptx
Compilers.pptxCompilers.pptx
Compilers.pptx
 
Programming Paradigm & Languages
Programming Paradigm & LanguagesProgramming Paradigm & Languages
Programming Paradigm & Languages
 
Programming Paradigm & Languages
Programming Paradigm & LanguagesProgramming Paradigm & Languages
Programming Paradigm & Languages
 
Algorithmic problem sloving
Algorithmic problem slovingAlgorithmic problem sloving
Algorithmic problem sloving
 
Program Logic and Design
Program Logic and DesignProgram Logic and Design
Program Logic and Design
 
Python-unit -I.pptx
Python-unit -I.pptxPython-unit -I.pptx
Python-unit -I.pptx
 
Algorithms and flow charts
Algorithms and flow chartsAlgorithms and flow charts
Algorithms and flow charts
 
01CHAP_1.PPT
01CHAP_1.PPT01CHAP_1.PPT
01CHAP_1.PPT
 
Chapter 4 computer language
Chapter 4 computer languageChapter 4 computer language
Chapter 4 computer language
 
sege.pdf
sege.pdfsege.pdf
sege.pdf
 
Introduction to computer programming
Introduction to computer programming Introduction to computer programming
Introduction to computer programming
 
Languages in computer
Languages in computerLanguages in computer
Languages in computer
 
programming.pptx
programming.pptxprogramming.pptx
programming.pptx
 
INTRO. TO PROG.pptx
INTRO. TO PROG.pptxINTRO. TO PROG.pptx
INTRO. TO PROG.pptx
 
C Programming Lecture 1 - Introduction to C.pptx
C Programming Lecture 1 - Introduction to C.pptxC Programming Lecture 1 - Introduction to C.pptx
C Programming Lecture 1 - Introduction to C.pptx
 

Plus de Mubarek Kurt

Water flow from plastic bottles through pin hole t, engineering math 2 project
Water flow  from plastic bottles through pin hole t, engineering math 2 projectWater flow  from plastic bottles through pin hole t, engineering math 2 project
Water flow from plastic bottles through pin hole t, engineering math 2 projectMubarek Kurt
 
Electrical Power Systems 3 phase apparatus
Electrical Power Systems 3 phase apparatusElectrical Power Systems 3 phase apparatus
Electrical Power Systems 3 phase apparatusMubarek Kurt
 
Electrical Power Systems Induction motor
Electrical Power Systems Induction motorElectrical Power Systems Induction motor
Electrical Power Systems Induction motorMubarek Kurt
 
Electrical Power Systems Synchronous Generator
Electrical Power Systems Synchronous GeneratorElectrical Power Systems Synchronous Generator
Electrical Power Systems Synchronous GeneratorMubarek Kurt
 
How to Prepare Yourself For Exams
How to Prepare Yourself For ExamsHow to Prepare Yourself For Exams
How to Prepare Yourself For ExamsMubarek Kurt
 
Electromagnetic Spectrum
Electromagnetic SpectrumElectromagnetic Spectrum
Electromagnetic SpectrumMubarek Kurt
 

Plus de Mubarek Kurt (6)

Water flow from plastic bottles through pin hole t, engineering math 2 project
Water flow  from plastic bottles through pin hole t, engineering math 2 projectWater flow  from plastic bottles through pin hole t, engineering math 2 project
Water flow from plastic bottles through pin hole t, engineering math 2 project
 
Electrical Power Systems 3 phase apparatus
Electrical Power Systems 3 phase apparatusElectrical Power Systems 3 phase apparatus
Electrical Power Systems 3 phase apparatus
 
Electrical Power Systems Induction motor
Electrical Power Systems Induction motorElectrical Power Systems Induction motor
Electrical Power Systems Induction motor
 
Electrical Power Systems Synchronous Generator
Electrical Power Systems Synchronous GeneratorElectrical Power Systems Synchronous Generator
Electrical Power Systems Synchronous Generator
 
How to Prepare Yourself For Exams
How to Prepare Yourself For ExamsHow to Prepare Yourself For Exams
How to Prepare Yourself For Exams
 
Electromagnetic Spectrum
Electromagnetic SpectrumElectromagnetic Spectrum
Electromagnetic Spectrum
 

Dernier

data_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdfdata_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdfJiananWang21
 
Hostel management system project report..pdf
Hostel management system project report..pdfHostel management system project report..pdf
Hostel management system project report..pdfKamal Acharya
 
Introduction to Serverless with AWS Lambda
Introduction to Serverless with AWS LambdaIntroduction to Serverless with AWS Lambda
Introduction to Serverless with AWS LambdaOmar Fathy
 
A Study of Urban Area Plan for Pabna Municipality
A Study of Urban Area Plan for Pabna MunicipalityA Study of Urban Area Plan for Pabna Municipality
A Study of Urban Area Plan for Pabna MunicipalityMorshed Ahmed Rahath
 
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdf
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdfONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdf
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdfKamal Acharya
 
Generative AI or GenAI technology based PPT
Generative AI or GenAI technology based PPTGenerative AI or GenAI technology based PPT
Generative AI or GenAI technology based PPTbhaskargani46
 
22-prompt engineering noted slide shown.pdf
22-prompt engineering noted slide shown.pdf22-prompt engineering noted slide shown.pdf
22-prompt engineering noted slide shown.pdf203318pmpc
 
KubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghlyKubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghlysanyuktamishra911
 
COST-EFFETIVE and Energy Efficient BUILDINGS ptx
COST-EFFETIVE  and Energy Efficient BUILDINGS ptxCOST-EFFETIVE  and Energy Efficient BUILDINGS ptx
COST-EFFETIVE and Energy Efficient BUILDINGS ptxJIT KUMAR GUPTA
 
Thermal Engineering-R & A / C - unit - V
Thermal Engineering-R & A / C - unit - VThermal Engineering-R & A / C - unit - V
Thermal Engineering-R & A / C - unit - VDineshKumar4165
 
Call Girls In Bangalore ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Bangalore ☎ 7737669865 🥵 Book Your One night StandCall Girls In Bangalore ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Bangalore ☎ 7737669865 🥵 Book Your One night Standamitlee9823
 
notes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.pptnotes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.pptMsecMca
 
UNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its PerformanceUNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its Performancesivaprakash250
 
Thermal Engineering Unit - I & II . ppt
Thermal Engineering  Unit - I & II . pptThermal Engineering  Unit - I & II . ppt
Thermal Engineering Unit - I & II . pptDineshKumar4165
 
University management System project report..pdf
University management System project report..pdfUniversity management System project report..pdf
University management System project report..pdfKamal Acharya
 
Bhosari ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For ...
Bhosari ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For ...Bhosari ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For ...
Bhosari ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For ...tanu pandey
 
chapter 5.pptx: drainage and irrigation engineering
chapter 5.pptx: drainage and irrigation engineeringchapter 5.pptx: drainage and irrigation engineering
chapter 5.pptx: drainage and irrigation engineeringmulugeta48
 

Dernier (20)

data_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdfdata_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdf
 
Hostel management system project report..pdf
Hostel management system project report..pdfHostel management system project report..pdf
Hostel management system project report..pdf
 
Introduction to Serverless with AWS Lambda
Introduction to Serverless with AWS LambdaIntroduction to Serverless with AWS Lambda
Introduction to Serverless with AWS Lambda
 
A Study of Urban Area Plan for Pabna Municipality
A Study of Urban Area Plan for Pabna MunicipalityA Study of Urban Area Plan for Pabna Municipality
A Study of Urban Area Plan for Pabna Municipality
 
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdf
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdfONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdf
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdf
 
Generative AI or GenAI technology based PPT
Generative AI or GenAI technology based PPTGenerative AI or GenAI technology based PPT
Generative AI or GenAI technology based PPT
 
22-prompt engineering noted slide shown.pdf
22-prompt engineering noted slide shown.pdf22-prompt engineering noted slide shown.pdf
22-prompt engineering noted slide shown.pdf
 
Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar ≼🔝 Delhi door step de...
Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar  ≼🔝 Delhi door step de...Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar  ≼🔝 Delhi door step de...
Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar ≼🔝 Delhi door step de...
 
KubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghlyKubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghly
 
COST-EFFETIVE and Energy Efficient BUILDINGS ptx
COST-EFFETIVE  and Energy Efficient BUILDINGS ptxCOST-EFFETIVE  and Energy Efficient BUILDINGS ptx
COST-EFFETIVE and Energy Efficient BUILDINGS ptx
 
Thermal Engineering-R & A / C - unit - V
Thermal Engineering-R & A / C - unit - VThermal Engineering-R & A / C - unit - V
Thermal Engineering-R & A / C - unit - V
 
Call Girls In Bangalore ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Bangalore ☎ 7737669865 🥵 Book Your One night StandCall Girls In Bangalore ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Bangalore ☎ 7737669865 🥵 Book Your One night Stand
 
notes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.pptnotes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.ppt
 
UNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its PerformanceUNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its Performance
 
(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7
(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7
(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7
 
Thermal Engineering Unit - I & II . ppt
Thermal Engineering  Unit - I & II . pptThermal Engineering  Unit - I & II . ppt
Thermal Engineering Unit - I & II . ppt
 
University management System project report..pdf
University management System project report..pdfUniversity management System project report..pdf
University management System project report..pdf
 
Bhosari ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For ...
Bhosari ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For ...Bhosari ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For ...
Bhosari ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For ...
 
chapter 5.pptx: drainage and irrigation engineering
chapter 5.pptx: drainage and irrigation engineeringchapter 5.pptx: drainage and irrigation engineering
chapter 5.pptx: drainage and irrigation engineering
 
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort ServiceCall Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
 

INTRODUCTION TO C++, Chapter 1