SlideShare ist ein Scribd-Unternehmen logo
1 von 118
 
Chapter 3 More Flow of Control Copyright © 2008 Pearson Addison-Wesley.  All rights reserved.
Overview ,[object Object],[object Object],[object Object],[object Object],Slide 3-
Flow Of Control ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Slide 3-
3.1 Using Boolean Expressions Copyright © 2008 Pearson Addison-Wesley.  All rights reserved.
Using Boolean Expressions ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Slide 3-
[object Object],[object Object],Evaluating Boolean Expressions Slide 3-  Display 3.1 ! (  false  | |  true  ) ! (  true  ) false
Order of Precedence ,[object Object],[object Object],[object Object],[object Object],[object Object],Slide 3-
[object Object],[object Object],[object Object],[object Object],Precedence Rules Slide 3-  Display 3.2
Precedence Rule Example ,[object Object],[object Object],[object Object],Slide 3-
Evaluating  x + 1 > 2 | | x + 1 < - 3 ,[object Object],[object Object],[object Object],[object Object],[object Object],Slide 3-
Short-Circuit Evaluation ,[object Object],[object Object],[object Object],[object Object],Slide 3-
Using Short-Circuit Evaluation ,[object Object],[object Object],[object Object],[object Object],Slide 3-
Type bool and Type int ,[object Object],[object Object],[object Object],Slide 3-
Problems with ! ,[object Object],[object Object],[object Object],[object Object],[object Object],Slide 3-
Correcting the ! Problem ,[object Object],Slide 3-
Avoiding ! ,[object Object],[object Object],Slide 3-
bool Return Values ,[object Object],[object Object],[object Object],[object Object],[object Object],Slide 3-
Function appropriate ,[object Object],Slide 3-
Enumeration Types (Optional) ,[object Object],[object Object],[object Object],Slide 3-
Default enum Values ,[object Object],[object Object],Slide 3-
Enumeration Values ,[object Object],[object Object],[object Object],Slide 3-
Section 7.1 Conclusion ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Slide 3-
3.2 Multiway Branches Copyright © 2008 Pearson Addison-Wesley.  All rights reserved.
Multiway Branches ,[object Object],[object Object],[object Object],[object Object],Slide 3-
[object Object],[object Object],[object Object],Nested Statements Slide 3-  indented Display 3.3
Nested if-else Statements ,[object Object],[object Object],Slide 3-
First Try  Nested if's ,[object Object],[object Object],[object Object],Slide 3-
[object Object],[object Object],[object Object],[object Object],Braces and Nested Statements Slide 3-  Display 3.4
Multi-way if-else-statements ,[object Object],[object Object],[object Object],Slide 3-
Number Guessing  ,[object Object],[object Object],Slide 3-
Indenting Nested if-else ,[object Object],[object Object],Slide 3-
The Final if-else-statement ,[object Object],[object Object],[object Object],Slide 3-
Nested if-else Syntax ,[object Object],[object Object],Slide 3-
[object Object],Program Example: State Income Tax Slide 3-  Display 3.5 (1) Display 3.5 (2)
Refining if-else-statements ,[object Object],[object Object],Slide 3-
[object Object],[object Object],[object Object],[object Object],[object Object],The switch-statement Slide 3-  Display 3.6 (1) Display 3.6 (2)
switch-statement Syntax ,[object Object],Slide 3-
The Controlling Statement ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Slide 3-
The break Statement ,[object Object],[object Object],[object Object],[object Object],[object Object],Slide 3-
The default Statement ,[object Object],[object Object],[object Object],Slide 3-
[object Object],[object Object],[object Object],Switch-statements and Menus Slide 3-  Display 3.7 (1) Display 3.7 (2)
Function Calls in Branches ,[object Object],[object Object],[object Object],Slide 3-
[object Object],[object Object],[object Object],[object Object],[object Object],Blocks Slide 3-  Display 3.8 (1) Display 3.8 (2)
Statement Blocks ,[object Object],[object Object],[object Object],[object Object],Slide 3-
Scope Rule for Nested Blocks ,[object Object],[object Object],[object Object],Slide 3-
Section 3.2 Conclusion ,[object Object],[object Object],Slide 3-
3.3 More About C++ Loop Statements Copyright © 2008 Pearson Addison-Wesley.  All rights reserved.
More About  C++ Loop Statements ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Slide 3-
[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],while and do-while Slide 3-  Display 3.9
The Increment Operator ,[object Object],[object Object],[object Object],Slide 3-
number++ vs ++number ,[object Object],[object Object],[object Object],[object Object],[object Object],Slide 3-
[object Object],[object Object],++ Comparisons Slide 3-  Display 3.10
The Decrement Operator ,[object Object],[object Object],[object Object],Slide 3-
The for-Statement ,[object Object],[object Object],[object Object],[object Object],Slide 3-
for/while Loop Comparison ,[object Object],[object Object],Slide 3-
[object Object],[object Object],For Loop Dissection Slide 3-  Initialization Action Boolean Expression Update Action
[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],for Loop Alternative Slide 3-  Display 3.11
for-loop Details ,[object Object],[object Object],[object Object],[object Object],Slide 3-
[object Object],[object Object],[object Object],[object Object],[object Object],The for-loop Body Slide 3-  Display 3.13
The Empty Statement ,[object Object],[object Object],[object Object],Slide 3-
Extra Semicolon ,[object Object],[object Object],[object Object],[object Object],Slide 3-
Local Variable Standard ,[object Object],[object Object],[object Object],Slide 3-
Which Loop To Use? ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Slide 3-
Choosing a for-loop ,[object Object],Slide 3-
Choosing a while-loop ,[object Object],[object Object],[object Object],Slide 3-
Choosing a do-while Loop ,[object Object],[object Object],[object Object],Slide 3-
[object Object],[object Object],[object Object],[object Object],The break-Statement Slide 3-  Display 3.14
Section 3.3 Conclusion ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Slide 3-
3.4 Designing Loops Copyright © 2008 Pearson Addison-Wesley.  All rights reserved.
Designing Loops ,[object Object],[object Object],[object Object],[object Object],Slide 3-
Sums and Products ,[object Object],[object Object],[object Object],Slide 3-
for-loop for a sum ,[object Object],[object Object],Slide 3-
Repeat &quot;this many times&quot; ,[object Object],[object Object],[object Object],Slide 3-
for-loop For a Product ,[object Object],[object Object],[object Object],Slide 3-
Ending a Loop ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Slide 3-
List Headed By Size ,[object Object],[object Object],Slide 3-
Ask Before Iterating ,[object Object],Slide 3-
List Ended With a Sentinel Value ,[object Object],[object Object],Slide 3-
Running Out of Input ,[object Object],Slide 3-
General Methods To Control Loops ,[object Object],[object Object],[object Object],[object Object],Slide 3-
Count Controlled Loops ,[object Object],[object Object],Slide 3-
Exit on Flag Condition ,[object Object],[object Object],[object Object],[object Object],[object Object],Slide 3-
Exit on Flag Caution ,[object Object],Slide 3-
The Problem ,[object Object],[object Object],[object Object],Slide 3-
The Exit On Flag Solution ,[object Object],Slide 3-
[object Object],[object Object],[object Object],[object Object],Nested Loops Slide 3-  Display 3.15
Debugging Loops ,[object Object],[object Object],[object Object],Slide 3-
Fixing Off By One Errors ,[object Object],[object Object],[object Object],Slide 3-
Fixing Infinite Loops ,[object Object],[object Object],[object Object],Slide 3-
More  Loop Debugging Tips ,[object Object],[object Object],[object Object],[object Object],[object Object],Slide 3-
Debugging Example ,[object Object],Slide 3-
Tracing Variables ,[object Object],Slide 3-
First Fix ,[object Object],[object Object],[object Object],Slide 3-
Second Fix ,[object Object],[object Object],Slide 3-
Loop Testing Guidelines ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Slide 3-
Starting Over ,[object Object],[object Object],[object Object],[object Object],[object Object],Slide 3-
Chapter 3.4 Conclusion ,[object Object],[object Object],[object Object],[object Object],Slide 3-
Chapter 3 -- End Slide 3-
Display 3.1  Slide 3-  Back Next
Display 3.2 Slide 3-  Back Next
Display 3.3 Slide 3-  Back Next
Display 3.4 Slide 3-  Back Next
Display 3.5 (1/2) Slide 3-  Back Next
Display 3.5 (2/2) Slide 3-  Back Next
Display 3.6  (1/2) Slide 3-  Back Next
Display 3.6  (2/2) Slide 3-  Back Next
Display 3.7  (1/2) Slide 3-  Back Next
Display 3.7  (2/2) Slide 3-  Back Next
Display 3.8  (1/2) Slide 3-  Next Back
Display 3.8  (2/2) Slide 3-  Back Next
Display 3.9 Slide 3-  Back Next
Display 3.10 Slide 3-  Next Back
Display 3.11 Slide 3-  Back Next
Display 3.12 Slide 3-  Back Next
Display 3.13 Slide 3-  Back Next
Display 3.14 Slide 3-  Back Next
Display 3.15 Slide 3-  Next Back

