SlideShare a Scribd company logo
1 of 92
 
Chapter  8 Strings and Vectors
Overview ,[object Object],[object Object],[object Object],Slide 8-
8.1 An Array Type for Strings
An Array Type for Strings ,[object Object],[object Object],[object Object],[object Object],[object Object],Slide 8-
C-string Details ,[object Object],[object Object],[object Object],[object Object],[object Object],Slide 8-  s[0] s[1] s[2] s[3] s[4] s[5] s[6] s[7] s[8] s[9] H i M o m !  ? ?
C-string Declaration ,[object Object],[object Object],Slide 8-
Initializing a C-string ,[object Object],[object Object],[object Object],Slide 8-
C-string error ,[object Object],[object Object],Slide 8-
Don't Change '' ,[object Object],[object Object],[object Object],[object Object],Slide 8-
Safer Processing of C-strings ,[object Object],[object Object],Slide 8-
Assignment With C-strings ,[object Object],[object Object],[object Object],Slide 8-
Assignment of C-strings ,[object Object],[object Object],Slide 8-
A Problem With strcpy ,[object Object],[object Object],[object Object],Slide 8-
A Solution for strcpy ,[object Object],[object Object],[object Object],Slide 8-
== Alternative for C-strings ,[object Object],[object Object],[object Object],Slide 8-
strcmp's logic  ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Slide 8-
More C-string Functions ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Slide 8-
The strncat Function ,[object Object],[object Object],[object Object],[object Object],Slide 8-  Display 8.1 (1) Display 8.1 (2)
C-strings as  Arguments and Parameters ,[object Object],[object Object],[object Object],[object Object],Slide 8-
C-string Output ,[object Object],[object Object],Slide 8-
C-string Input ,[object Object],[object Object],[object Object],Slide 8-
Reading an Entire Line ,[object Object],[object Object],[object Object],[object Object],[object Object],Slide 8-
Using getline ,[object Object],[object Object],Slide 8-
getline wrap up ,[object Object],[object Object],[object Object],Slide 8-
getline and Files ,[object Object],[object Object],[object Object],Slide 8-
getline syntax ,[object Object],[object Object],[object Object],Slide 8-
C-String to Numbers ,[object Object],[object Object],[object Object],[object Object],[object Object],Slide 8-
C-strings to Integers ,[object Object],[object Object],[object Object],[object Object],Slide 8-
C-string to long ,[object Object],[object Object],Slide 8-
C-string to double ,[object Object],[object Object],[object Object],Slide 8-
Library cstdlib ,[object Object],[object Object],Slide 8-
Numeric Input ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Slide 8-  Display 8.2 (1) Display 8.2 (2)
Confirming Input ,[object Object],[object Object],[object Object],Slide 8-  Display 8.3 (1) Display 8.3 (2)
Section 8.1 Conclusion ,[object Object],[object Object],[object Object],[object Object],[object Object],Slide 8-
8.2 The Standard  string  Class
The Standard string Class ,[object Object],[object Object],[object Object],[object Object],Slide 8-
Assignment of  Strings ,[object Object],[object Object],[object Object],[object Object],Slide 8-
Using + With strings ,[object Object],[object Object],[object Object],Slide 8-
string Constructors ,[object Object],[object Object],[object Object],Slide 8-
Mixing strings and C-strings ,[object Object],[object Object],Slide 8-  Display 8.4
I/O With Class string ,[object Object],[object Object],[object Object],[object Object],[object Object],Slide 8-
getline and Type string ,[object Object],[object Object],[object Object],[object Object],Slide 8-
getline Example ,[object Object],[object Object],Slide 8-
Character Input With strings ,[object Object],[object Object],[object Object],[object Object],Slide 8-  Display 8.5 (1) Display 8.5 (2)
Another Version of getline ,[object Object],[object Object],[object Object],Slide 8-
getline Returns a Reference ,[object Object],[object Object],[object Object],Slide 8-  returns
getline Declarations ,[object Object],[object Object],[object Object],Slide 8-
Mixing cin >> and getline ,[object Object],[object Object],[object Object],Slide 8-
ignore  ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Slide 8-
String Processing ,[object Object],[object Object],[object Object],[object Object],Slide 8-  Display 8.6
Member Function length ,[object Object],[object Object],Slide 8-
Member Function at ,[object Object],[object Object],[object Object],Slide 8-  Other string class functions are found in  Display 8.7 Equivalent Equivalent
Comparison of strings ,[object Object],[object Object],[object Object],[object Object],[object Object],Slide 8-
Program Example: Palindrome Testing ,[object Object],[object Object],[object Object],[object Object],Slide 8-
Palindrome Testing: remove_punct ,[object Object],[object Object],[object Object],[object Object],Slide 8-
Palindrome Testing: substr ,[object Object],[object Object],[object Object],Slide 8-
Palindrome Testing: The Program ,[object Object],Slide 8-  Display 8.8 (1) Display 8.8 (2) Display 8.8 (4) Display 8.8 (3)
string Objects to C-strings ,[object Object],[object Object],[object Object],[object Object],[object Object],Slide 8-
Converting strings to C-strings ,[object Object],[object Object],[object Object],[object Object],Slide 8-
Section 8.2 Conclusion ,[object Object],[object Object],[object Object],[object Object],[object Object],Slide 8-
8.3 Vectors
Vectors ,[object Object],[object Object],[object Object],[object Object],[object Object],Slide 8-
Accessing vector Elements ,[object Object],[object Object],[object Object],Slide 8-
Initializing vector Elements ,[object Object],[object Object],[object Object],Slide 8-
The size Of A vector ,[object Object],[object Object],Slide 8-
The Type unsigned int ,[object Object],[object Object],[object Object],Slide 8-
Alternate vector Initialization ,[object Object],[object Object],[object Object],[object Object],Slide 8-
Vector Initialization  With Classes ,[object Object],[object Object],[object Object],Slide 8-
The vector Library ,[object Object],[object Object],[object Object],Slide 8-  Display 8.9
vector Issues ,[object Object],[object Object],[object Object],[object Object],Slide 8-
vector Efficiency ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Slide 8-
Controlling vector Capacity ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Slide 8-
Section 8.3 Conclusion ,[object Object],[object Object],[object Object],[object Object],Slide 8-
Chapter 8 -- End Slide 8-
Display 8.1 (1/2) Slide 8-  Back Next
Display 8.1 (2/2) Slide 8-  Back Next
Display 8.2 (1/2) Slide 8-  Back Next
Display 8.2 (2/2) Slide 8-  Back Next
Display 8.3 (1/3) Slide 8-  Back Next
Display 8.3  (2/3) Slide 8-  Back Next
Display 8.3 (3/3) Slide 8-  Back Next
Display 8.4 Slide 8-  Back Next
Display 8.5 (1/2) Slide 8-  Back Next
Display 8.5 (2/2) Slide 8-  Back Next
Display 8.6 Slide 8-  Back Next
Display 8.7 Slide 8-  Back Next
Display 8.8  (1/4) Slide 8-  Next Back
Display 8.8  (2/4) Slide 8-  Back Next
Display 8.8 (3/4) Slide 8-  Next Back
Display 8.8 (4/4) Slide 8-  Next Back
Display 8.9 Slide 8-  Back Next