Weitere ähnliche Inhalte

Was ist angesagt? (19)

Cprogrammingprogramcontrols
CprogrammingprogramcontrolsCprogrammingprogramcontrols
Cprogrammingprogramcontrols
 
Line Search Techniques by Fibonacci Search
Line Search Techniques by Fibonacci SearchLine Search Techniques by Fibonacci Search
Line Search Techniques by Fibonacci Search
 
Linear algebra in the dirac notation
Linear algebra in the dirac notationLinear algebra in the dirac notation
Linear algebra in the dirac notation
 
Token and operators
Token and operatorsToken and operators
Token and operators
 
Lar calc10 ch03_sec3
Lar calc10 ch03_sec3Lar calc10 ch03_sec3
Lar calc10 ch03_sec3
 
Ch05 Visual Aids
Ch05 Visual AidsCh05 Visual Aids
Ch05 Visual Aids
 
Algorithm Designs - Control Structures
Algorithm Designs - Control StructuresAlgorithm Designs - Control Structures
Algorithm Designs - Control Structures
 
M C6java7
M C6java7M C6java7
M C6java7
 
Overview of C Language
Overview of C LanguageOverview of C Language
Overview of C Language
 
Presentation1
Presentation1Presentation1
Presentation1
 
C Constructs (C Statements & Loop)
C Constructs (C Statements & Loop)C Constructs (C Statements & Loop)
C Constructs (C Statements & Loop)
 