More Related Content

What's hot

Assignment c programming
Assignment c programmingAssignment c programming
Assignment c programmingIcaii Infotech
 
Strings in c mrs.sowmya jyothi
Strings in c mrs.sowmya jyothiStrings in c mrs.sowmya jyothi
Strings in c mrs.sowmya jyothiSowmya Jyothi
 
function, storage class and array and strings
 function, storage class and array and strings function, storage class and array and strings
function, storage class and array and stringsRai University
 
C programming - String
C programming - StringC programming - String
C programming - StringAchyut Devkota
 
MANAGING INPUT AND OUTPUT OPERATIONS IN C MRS.SOWMYA JYOTHI.pdf
MANAGING INPUT AND OUTPUT OPERATIONS IN C    MRS.SOWMYA JYOTHI.pdfMANAGING INPUT AND OUTPUT OPERATIONS IN C    MRS.SOWMYA JYOTHI.pdf
MANAGING INPUT AND OUTPUT OPERATIONS IN C MRS.SOWMYA JYOTHI.pdfSowmyaJyothi3
 
Introduction to c programming
Introduction to c programmingIntroduction to c programming
Introduction to c programmingSaranyaK68
 
STRINGS IN C MRS.SOWMYA JYOTHI.pdf
STRINGS IN C MRS.SOWMYA JYOTHI.pdfSTRINGS IN C MRS.SOWMYA JYOTHI.pdf
STRINGS IN C MRS.SOWMYA JYOTHI.pdfSowmyaJyothi3
 
Type header file in c++ and its function
Type header file in c++ and its functionType header file in c++ and its function
Type header file in c++ and its functionFrankie Jones
 
CPP Programming Homework Help
CPP Programming Homework HelpCPP Programming Homework Help
CPP Programming Homework HelpC++ Homework Help
 

What's hot (20)

Assignment c programming
Assignment c programmingAssignment c programming
Assignment c programming
 
C++ string
C++ stringC++ string
C++ string
 
Strings in c mrs.sowmya jyothi
Strings in c mrs.sowmya jyothiStrings in c mrs.sowmya jyothi
Strings in c mrs.sowmya jyothi
 
The string class
The string classThe string class
The string class
 
Strings
StringsStrings
Strings
 
Computer Programming- Lecture 5
Computer Programming- Lecture 5 Computer Programming- Lecture 5
Computer Programming- Lecture 5
 
function, storage class and array and strings
 function, storage class and array and strings function, storage class and array and strings
function, storage class and array and strings
 
Arrays and strings in c++
Arrays and strings in c++Arrays and strings in c++
Arrays and strings in c++
 
C++ theory
C++ theoryC++ theory
C++ theory
 
C++
C++C++
C++
 
C programming - String
C programming - StringC programming - String
C programming - String
 
C Programming Assignment
C Programming AssignmentC Programming Assignment
C Programming Assignment
 
C++ programming
C++ programmingC++ programming
C++ programming
 
MANAGING INPUT AND OUTPUT OPERATIONS IN C MRS.SOWMYA JYOTHI.pdf
MANAGING INPUT AND OUTPUT OPERATIONS IN C    MRS.SOWMYA JYOTHI.pdfMANAGING INPUT AND OUTPUT OPERATIONS IN C    MRS.SOWMYA JYOTHI.pdf
MANAGING INPUT AND OUTPUT OPERATIONS IN C MRS.SOWMYA JYOTHI.pdf
 
Introduction to c programming
Introduction to c programmingIntroduction to c programming
Introduction to c programming
 
STRINGS IN C MRS.SOWMYA JYOTHI.pdf
STRINGS IN C MRS.SOWMYA JYOTHI.pdfSTRINGS IN C MRS.SOWMYA JYOTHI.pdf
STRINGS IN C MRS.SOWMYA JYOTHI.pdf
 
Type header file in c++ and its function
Type header file in c++ and its functionType header file in c++ and its function
Type header file in c++ and its function
 
Lecture 05 2017
Lecture 05 2017Lecture 05 2017
Lecture 05 2017
 
CPP Programming Homework Help
CPP Programming Homework HelpCPP Programming Homework Help
CPP Programming Homework Help
 
COm1407: Character & Strings
COm1407: Character & StringsCOm1407: Character & Strings
COm1407: Character & Strings
 

Similar to Savitch ch 08 (20)

Unit 2
Unit 2Unit 2
Unit 2
 
Lecture 15_Strings and Dynamic Memory Allocation.pptx
Lecture 15_Strings and  Dynamic Memory Allocation.pptxLecture 15_Strings and  Dynamic Memory Allocation.pptx
Lecture 15_Strings and Dynamic Memory Allocation.pptx
 
pps unit 3.pptx
pps unit 3.pptxpps unit 3.pptx
pps unit 3.pptx
 
Lecture 6
Lecture 6Lecture 6
Lecture 6
 
Ch09
Ch09Ch09
Ch09
 
C++ Programming Homework Help
C++ Programming Homework HelpC++ Programming Homework Help
C++ Programming Homework Help
 