Python breakdown-workbook
Python breakdown-workbookPython breakdown-workbook
Python breakdown-workbook
 
C Programming Interview Questions
C Programming Interview QuestionsC Programming Interview Questions
C Programming Interview Questions
 
Lar calc10 ch01_sec4
Lar calc10 ch01_sec4Lar calc10 ch01_sec4
Lar calc10 ch01_sec4
 
Control structure
Control structureControl structure
Control structure
 
1 Revision Tour
1 Revision Tour1 Revision Tour
1 Revision Tour
 
C Programming Assignment
C Programming AssignmentC Programming Assignment
C Programming Assignment
 
Savitch ch 08
Savitch ch 08Savitch ch 08
Savitch ch 08
 
Applications of boolean algebra minterm and maxterm expansions
Applications of boolean algebra minterm and maxterm expansionsApplications of boolean algebra minterm and maxterm expansions
Applications of boolean algebra minterm and maxterm expansions
 

Andere mochten auch (20)

Savitch Ch 17
Savitch Ch 17Savitch Ch 17
Savitch Ch 17
 
Savitch Ch 14
Savitch Ch 14Savitch Ch 14
Savitch Ch 14
 
Savitch Ch 07
Savitch Ch 07Savitch Ch 07
Savitch Ch 07
 
Savitch Ch 12
Savitch Ch 12Savitch Ch 12
Savitch Ch 12
 