Lecture 2. mte 407
Lecture 2. mte 407Lecture 2. mte 407
Lecture 2. mte 407
 
Advanced+pointers
Advanced+pointersAdvanced+pointers
Advanced+pointers
 
Chapter1.pptx
Chapter1.pptxChapter1.pptx
Chapter1.pptx
 
C string
C stringC string
C string
 
U4.ppt
U4.pptU4.ppt
U4.ppt
 
introduction to strings in c programming
introduction to strings in c programmingintroduction to strings in c programming
introduction to strings in c programming
 
String notes
String notesString notes
String notes
 
Character Arrays and strings in c language
Character Arrays and strings in c languageCharacter Arrays and strings in c language
Character Arrays and strings in c language
 
Getting started with c++
Getting started with c++Getting started with c++
Getting started with c++
 
Getting started with c++
Getting started with c++Getting started with c++
Getting started with c++
 
Ppt of c vs c#
Ppt of c vs c#Ppt of c vs c#
Ppt of c vs c#
 
Operator overloading
Operator overloading Operator overloading
Operator overloading
 
string in C
string in Cstring in C
string in C
 
String .h
String .hString .h
String .h
 

More from Terry Yoast

9781305078444 ppt ch12
9781305078444 ppt ch129781305078444 ppt ch12
9781305078444 ppt ch12Terry Yoast
 
9781305078444 ppt ch11
9781305078444 ppt ch119781305078444 ppt ch11
9781305078444 ppt ch11Terry Yoast
 
9781305078444 ppt ch10
9781305078444 ppt ch109781305078444 ppt ch10
9781305078444 ppt ch10Terry Yoast
 
9781305078444 ppt ch09
9781305078444 ppt ch099781305078444 ppt ch09
9781305078444 ppt ch09Terry Yoast
 
9781305078444 ppt ch08
9781305078444 ppt ch089781305078444 ppt ch08
9781305078444 ppt ch08Terry Yoast
 
9781305078444 ppt ch07
9781305078444 ppt ch079781305078444 ppt ch07
9781305078444 ppt ch07Terry Yoast
 
9781305078444 ppt ch06
9781305078444 ppt ch069781305078444 ppt ch06
9781305078444 ppt ch06Terry Yoast
 
9781305078444 ppt ch05
9781305078444 ppt ch059781305078444 ppt ch05
9781305078444 ppt ch05Terry Yoast
 
9781305078444 ppt ch04
9781305078444 ppt ch049781305078444 ppt ch04
9781305078444 ppt ch04Terry Yoast
 
9781305078444 ppt ch03
9781305078444 ppt ch039781305078444 ppt ch03
9781305078444 ppt ch03Terry Yoast
 
9781305078444 ppt ch02
9781305078444 ppt ch029781305078444 ppt ch02
9781305078444 ppt ch02Terry Yoast
 
9781305078444 ppt ch01
9781305078444 ppt ch019781305078444 ppt ch01
9781305078444 ppt ch01Terry Yoast
 
9781337102087 ppt ch13
9781337102087 ppt ch139781337102087 ppt ch13
9781337102087 ppt ch13Terry Yoast
 
9781337102087 ppt ch18
9781337102087 ppt ch189781337102087 ppt ch18
9781337102087 ppt ch18Terry Yoast
 
9781337102087 ppt ch17
9781337102087 ppt ch179781337102087 ppt ch17
9781337102087 ppt ch17Terry Yoast
 
9781337102087 ppt ch16
9781337102087 ppt ch169781337102087 ppt ch16
9781337102087 ppt ch16Terry Yoast
 
9781337102087 ppt ch15
9781337102087 ppt ch159781337102087 ppt ch15
9781337102087 ppt ch15Terry Yoast
 
9781337102087 ppt ch14
9781337102087 ppt ch149781337102087 ppt ch14
9781337102087 ppt ch14Terry Yoast
 
9781337102087 ppt ch12
9781337102087 ppt ch129781337102087 ppt ch12
9781337102087 ppt ch12Terry Yoast
 
9781337102087 ppt ch11
9781337102087 ppt ch119781337102087 ppt ch11
9781337102087 ppt ch11Terry Yoast
 

More from Terry Yoast (20)

9781305078444 ppt ch12
9781305078444 ppt ch129781305078444 ppt ch12
9781305078444 ppt ch12
 
9781305078444 ppt ch11
9781305078444 ppt ch119781305078444 ppt ch11
9781305078444 ppt ch11
 
9781305078444 ppt ch10
9781305078444 ppt ch109781305078444 ppt ch10
9781305078444 ppt ch10
 
9781305078444 ppt ch09
9781305078444 ppt ch099781305078444 ppt ch09
9781305078444 ppt ch09
 
9781305078444 ppt ch08
9781305078444 ppt ch089781305078444 ppt ch08
9781305078444 ppt ch08
 
9781305078444 ppt ch07
9781305078444 ppt ch079781305078444 ppt ch07
9781305078444 ppt ch07
 
9781305078444 ppt ch06
9781305078444 ppt ch069781305078444 ppt ch06
9781305078444 ppt ch06
 
9781305078444 ppt ch05
9781305078444 ppt ch059781305078444 ppt ch05
9781305078444 ppt ch05
 
9781305078444 ppt ch04
9781305078444 ppt ch049781305078444 ppt ch04
9781305078444 ppt ch04
 
9781305078444 ppt ch03
9781305078444 ppt ch039781305078444 ppt ch03
9781305078444 ppt ch03
 
9781305078444 ppt ch02
9781305078444 ppt ch029781305078444 ppt ch02
9781305078444 ppt ch02
 
9781305078444 ppt ch01
9781305078444 ppt ch019781305078444 ppt ch01
9781305078444 ppt ch01
 
9781337102087 ppt ch13
9781337102087 ppt ch139781337102087 ppt ch13
9781337102087 ppt ch13
 
9781337102087 ppt ch18
9781337102087 ppt ch189781337102087 ppt ch18
9781337102087 ppt ch18
 
9781337102087 ppt ch17
9781337102087 ppt ch179781337102087 ppt ch17
9781337102087 ppt ch17
 
9781337102087 ppt ch16
9781337102087 ppt ch169781337102087 ppt ch16
9781337102087 ppt ch16
 
9781337102087 ppt ch15
9781337102087 ppt ch159781337102087 ppt ch15
9781337102087 ppt ch15
 
9781337102087 ppt ch14
9781337102087 ppt ch149781337102087 ppt ch14
9781337102087 ppt ch14
 
9781337102087 ppt ch12
9781337102087 ppt ch129781337102087 ppt ch12
9781337102087 ppt ch12
 
9781337102087 ppt ch11
9781337102087 ppt ch119781337102087 ppt ch11
9781337102087 ppt ch11
 

Recently uploaded

Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxNirmalaLoungPoorunde1
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactPECB
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdfSoniaTolstoy
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Krashi Coaching
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxheathfieldcps1
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfsanyamsingh5019
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Celine George
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationnomboosow
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphThiyagu K
 
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...Marc Dusseiller Dusjagr
 
How to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxHow to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxmanuelaromero2013
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingTechSoup
 
Privatization and Disinvestment - Meaning, Objectives, Advantages and Disadva...
Privatization and Disinvestment - Meaning, Objectives, Advantages and Disadva...Privatization and Disinvestment - Meaning, Objectives, Advantages and Disadva...
Privatization and Disinvestment - Meaning, Objectives, Advantages and Disadva...RKavithamani
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxSayali Powar
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdfQucHHunhnh
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)eniolaolutunde
 
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptxContemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptxRoyAbrique
 

Recently uploaded (20)

Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptx
 
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global Impact
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
 
Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptx
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdf
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communication
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot Graph
 
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
 
How to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxHow to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptx
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy Consulting
 
Privatization and Disinvestment - Meaning, Objectives, Advantages and Disadva...
Privatization and Disinvestment - Meaning, Objectives, Advantages and Disadva...Privatization and Disinvestment - Meaning, Objectives, Advantages and Disadva...
Privatization and Disinvestment - Meaning, Objectives, Advantages and Disadva...
 
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdfTataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)
 
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptxContemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
 

Savitch ch 08