Savitch Ch 10
Savitch Ch 10Savitch Ch 10
Savitch Ch 10
 
Savitch ch 022
Savitch ch 022Savitch ch 022
Savitch ch 022
 
Savitch Ch 06
Savitch Ch 06Savitch Ch 06
Savitch Ch 06
 
Savitch Ch 13
Savitch Ch 13Savitch Ch 13
Savitch Ch 13
 
Savitch Ch 01
Savitch Ch 01Savitch Ch 01
Savitch Ch 01
 
Savitch Ch 11
Savitch Ch 11Savitch Ch 11
Savitch Ch 11
 
Savitch Ch 02
Savitch Ch 02Savitch Ch 02
Savitch Ch 02
 
Savitch Ch 18
Savitch Ch 18Savitch Ch 18
Savitch Ch 18
 
Savitch ch 16
Savitch ch 16Savitch ch 16
Savitch ch 16
 
Savitch c++ ppt figs ch1
Savitch c++ ppt figs ch1Savitch c++ ppt figs ch1
Savitch c++ ppt figs ch1
 
Savitch Ch 08
Savitch Ch 08Savitch Ch 08
Savitch Ch 08
 
Savitch ch 04
Savitch ch 04Savitch ch 04
Savitch ch 04
 
Savitch Ch 15
Savitch Ch 15Savitch Ch 15
Savitch Ch 15
 
Savitch ch 01
Savitch ch 01Savitch ch 01
Savitch ch 01
 
Savitch Ch 05
Savitch Ch 05Savitch Ch 05
Savitch Ch 05
 
Savitch Ch 04
Savitch Ch 04Savitch Ch 04
Savitch Ch 04
 

Ähnlich wie Savitch Ch 03

Control Structures
Control StructuresControl Structures
Control StructuresGhaffar Khan
 
Python unit 2 M.sc cs
Python unit 2 M.sc csPython unit 2 M.sc cs
Python unit 2 M.sc csKALAISELVI P
 
Java căn bản - Chapter6
Java căn bản - Chapter6Java căn bản - Chapter6
Java căn bản - Chapter6Vince Vo
 
[C++][a] tutorial 2
[C++][a] tutorial 2[C++][a] tutorial 2
[C++][a] tutorial 2yasir_cesc
 
Java căn bản - Chapter5
Java căn bản - Chapter5Java căn bản - Chapter5
Java căn bản - Chapter5Vince Vo
 
Python for Machine Learning
Python for Machine LearningPython for Machine Learning
Python for Machine LearningStudent
 
Code Tuning
Code TuningCode Tuning
Code Tuningbgtraghu
 
Lec16.pptx problem specifications computer
Lec16.pptx problem specifications computerLec16.pptx problem specifications computer
Lec16.pptx problem specifications computersamiullahamjad06
 
Ecs 10 programming assignment 4 loopapalooza
Ecs 10 programming assignment 4   loopapaloozaEcs 10 programming assignment 4   loopapalooza
Ecs 10 programming assignment 4 loopapaloozaJenniferBall44
 
Understanding F# Workflows
Understanding F# WorkflowsUnderstanding F# Workflows
Understanding F# Workflowsmdlm
 
Chapter 4 flow control structures and arrays
Chapter 4 flow control structures and arraysChapter 4 flow control structures and arrays
Chapter 4 flow control structures and arrayssshhzap
 
C Programing Arithmetic Operators.ppt
C Programing Arithmetic Operators.pptC Programing Arithmetic Operators.ppt
C Programing Arithmetic Operators.pptGAURAVNAUTIYAL19
 
c++ Data Types and Selection
c++ Data Types and Selectionc++ Data Types and Selection
c++ Data Types and SelectionAhmed Nobi
 

Ähnlich wie Savitch Ch 03 (20)

Conditional Statements
Conditional StatementsConditional Statements
Conditional Statements
 
Savitch_ch_03.ppt
Savitch_ch_03.pptSavitch_ch_03.ppt
Savitch_ch_03.ppt
 
Lecture 3
Lecture 3Lecture 3
Lecture 3
 
Control Structures
Control StructuresControl Structures
Control Structures
 
Python unit 2 M.sc cs
Python unit 2 M.sc csPython unit 2 M.sc cs
Python unit 2 M.sc cs
 
Java căn bản - Chapter6
Java căn bản - Chapter6Java căn bản - Chapter6
Java căn bản - Chapter6
 
Control statments in c
Control statments in cControl statments in c
Control statments in c
 
[C++][a] tutorial 2
[C++][a] tutorial 2[C++][a] tutorial 2
[C++][a] tutorial 2
 
Java căn bản - Chapter5
Java căn bản - Chapter5Java căn bản - Chapter5
Java căn bản - Chapter5
 
Pseudocode
PseudocodePseudocode
Pseudocode
 
Python for Machine Learning
Python for Machine LearningPython for Machine Learning
Python for Machine Learning
 
Code Tuning
Code TuningCode Tuning
Code Tuning
 
Lec16.pptx problem specifications computer
Lec16.pptx problem specifications computerLec16.pptx problem specifications computer
Lec16.pptx problem specifications computer
 
Ecs 10 programming assignment 4 loopapalooza
Ecs 10 programming assignment 4   loopapaloozaEcs 10 programming assignment 4   loopapalooza
Ecs 10 programming assignment 4 loopapalooza
 
7 decision-control
7 decision-control7 decision-control
7 decision-control
 
Understanding F# Workflows
Understanding F# WorkflowsUnderstanding F# Workflows
Understanding F# Workflows
 
M C6java5
M C6java5M C6java5
M C6java5
 
Chapter 4 flow control structures and arrays
Chapter 4 flow control structures and arraysChapter 4 flow control structures and arrays
Chapter 4 flow control structures and arrays
 
C Programing Arithmetic Operators.ppt
C Programing Arithmetic Operators.pptC Programing Arithmetic Operators.ppt
C Programing Arithmetic Operators.ppt
 
c++ Data Types and Selection
c++ Data Types and Selectionc++ Data Types and Selection
c++ Data Types and Selection
 

Mehr von 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
 

Mehr von 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
 

Kürzlich hochgeladen

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
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxiammrhaywood
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introductionMaksud Ahmed
 
fourth grading exam for kindergarten in writing
fourth grading exam for kindergarten in writingfourth grading exam for kindergarten in writing
fourth grading exam for kindergarten in writingTeacherCyreneCayanan
 
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
 
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
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactdawncurless
 
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
 
General AI for Medical Educators April 2024
General AI for Medical Educators April 2024General AI for Medical Educators April 2024
General AI for Medical Educators April 2024Janet Corral
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)eniolaolutunde
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...EduSkills OECD
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13Steve Thomason
 
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
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104misteraugie
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfciinovamais
 
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...fonyou31
 

Kürzlich hochgeladen (20)

Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
 
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...
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introduction
 
fourth grading exam for kindergarten in writing
fourth grading exam for kindergarten in writingfourth grading exam for kindergarten in writing
fourth grading exam for kindergarten in writing
 
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"
 
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
 
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
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum 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
 
General AI for Medical Educators April 2024
General AI for Medical Educators April 2024General AI for Medical Educators April 2024
General AI for Medical Educators April 2024
 
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptxINDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)
 
Advance Mobile Application Development class 07
Advance Mobile Application Development class 07Advance Mobile Application Development class 07
Advance Mobile Application Development class 07
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13
 
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
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
 
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
 

Savitch Ch 03