SlideShare a Scribd company logo
Introduction to MapReduce
Masoumeh Rezaei jam
In the name of God
Distributed Systems course
Department of Computer Engineering
University of Tabriz
22th May 2012
Introduction
Mapper s& Reducers
Combiners & Partitioners
Steps of MapReduce
Execution
contents
Conclusion
2/31Introduction to MapReduce
Execution Framework
Introduction
Cloud computing
involves large-scale,
distributed
computations on data
from multiple sources.
MapReduce is a
programming model
as well as a
framework that
supports the model.
it enables to process a
massive volume of
data in parallel with
many low-end
computing nodes.
Introduction to MapReduce 3/31
Introduction (cont.)
The Emergence of
MapReduce
Introduced by Google in
2004 to support simplified
distributed computing on
clusters of computers
Social-networking
services, video-sharing
sites, web-based email
services, and applications
Introduction to MapReduce 4/31
Importance
of
MapReduce
Von Neumann isn't sufficient
Scales to large clusters of machines
Organize computations on clusters
Effective tool for tackling large-data
The model is easy to use
Importance of MapReduce
5/31Introduction to MapReduce
Characteristics
• Main idea of MapReduce
• No race condition, lock contention, etc.
• to focus on data processing strategies
Hide system-level
details from the
developers
• Developer specifies the computation that
needs to be performed
• Execution framework (“runtime”) handles
actual execution
Separating the
“what” from
“how”
• Move processing to the data
• Seamless scalability
Big data
6/31Introduction to MapReduce
MapReduce Overview
 Users specify the computation in terms of a
map and a reduce function.
 The underlying runtime system automatically
parallelizes the computation across large-scale
clusters of machines, handles machine
failures, and schedules inter-machine
communication to make efficient use of the
network and disks.
Introduction to MapReduce 7/31
The Execution Framework
A MapReduce program, consists of code for
mappers and reducers (as well as combiners and
partitioners) together with configuration
parameters
The developer submits the job to the submission
node of a cluster and execution framework (the
“runtime") takes care of everything else: it
transparently handles all other aspects of
distributed code execution, on clusters ranging
from a single node to a few thousand nodes.
Specific responsibilities of Execution
Framework
Scheduling
Data /
code co-
location
Synchronization
Error
and
fault
handling
9/31
Runtime Scheduling Scheme
Nodes
completed
their tasks
assigned
another
Speculative,
redundant
execution
No
execution
plan
achieves
fault
tolerance
11/31Introduction to MapReduce
The mapper is applied to every input key-value pair (split across an
arbitrary number of files) to generate an arbitrary number of
intermediate key-value pairs.
Simplified view of MapReduce
Key-value pairs form the basic data structure in MapReduce.Part of the design of MapReduce algorithms involves
imposing the key-value structure on arbitrary datasets.
web pages: (URLs, the actual HTML content)
graph: (node id, adjacency lists of node)
The reducer is applied to all values associated with the same
intermediate key to generate output key-value pairs.
12/31
TheMapReducemodelconsistsoftwo
primitivefunctions:MapandReduce
Introduction to MapReduce 13/31
Mapper & Reducers
Mappers and Reducers are objects that implement the Map and Reduce
methods, respectively.
A mapper object is a worker initialized for each map task and the Map method is
called on each key-value pair by the execution framework.
if an input is broken down into 400 blocks and there are 40 mappers in a cluster,
the number of map tasks are 400 and the map tasks are executed through 10
waves of task runs.
The situation is similar for the reduce phase: a reducer object is a worker
initialized for each reduce task, and the Reduce method is called once per
intermediate key.
Introduction to MapReduce 14/31
An example of using MapReduce
Input Map Reduce Output
15/31Introduction to MapReduce
PowerPoint has new
layouts that give you
more ways to present
your words, images
and media.
Combiners
Combiners & Partitioners
They are an optimization in MapReduce
that allow for local aggregation before
the shuffle and sort phase.
To perform local aggregation on the
output of each mapper, i.e.,to compute
a local count for a key over all the
documents processed by the mapper.
Perform it to cut down on the number of
intermediate key-value pairs
16/31Introduction to MapReduce
PowerPoint has new
layouts that give you
more ways to present
your words, images
and media.
Partitioners
Combiners & Partitioners (cont.)
They are responsible for dividing
up the intermediate key space
and assigning intermediate
key-value pairs to reducers.
The execution framework uses
this information to copy the data
to the right location during the
shuffle and sort phase.
Simplest partitioner involves computing the
hash value of the key and then taking the
mod of that value with the number of
reducers.
17/31Introduction to MapReduce
ONE TAB TWO TAB FOUR TAB FIVE
Before starting the Map task, an input file is loaded on the
distributed file system.
At loading, the file is partitioned into multiple data blocks with
same size, typically 64MB.
Each block is triplicated to guarantee fault-tolerance.
Steps of MapReduce Execution
18/31Introduction to MapReduce
TWO TAB TWO TAB FOUR TAB FIVE
Each block is then assigned to a mapper.
The mapper applies Map() to each record in the data block.
Steps of MapReduce Execution
19/31Introduction to MapReduce
THREE TAB FOUR TAB FIVE
The intermediate outputs produced by the mappers are then
sorted locally for grouping key-value pairs sharing the same key.
Steps of MapReduce Execution
20/31Introduction to MapReduce
FOUR TAB FOUR TAB FIVE
After local sort, Combine() is optionally applied to perform pre-
aggregation on the grouped key-value pairs,
so that the communication cost of transfer all the intermediate
outputs to reducers is minimized.
Steps of MapReduce Execution
21/31Introduction to MapReduce
FIVE TAB FIVE
The mapped outputs are stored in local disks of the mappers,
partitioned into R, where R is the number of Reduce tasks in the
MR job.
This partitioning is basically done by a hash function, e.g.
hash(key) mod R.
Steps of MapReduce Execution
22/31Introduction to MapReduce
SIX TAB FIVE
When all Map tasks are completed, the MapReduce scheduler
assigns Reduce tasks to workers.
Steps of MapReduce Execution
23/31Introduction to MapReduce
SEVEN
Since all mapped outputs are already partitioned and stored in
local disks, each reducer performs the shuffling by simply pulling
its partition of the mapped outputs from mappers.
Steps of MapReduce Execution
24/31Introduction to MapReduce
EIGHT
A reducer reads the intermediate results and merge them by the
intermediate keys, i.e. key2, so that all values of the same key
are grouped together.
Sometime this grouping is done by external merge-sort.
Steps of MapReduce Execution
25/31Introduction to MapReduce
NINE
Then each reducer applies Reduce() to the intermediate values
for each key2 it encounters.
The output of reducers are stored and triplicated in HDFS.
Steps of MapReduce Execution
26/31Introduction to MapReduce
Introduction to MapReduce
Hadoop Architecture
the single opportunity for global synchronization is the barrier between the map
and reduce phases
Due to that between the map and reduce tasks, the map phase of a job is only as
fast as the slowest map task. Similarly, the completion time of a job is bounded by
the running time of the slowest reduce task.
27/31
MapReduce Execution
the number of Map tasks does not depend on the number of nodes,
but the number of input blocks.
Each block is assigned to a single Map task.
28/31
Complete view of MapReduce
29/31
Conclusion
 In this peresentation, MapReduce as a
programming model for expressing distributed
computations on massive amounts of data
and an execution framework for large-scale
data processing on clusters of commodity
servers was discussed.
 MapReduce can enhance the productivity for
junior developers who lack the experience of
distributed/parallel development.
Introduction to MapReduce 30/31
References
 Jimmy Lin, Chris Dyer, “Data-Intensive Text Processing with MapReduce,”
2010
 R. Buyya, C. Shin Yeo, S. Venugopal, J. Broberg, I. Brandic, “Cloud
computing and emerging IT platforms: Vision, hype, and reality for
delivering computing as the 5th utility,” 2009.
 Kyong-Ha Lee, Yoon-Joon Lee, Hyunsik Choi, Yon Dohn Chung, Bongki
Moon, “Parallel Data Processing with MapReduce: A Survey,” 2011
 B.Thirumala Rao , Dr. L.S.S.Reddy , “Survey on Improved Scheduling in
Hadoop MapReduce in Cloud Environments,” 2011
 Jeffrey Dean, Sanjay Ghemawat , “MapReduce: Simplified Data
Processing on Large Clusters,” 2008
Introduction to MapReduce 31/31
Main map reduce

More Related Content

What's hot

Unit3 MapReduce
Unit3 MapReduceUnit3 MapReduce
Topic 9: MR+
Topic 9: MR+Topic 9: MR+
Topic 9: MR+
Zubair Nabi
 
Assignment of Different-Sized Inputs in MapReduce
Assignment of Different-Sized Inputs in MapReduceAssignment of Different-Sized Inputs in MapReduce
Assignment of Different-Sized Inputs in MapReduce
Shantanu Sharma
 
Map Reduce
Map ReduceMap Reduce
Map Reduce
msgroner
 
Towards Systematic Parallel Programming over MapReduce
Towards Systematic Parallel Programming over MapReduceTowards Systematic Parallel Programming over MapReduce
Towards Systematic Parallel Programming over MapReduce
Yu Liu
 
Mizan: A System for Dynamic Load Balancing in Large-scale Graph Processing
Mizan: A System for Dynamic Load Balancing in Large-scale Graph ProcessingMizan: A System for Dynamic Load Balancing in Large-scale Graph Processing
Mizan: A System for Dynamic Load Balancing in Large-scale Graph Processing
Zuhair khayyat
 
Map-Side Merge Joins for Scalable SPARQL BGP Processing
Map-Side Merge Joins for Scalable SPARQL BGP ProcessingMap-Side Merge Joins for Scalable SPARQL BGP Processing
Map-Side Merge Joins for Scalable SPARQL BGP Processing
Alexander Schätzle
 
MAP REDUCE SLIDESHARE
MAP REDUCE SLIDESHAREMAP REDUCE SLIDESHARE
MAP REDUCE SLIDESHARE
dharanis15
 
What is MapReduce ?
What is MapReduce ?What is MapReduce ?
What is MapReduce ?
ShilpaKrishna6
 
Map reduce (from Google)
Map reduce (from Google)Map reduce (from Google)
Map reduce (from Google)
Sri Prasanna
 
MapReduce
MapReduceMapReduce
MapReduce
Surinder Kaur
 
GRAPH MATCHING ALGORITHM FOR TASK ASSIGNMENT PROBLEM
GRAPH MATCHING ALGORITHM FOR TASK ASSIGNMENT PROBLEMGRAPH MATCHING ALGORITHM FOR TASK ASSIGNMENT PROBLEM
GRAPH MATCHING ALGORITHM FOR TASK ASSIGNMENT PROBLEM
IJCSEA Journal
 
Map reduce in BIG DATA
Map reduce in BIG DATAMap reduce in BIG DATA
Map reduce in BIG DATA
GauravBiswas9
 
Applications of FME in a Consultant Environment
Applications of FME in a Consultant EnvironmentApplications of FME in a Consultant Environment
Applications of FME in a Consultant Environment
Sterling Geo
 
Mapreduce: Theory and implementation
Mapreduce: Theory and implementationMapreduce: Theory and implementation
Mapreduce: Theory and implementation
Sri Prasanna
 
A novel methodology for task distribution
A novel methodology for task distributionA novel methodology for task distribution
A novel methodology for task distribution
ijesajournal
 
Transforming Data into Information: Supporting Dashboards with FME
Transforming Data into Information: Supporting Dashboards with FMETransforming Data into Information: Supporting Dashboards with FME
Transforming Data into Information: Supporting Dashboards with FME
Safe Software
 
sexy maps comes to R - ggplot+ google maps= ggmap #rstats
sexy maps comes to R - ggplot+ google maps= ggmap #rstatssexy maps comes to R - ggplot+ google maps= ggmap #rstats
sexy maps comes to R - ggplot+ google maps= ggmap #rstats
Ajay Ohri
 

What's hot (18)

Unit3 MapReduce
Unit3 MapReduceUnit3 MapReduce
Unit3 MapReduce
 
Topic 9: MR+
Topic 9: MR+Topic 9: MR+
Topic 9: MR+
 
Assignment of Different-Sized Inputs in MapReduce
Assignment of Different-Sized Inputs in MapReduceAssignment of Different-Sized Inputs in MapReduce
Assignment of Different-Sized Inputs in MapReduce
 
Map Reduce
Map ReduceMap Reduce
Map Reduce
 
Towards Systematic Parallel Programming over MapReduce
Towards Systematic Parallel Programming over MapReduceTowards Systematic Parallel Programming over MapReduce
Towards Systematic Parallel Programming over MapReduce
 
Mizan: A System for Dynamic Load Balancing in Large-scale Graph Processing
Mizan: A System for Dynamic Load Balancing in Large-scale Graph ProcessingMizan: A System for Dynamic Load Balancing in Large-scale Graph Processing
Mizan: A System for Dynamic Load Balancing in Large-scale Graph Processing
 
Map-Side Merge Joins for Scalable SPARQL BGP Processing
Map-Side Merge Joins for Scalable SPARQL BGP ProcessingMap-Side Merge Joins for Scalable SPARQL BGP Processing
Map-Side Merge Joins for Scalable SPARQL BGP Processing
 
MAP REDUCE SLIDESHARE
MAP REDUCE SLIDESHAREMAP REDUCE SLIDESHARE
MAP REDUCE SLIDESHARE
 
What is MapReduce ?
What is MapReduce ?What is MapReduce ?
What is MapReduce ?
 
Map reduce (from Google)
Map reduce (from Google)Map reduce (from Google)
Map reduce (from Google)
 
MapReduce
MapReduceMapReduce
MapReduce
 
GRAPH MATCHING ALGORITHM FOR TASK ASSIGNMENT PROBLEM
GRAPH MATCHING ALGORITHM FOR TASK ASSIGNMENT PROBLEMGRAPH MATCHING ALGORITHM FOR TASK ASSIGNMENT PROBLEM
GRAPH MATCHING ALGORITHM FOR TASK ASSIGNMENT PROBLEM
 
Map reduce in BIG DATA
Map reduce in BIG DATAMap reduce in BIG DATA
Map reduce in BIG DATA
 
Applications of FME in a Consultant Environment
Applications of FME in a Consultant EnvironmentApplications of FME in a Consultant Environment
Applications of FME in a Consultant Environment
 
Mapreduce: Theory and implementation
Mapreduce: Theory and implementationMapreduce: Theory and implementation
Mapreduce: Theory and implementation
 
A novel methodology for task distribution
A novel methodology for task distributionA novel methodology for task distribution
A novel methodology for task distribution
 
Transforming Data into Information: Supporting Dashboards with FME
Transforming Data into Information: Supporting Dashboards with FMETransforming Data into Information: Supporting Dashboards with FME
Transforming Data into Information: Supporting Dashboards with FME
 
sexy maps comes to R - ggplot+ google maps= ggmap #rstats
sexy maps comes to R - ggplot+ google maps= ggmap #rstatssexy maps comes to R - ggplot+ google maps= ggmap #rstats
sexy maps comes to R - ggplot+ google maps= ggmap #rstats
 

Viewers also liked

Why hadoop map reduce needs scala, an introduction to scoobi and scalding
Why hadoop map reduce needs scala, an introduction to scoobi and scaldingWhy hadoop map reduce needs scala, an introduction to scoobi and scalding
Why hadoop map reduce needs scala, an introduction to scoobi and scalding
Xebia Nederland BV
 
Pig, Making Hadoop Easy
Pig, Making Hadoop EasyPig, Making Hadoop Easy
Pig, Making Hadoop Easy
Nick Dimiduk
 
Integration of Hive and HBase
Integration of Hive and HBaseIntegration of Hive and HBase
Integration of Hive and HBase
Hortonworks
 
Hive Quick Start Tutorial
Hive Quick Start TutorialHive Quick Start Tutorial
Hive Quick Start Tutorial
Carl Steinbach
 
Seminar Presentation Hadoop
Seminar Presentation HadoopSeminar Presentation Hadoop
Seminar Presentation Hadoop
Varun Narang
 
Hadoop introduction , Why and What is Hadoop ?
Hadoop introduction , Why and What is  Hadoop ?Hadoop introduction , Why and What is  Hadoop ?
Hadoop introduction , Why and What is Hadoop ?
sudhakara st
 
Hadoop Overview & Architecture
Hadoop Overview & Architecture  Hadoop Overview & Architecture
Hadoop Overview & Architecture
EMC
 
Big data ppt
Big  data pptBig  data ppt
Big data ppt
Nasrin Hussain
 
What is Big Data?
What is Big Data?What is Big Data?
What is Big Data?
Bernard Marr
 
Big Data Analytics with Hadoop
Big Data Analytics with HadoopBig Data Analytics with Hadoop
Big Data Analytics with Hadoop
Philippe Julio
 

Viewers also liked (10)

Why hadoop map reduce needs scala, an introduction to scoobi and scalding
Why hadoop map reduce needs scala, an introduction to scoobi and scaldingWhy hadoop map reduce needs scala, an introduction to scoobi and scalding
Why hadoop map reduce needs scala, an introduction to scoobi and scalding
 
Pig, Making Hadoop Easy
Pig, Making Hadoop EasyPig, Making Hadoop Easy
Pig, Making Hadoop Easy
 
Integration of Hive and HBase
Integration of Hive and HBaseIntegration of Hive and HBase
Integration of Hive and HBase
 
Hive Quick Start Tutorial
Hive Quick Start TutorialHive Quick Start Tutorial
Hive Quick Start Tutorial
 
Seminar Presentation Hadoop
Seminar Presentation HadoopSeminar Presentation Hadoop
Seminar Presentation Hadoop
 
Hadoop introduction , Why and What is Hadoop ?
Hadoop introduction , Why and What is  Hadoop ?Hadoop introduction , Why and What is  Hadoop ?
Hadoop introduction , Why and What is Hadoop ?
 
Hadoop Overview & Architecture
Hadoop Overview & Architecture  Hadoop Overview & Architecture
Hadoop Overview & Architecture
 
Big data ppt
Big  data pptBig  data ppt
Big data ppt
 
What is Big Data?
What is Big Data?What is Big Data?
What is Big Data?
 
Big Data Analytics with Hadoop
Big Data Analytics with HadoopBig Data Analytics with Hadoop
Big Data Analytics with Hadoop
 

Similar to Main map reduce

E031201032036
E031201032036E031201032036
E031201032036
ijceronline
 
Parallel Data Processing with MapReduce: A Survey
Parallel Data Processing with MapReduce: A SurveyParallel Data Processing with MapReduce: A Survey
Parallel Data Processing with MapReduce: A Survey
Kyong-Ha Lee
 
Map reduce presentation
Map reduce presentationMap reduce presentation
Map reduce presentation
ateeq ateeq
 
Mapreduce2008 cacm
Mapreduce2008 cacmMapreduce2008 cacm
Mapreduce2008 cacm
lmphuong06
 
2004 map reduce simplied data processing on large clusters (mapreduce)
2004 map reduce simplied data processing on large clusters (mapreduce)2004 map reduce simplied data processing on large clusters (mapreduce)
2004 map reduce simplied data processing on large clusters (mapreduce)
anh tuan
 
Map reduce
Map reduceMap reduce
Map reduce
Shahbaz Sidhu
 
Lecture 1 mapreduce
Lecture 1  mapreduceLecture 1  mapreduce
Lecture 1 mapreduce
Shubham Bansal
 
Mapreduce Osdi04
Mapreduce Osdi04Mapreduce Osdi04
Mapreduce Osdi04
Jyotirmoy Dey
 
Mapreduce - Simplified Data Processing on Large Clusters
Mapreduce - Simplified Data Processing on Large ClustersMapreduce - Simplified Data Processing on Large Clusters
Mapreduce - Simplified Data Processing on Large Clusters
Abhishek Singh
 
Map reduce
Map reduceMap reduce
Map reduce
xydii
 
Map reduceoriginalpaper mandatoryreading
Map reduceoriginalpaper mandatoryreadingMap reduceoriginalpaper mandatoryreading
Map reduceoriginalpaper mandatoryreading
coolmirza143
 
Generating Frequent Itemsets by RElim on Hadoop Clusters
Generating Frequent Itemsets by RElim on Hadoop ClustersGenerating Frequent Itemsets by RElim on Hadoop Clusters
Generating Frequent Itemsets by RElim on Hadoop Clusters
BRNSSPublicationHubI
 
Mapreduce script
Mapreduce scriptMapreduce script
Mapreduce script
Haripritha
 
Introduction to MapReduce
Introduction to MapReduceIntroduction to MapReduce
Introduction to MapReduce
Chicago Hadoop Users Group
 
Map Reduce
Map ReduceMap Reduce
Map Reduce
Sri Prasanna
 
Embarrassingly/Delightfully Parallel Problems
Embarrassingly/Delightfully Parallel ProblemsEmbarrassingly/Delightfully Parallel Problems
Embarrassingly/Delightfully Parallel Problems
Dilum Bandara
 
MapReduce Scheduling Algorithms
MapReduce Scheduling AlgorithmsMapReduce Scheduling Algorithms
MapReduce Scheduling Algorithms
Leila panahi
 
Hadoop Map Reduce
Hadoop Map ReduceHadoop Map Reduce
Hadoop Map Reduce
VNIT-ACM Student Chapter
 
Introduction to map reduce
Introduction to map reduceIntroduction to map reduce
Introduction to map reduce
M Baddar
 
2 mapreduce-model-principles
2 mapreduce-model-principles2 mapreduce-model-principles
2 mapreduce-model-principles
Genoveva Vargas-Solar
 

Similar to Main map reduce (20)

E031201032036
E031201032036E031201032036
E031201032036
 
Parallel Data Processing with MapReduce: A Survey
Parallel Data Processing with MapReduce: A SurveyParallel Data Processing with MapReduce: A Survey
Parallel Data Processing with MapReduce: A Survey
 
Map reduce presentation
Map reduce presentationMap reduce presentation
Map reduce presentation
 
Mapreduce2008 cacm
Mapreduce2008 cacmMapreduce2008 cacm
Mapreduce2008 cacm
 
2004 map reduce simplied data processing on large clusters (mapreduce)
2004 map reduce simplied data processing on large clusters (mapreduce)2004 map reduce simplied data processing on large clusters (mapreduce)
2004 map reduce simplied data processing on large clusters (mapreduce)
 
Map reduce
Map reduceMap reduce
Map reduce
 
Lecture 1 mapreduce
Lecture 1  mapreduceLecture 1  mapreduce
Lecture 1 mapreduce
 
Mapreduce Osdi04
Mapreduce Osdi04Mapreduce Osdi04
Mapreduce Osdi04
 
Mapreduce - Simplified Data Processing on Large Clusters
Mapreduce - Simplified Data Processing on Large ClustersMapreduce - Simplified Data Processing on Large Clusters
Mapreduce - Simplified Data Processing on Large Clusters
 
Map reduce
Map reduceMap reduce
Map reduce
 
Map reduceoriginalpaper mandatoryreading
Map reduceoriginalpaper mandatoryreadingMap reduceoriginalpaper mandatoryreading
Map reduceoriginalpaper mandatoryreading
 
Generating Frequent Itemsets by RElim on Hadoop Clusters
Generating Frequent Itemsets by RElim on Hadoop ClustersGenerating Frequent Itemsets by RElim on Hadoop Clusters
Generating Frequent Itemsets by RElim on Hadoop Clusters
 
Mapreduce script
Mapreduce scriptMapreduce script
Mapreduce script
 
Introduction to MapReduce
Introduction to MapReduceIntroduction to MapReduce
Introduction to MapReduce
 
Map Reduce
Map ReduceMap Reduce
Map Reduce
 
Embarrassingly/Delightfully Parallel Problems
Embarrassingly/Delightfully Parallel ProblemsEmbarrassingly/Delightfully Parallel Problems
Embarrassingly/Delightfully Parallel Problems
 
MapReduce Scheduling Algorithms
MapReduce Scheduling AlgorithmsMapReduce Scheduling Algorithms
MapReduce Scheduling Algorithms
 
Hadoop Map Reduce
Hadoop Map ReduceHadoop Map Reduce
Hadoop Map Reduce
 
Introduction to map reduce
Introduction to map reduceIntroduction to map reduce
Introduction to map reduce
 
2 mapreduce-model-principles
2 mapreduce-model-principles2 mapreduce-model-principles
2 mapreduce-model-principles
 

Main map reduce

  • 1. Introduction to MapReduce Masoumeh Rezaei jam In the name of God Distributed Systems course Department of Computer Engineering University of Tabriz 22th May 2012
  • 2. Introduction Mapper s& Reducers Combiners & Partitioners Steps of MapReduce Execution contents Conclusion 2/31Introduction to MapReduce Execution Framework
  • 3. Introduction Cloud computing involves large-scale, distributed computations on data from multiple sources. MapReduce is a programming model as well as a framework that supports the model. it enables to process a massive volume of data in parallel with many low-end computing nodes. Introduction to MapReduce 3/31
  • 4. Introduction (cont.) The Emergence of MapReduce Introduced by Google in 2004 to support simplified distributed computing on clusters of computers Social-networking services, video-sharing sites, web-based email services, and applications Introduction to MapReduce 4/31
  • 5. Importance of MapReduce Von Neumann isn't sufficient Scales to large clusters of machines Organize computations on clusters Effective tool for tackling large-data The model is easy to use Importance of MapReduce 5/31Introduction to MapReduce
  • 6. Characteristics • Main idea of MapReduce • No race condition, lock contention, etc. • to focus on data processing strategies Hide system-level details from the developers • Developer specifies the computation that needs to be performed • Execution framework (“runtime”) handles actual execution Separating the “what” from “how” • Move processing to the data • Seamless scalability Big data 6/31Introduction to MapReduce
  • 7. MapReduce Overview  Users specify the computation in terms of a map and a reduce function.  The underlying runtime system automatically parallelizes the computation across large-scale clusters of machines, handles machine failures, and schedules inter-machine communication to make efficient use of the network and disks. Introduction to MapReduce 7/31
  • 8. The Execution Framework A MapReduce program, consists of code for mappers and reducers (as well as combiners and partitioners) together with configuration parameters The developer submits the job to the submission node of a cluster and execution framework (the “runtime") takes care of everything else: it transparently handles all other aspects of distributed code execution, on clusters ranging from a single node to a few thousand nodes.
  • 9. Specific responsibilities of Execution Framework Scheduling Data / code co- location Synchronization Error and fault handling 9/31
  • 10. Runtime Scheduling Scheme Nodes completed their tasks assigned another Speculative, redundant execution No execution plan achieves fault tolerance 11/31Introduction to MapReduce
  • 11. The mapper is applied to every input key-value pair (split across an arbitrary number of files) to generate an arbitrary number of intermediate key-value pairs. Simplified view of MapReduce Key-value pairs form the basic data structure in MapReduce.Part of the design of MapReduce algorithms involves imposing the key-value structure on arbitrary datasets. web pages: (URLs, the actual HTML content) graph: (node id, adjacency lists of node) The reducer is applied to all values associated with the same intermediate key to generate output key-value pairs. 12/31
  • 13. Mapper & Reducers Mappers and Reducers are objects that implement the Map and Reduce methods, respectively. A mapper object is a worker initialized for each map task and the Map method is called on each key-value pair by the execution framework. if an input is broken down into 400 blocks and there are 40 mappers in a cluster, the number of map tasks are 400 and the map tasks are executed through 10 waves of task runs. The situation is similar for the reduce phase: a reducer object is a worker initialized for each reduce task, and the Reduce method is called once per intermediate key. Introduction to MapReduce 14/31
  • 14. An example of using MapReduce Input Map Reduce Output 15/31Introduction to MapReduce
  • 15. PowerPoint has new layouts that give you more ways to present your words, images and media. Combiners Combiners & Partitioners They are an optimization in MapReduce that allow for local aggregation before the shuffle and sort phase. To perform local aggregation on the output of each mapper, i.e.,to compute a local count for a key over all the documents processed by the mapper. Perform it to cut down on the number of intermediate key-value pairs 16/31Introduction to MapReduce
  • 16. PowerPoint has new layouts that give you more ways to present your words, images and media. Partitioners Combiners & Partitioners (cont.) They are responsible for dividing up the intermediate key space and assigning intermediate key-value pairs to reducers. The execution framework uses this information to copy the data to the right location during the shuffle and sort phase. Simplest partitioner involves computing the hash value of the key and then taking the mod of that value with the number of reducers. 17/31Introduction to MapReduce
  • 17. ONE TAB TWO TAB FOUR TAB FIVE Before starting the Map task, an input file is loaded on the distributed file system. At loading, the file is partitioned into multiple data blocks with same size, typically 64MB. Each block is triplicated to guarantee fault-tolerance. Steps of MapReduce Execution 18/31Introduction to MapReduce
  • 18. TWO TAB TWO TAB FOUR TAB FIVE Each block is then assigned to a mapper. The mapper applies Map() to each record in the data block. Steps of MapReduce Execution 19/31Introduction to MapReduce
  • 19. THREE TAB FOUR TAB FIVE The intermediate outputs produced by the mappers are then sorted locally for grouping key-value pairs sharing the same key. Steps of MapReduce Execution 20/31Introduction to MapReduce
  • 20. FOUR TAB FOUR TAB FIVE After local sort, Combine() is optionally applied to perform pre- aggregation on the grouped key-value pairs, so that the communication cost of transfer all the intermediate outputs to reducers is minimized. Steps of MapReduce Execution 21/31Introduction to MapReduce
  • 21. FIVE TAB FIVE The mapped outputs are stored in local disks of the mappers, partitioned into R, where R is the number of Reduce tasks in the MR job. This partitioning is basically done by a hash function, e.g. hash(key) mod R. Steps of MapReduce Execution 22/31Introduction to MapReduce
  • 22. SIX TAB FIVE When all Map tasks are completed, the MapReduce scheduler assigns Reduce tasks to workers. Steps of MapReduce Execution 23/31Introduction to MapReduce
  • 23. SEVEN Since all mapped outputs are already partitioned and stored in local disks, each reducer performs the shuffling by simply pulling its partition of the mapped outputs from mappers. Steps of MapReduce Execution 24/31Introduction to MapReduce
  • 24. EIGHT A reducer reads the intermediate results and merge them by the intermediate keys, i.e. key2, so that all values of the same key are grouped together. Sometime this grouping is done by external merge-sort. Steps of MapReduce Execution 25/31Introduction to MapReduce
  • 25. NINE Then each reducer applies Reduce() to the intermediate values for each key2 it encounters. The output of reducers are stored and triplicated in HDFS. Steps of MapReduce Execution 26/31Introduction to MapReduce
  • 26. Introduction to MapReduce Hadoop Architecture the single opportunity for global synchronization is the barrier between the map and reduce phases Due to that between the map and reduce tasks, the map phase of a job is only as fast as the slowest map task. Similarly, the completion time of a job is bounded by the running time of the slowest reduce task. 27/31
  • 27. MapReduce Execution the number of Map tasks does not depend on the number of nodes, but the number of input blocks. Each block is assigned to a single Map task. 28/31
  • 28. Complete view of MapReduce 29/31
  • 29. Conclusion  In this peresentation, MapReduce as a programming model for expressing distributed computations on massive amounts of data and an execution framework for large-scale data processing on clusters of commodity servers was discussed.  MapReduce can enhance the productivity for junior developers who lack the experience of distributed/parallel development. Introduction to MapReduce 30/31
  • 30. References  Jimmy Lin, Chris Dyer, “Data-Intensive Text Processing with MapReduce,” 2010  R. Buyya, C. Shin Yeo, S. Venugopal, J. Broberg, I. Brandic, “Cloud computing and emerging IT platforms: Vision, hype, and reality for delivering computing as the 5th utility,” 2009.  Kyong-Ha Lee, Yoon-Joon Lee, Hyunsik Choi, Yon Dohn Chung, Bongki Moon, “Parallel Data Processing with MapReduce: A Survey,” 2011  B.Thirumala Rao , Dr. L.S.S.Reddy , “Survey on Improved Scheduling in Hadoop MapReduce in Cloud Environments,” 2011  Jeffrey Dean, Sanjay Ghemawat , “MapReduce: Simplified Data Processing on Large Clusters,” 2008 Introduction to MapReduce 31/31

Editor's Notes

  1. Shaded text boxes with arrows(Intermediate)To reproduce the top shape with text effects on this slide, do the following:On the Home tab, in theSlides group, click Layout, and then click Blank.On the Home tab, in theDrawing group, click Shapes, and then under Rectangles, click Rounded Rectangle (second option from the left). On the slide, drag to draw a rounded rectangle.Select the rectangle. Under DrawingTools, on the Format tab, in the Size group, do the following:In the Shape Height box, enter .52”.In the Shape Width box, enter 3.75”.Drag the yellow diamond adjustment handle (at the top left of the rectangle) to the right to increase the amount of rounding at the corners of the rectangle. Select the rectangle. On the Home tab, in the bottom right corner of the Drawing group, click the Format Shape dialog box launcher. In the Format Shape dialog box, click Fill in the left pane, select Gradient fill in the right pane, and then do the following:In the Type list, select Linear. Click the button next to Direction, and then clickLinear Down (first row, second option from the left).Under Gradient stops, click Add gradient stop or Remove gradient stop until two stops appear in the slider.Also under Gradient stops, customize the gradient stops that you added as follows:Select the first stop in the slider, and then do the following:In the Position box, enter0%.Click the button next to Color, and then under Theme Colorsclick White, Background 1(first row, first option from the left).Select the last stop in the slider, and then do the following:In the Position box, enter100%.Click the button next to Color, and then under Theme Colorsclick White, Background 1, Darker 15%(third row, first option from the left).Also in the Format Shape dialog box, click Line Color in the left pane, select Gradient Line in the right pane, and then do the following:In the Type list, select Linear. Click the button next to Direction, and then clickLinear Up (second row, second option from the left). Under Gradient stops, click Add gradient stop or Remove gradient stop until two stops appear in the slider.Also under Gradient stops, customize the gradient stops that you added as follows:Select the first stop in the slider, and then do the following:In the Position box, enter0%.Click the button next to Color, and then under Theme Colorsclick White, Background 1(first row, first option from the left).Select the last stop in the slider, and then do the following:In the Position box, enter100%.Click the button next to Color, and then under Theme Colorsclick White, Background 1, Darker 25%(fourth row, first option from the left).Also in the Format Shape dialog box, click Line Style in the left pane, and then in the right pane, in the Width box, enter 2 pt. Also in the Format Shapedialog box, click Glow and Soft Edges in the left pane, and then in the right pane, under Glow, do the following:In the Size box, enter 5. Click the button next to Color, and then under Theme Colorsclick White, Background 1, Darker 25% (fourth row, first option from the left).On the slide, right-click the rounded rectangle, click Edit Text, then enter text. Select the text. On the Home tab, in the Font group, select Franklin Gothic Medium Cond from the Font list, select 24 from the Font Size list, and then click the arrow next to Font Color and under Theme Colorsclick White, Background 1, Darker 35% (fifth row, first option from the left).On the Home tab, in the Paragraph group, click Align Text Left to align the text left in the text box.Under Drawing Tools, on the Format tab, in the bottom right corner of the WordArt Styles group, click the Format Text Effects dialog box launcher. In the Format Text Effects dialog box, click Text Box in the left pane. In the right pane, under Internal margin, enter 0.6” in the Left box to increase the left margin in the rounded rectangle to accommodate the embossed circle. To reproduce the olive-green circle and arrow for the top shape on this slide, do the following:On the Home tab, in the Drawing group, click Shapes, and then under Basic Shapes click Oval (first row, second option from the left). Press and hold SHIFT to constrain the shape to a circle, and then on the slide, drag to draw a circle. Select the circle. Under DrawingTools, on the Format tab, in the Size group, do the following:In the Shape Height box, enter .4”.In the Shape Width box, enter .4”.On the Home tab, in the bottom right corner of the Drawing group, click the Format Shape dialog box launcher. In the Format Shape dialog box, click Fill in the left pane. In the right pane, select Solid Fill, and then click the button next to Color and under Theme Colors click Olive Green, Accent 3, Lighter 60% (third row, seventh option from the left). Also in the Format Shape dialog box, click Line Color in the left pane, and then select No line in the right pane.Also in the Format Shape dialog box, click Shadow in the left pane, and then do the following:Click the button next to Presets, and then under Inner click Inside Diagonal Top Left (first row, first option from the left).In the Transparency box, enter 80%.In the Distance box, enter 2 pt. Drag the circle onto the left side of the rounded rectangle. On the Home tab, in the Drawing group, click Shapes, and then under Block Arrows click Chevron (second row, eighth option from the left). On the slide, drag to draw the chevron on the circle.Select the chevron. Under DrawingTools, on the Format tab, in the Size group, do the following:In the Shape Height box, enter .23”.In the Shape Width box, enter .23”.On the Home tab, in the Drawing group, click Shape Fill, and then click White, Background 1 (first row, first option from the left). On the Home tab, in the Drawing group, click Shape Outline, and then click No Outline. Press and hold SHIFT and select all three shapes.On the Home tab, in the Drawing group, click Arrange, point to Align, and then click Align Middle. To reproduce the other shapes and arrange them on this slide, do the following:Press and hold SHIFT and select all three shapes.On the Home tab, in the Drawing group, click Arrange, and then under Group Objects click Group.On the Home tab, in the Clipboard group, click the arrow to the right of Copy, and then click Duplicate. Repeat the process until you have a total of four groups of shapes.Separate each group of shapes and loosely arrange them on the slide.Press and hold SHIFT and select all four groups of shapes.On the Home tab, in the Drawing group, click Arrange, and then do the following:Point to Align, and then click Align Selected Objects.Point to Align, and click Distribute Vertically.Point to Align, and then click Align Center. Under Group Objects click Group.Point to Align, and make sure Align to Slide is selected.Point to Align, and then click Align Center.Point to Align, and then click Align Middle.To change the color for the duplicate circles (second, third, and fourth from the top), do the following:Press and hold SHIFT and select all four groups of shapes.On the Home tab, in the Drawing group, click Arrange, and click Ungroup. Select the circle that you would like to change.Under Drawing Tools, on the Format tab, in the Shape Stylesgroup, click the arrow next toShape Fill, and then do the following:For the second circle from the top, under Theme Colors, clickBlue, Accent 1, Lighter 60% (third row, fifth option from the left).For the third circle from the top, under Theme Colors, clickPurple, Accent 4, Lighter 60% (third row, eighth option from the left).For the fourth circle from the top, under Theme Colors, clickRed, Accent 2, Lighter 60% (third row, sixth option from the left).To reproduce the background on this slide, do the following:Right-click the slide background area, and then clickFormat Background.In the Format Background dialog box, click Fill in the left pane, select Gradient fill in the right pane, and then do the following:In the Type list, select Radial.Click the button next to Direction, and then clickFrom Center (third option from the left).Under Gradient stops, click Add gradient stop or Remove gradient stop until two stops appear in the slider.Also under Gradient stops, customize the gradient stops that you added as follows:Select the first stop in the slider, and then do the following:In the Position box, enter0%.Click the button next to Color, and then under Theme Colorsclick White, Background 1, Darker 15% (third row, first option from the left).Select the last stop in the slider, and then do the following:In the Position box, enter80%.Click the button next to Color, and then under Theme Colorsclick White, Background 1 (first row, first option from the left).
  2. مپ ردیوس که بوسیله ی گوگل عمومی شده است، ابزار پردازش داده ی مقیاس پذیر و تحمل پذیر خطا است که امکان پردازش حجم بزرگی از داده را بطور موازی با تعداد زیادی از گره های محاسباتی غیر قدرتمند فراهم میکند. مپ ردیوس یک مدل برنامه نویسی بعلاوه ی چارچوبی است که آنرا ساپورت میکند.
  3. One of the most significant advantages of MapReduce is that it provides an abstraction that hides many system-level details from the programmer. Therefore, a developer can focus on what computations need to be performed, as opposed to how those computations are actually carried out or how to get the data to the processes that depend on them.
  4. spreading data across the local disks of nodes in a cluster
  5. یک برنامه ی مپ ردیوس که بعنوان یک job ارجاع داده می شود، کد برای مپرها و ردیوسر ها (بعلاوه ی ترکیب کنندها و تقسیم کننده ها) که با هم با پارامترهای پیکر بندی (مثلا اینکه کجا ورودی می نشیند و کجا خروجی باید ذخیره شود) بسته بندی شده اند را شامل می شودتوسعه دهنده(developer) کار(job) را به گره ی فرمانبر واگذار می کند و چارچوب اجرا(execution framework که گاهی "runtime" نامیده می شود) از هرچیز دیگری مراقبت می کند: بطور شفاف تمام جنبه های دیگر-ه اجرای توزیع شده ی کد را روی کلاسترهای از رنج-ه یک گره ی تنها تا چند هزار گره را اداره می کند. وظایف خاص شامل موارد زیر می شود:
  6. زوج های کلید-مقدار ساختمان داده ی پایه در مپ ریوس را شکل می دهند. کلیدها و مقدارها میتوانند مقدماتی مثل اینتیجرها باشند یا ساختمان های پیچیده ی اختیاری مثل تیوپل. معمولا برنامه نویسان برای ساده تر کردن تسک، انواع داده ی خودشان را تعریف میکنند.قسمتی از طراحی الگوریتم مپ ردیوس، درگیر تحمیل کردن-ه ساختار-ه کلید-مقدار روی مجموعه های داده ی اختیاری می شود. مثلا برای مجموعه ای از صفحات وب، کلیدها URL ها هستند و مقدارها، محتوای HTML-ه واقعی
  7. ایده اصلی آن مخفی کردن جزئیات اجرای موازی است و به کاربر اجازه می دهد تا فقط روی استراتژی های پردازش داده تمرکز کند.شامل دو تابع اولیه است: مپ و ردیوسورودی-ه مپ ردیوس لیستی از جفت های (کلید1و مقدار 1) است و مپ() برای هر جفت بکار برده می شود تا جفتهای (کلید 2 و مقدار 2)-ه میانی را محاسبه کند.جفتهای کلید-مقدار باهم دیگر براساس مقدار کلید دسته بندی می شوند، یعنی (کلید2 و لیست(مقدار 2)). برای هر کلید2، ردیوس روی لیستی از همه ی مقادیر کار میکند و سپس صفر یا بیشتر نتیجه ی جمع شده را تولید می کند.---خودم:در مثال شمارش تعداد کلمات متن، کلید همان کلمات هستند. که آنها را براساس تعداد تکرارشان لیست کرده یا همان جمع میکند.---کاربر می تواند تابعهای مپ و ردیوس را تعریف کند، اگرچه آنها چارچوبهای مپ ردیوس را می خواهند.
  8. دو عنصر افزوده وجود دارند که مدل برنامه نویسی را کامل می کنند: تقسیم کننده ها و ادغام کننده هاتقسیم کننده ها مسئول-ه به اشتراک گذاشتن-ه فضای کلید میانی هستند و زوج های کلید-مقدار میانی را به ردیوسرها واگذار می کنند. به عبارت دیگر، تقسیم کننده مشخص می کند که یک زوج-ه کلید-مقدار میانی، باید به کدام تسک کپی شود. در داخل-ه هر ردیوسر، کلیدها در ترتیب-ه مرتب شده پردازش می شوند (که اینکه چطور "دسته بندی" پیاده سازی شده است می باشد.)
  9. دو عنصر افزوده وجود دارند که مدل برنامه نویسی را کامل می کنند: تقسیم کننده ها و ادغام کننده هاتقسیم کننده ها مسئول-ه به اشتراک گذاشتن-ه فضای کلید میانی هستند و زوج های کلید-مقدار میانی را به ردیوسرها واگذار می کنند. به عبارت دیگر، تقسیم کننده مشخص می کند که یک زوج-ه کلید-مقدار میانی، باید به کدام تسک کپی شود. در داخل-ه هر ردیوسر، کلیدها در ترتیب-ه مرتب شده پردازش می شوند (که اینکه چطور "دسته بندی" پیاده سازی شده است می باشد.)
  10. برای این بطور محلی مرتب میشوند تا تمام زوجهایی که کلید یکسان دارند و در حافظه های مپرهای متفاوتی قرار دارند، بتوانند دسته بندی و گروپ شوندبرای مشخص کردن اینکه هر کلید به کدام تسکِ ردیوس واگذار شود، از تابع هش استفاده می شود.خودم: چون تعداد تسک های مپ و ردیوس لزوما برابر نیست و به این طریق نگاشت مپ به ردیوس مدبریت می شود.
  11. Animated tab slides over five headers(Intermediate)Tip: You will need to use drawing guides to position the shapes and text on the slide. To display and set the drawing guides, do the following:On the Home tab, in the Slides group, click Layout, and then click Blank.Right-click the slide background area, and then click Grid and Guides.In the Grid and Guides dialog box, underGuidesettings, select Display drawing guides on screen. (Note: One horizontal and one vertical guide will display on the slide at 0.00, the default position. As you drag the guides, the cursor will display the new position.) On the slide, do the following:Press and hold CTRL, select the vertical guide, and then drag it left to the 3.50 position.Press and hold CTRL, select the vertical guide, and then drag it left to the 1.75 position.Press and hold CTRL, select the vertical guide, and then drag it right to the 1.75 position.Press and hold CTRL, select the vertical guide, and then drag it right to the 3.50 position.To reproduce the long, thin rectangle on this slide, do the following:On the Home tab, in the Drawing group, click Shapes, and then under Rectangles click Rectangle (first option from the left). On the slide, drag to draw a rectangle. Select the rectangle. Under DrawingTools, on the Format tab, in the Size group, do the following: In the ShapeHeight box, enter 0.05”.In the ShapeWidth box, enter 10”.Under DrawingTools, on the Format tab, in the bottom right corner of the ShapeStyles group, click the FormatShape dialog box launcher. In the FormatShape dialog box, in the left pane, click LineColor. In the LineColor pane, select Noline.Also in the FormatShape dialog box, in the left pane, click Shadow. In the Shadow pane, click the button next to Presets, under Outer click OffsetBottom (first row, second option from the left), and then do the following:In the Transparency box, enter 68%.In the Blur box, enter 3.5 pt.In the Distance box, enter 2.2 pt.Also in the FormatShape dialog box, in the left pane, click 3-D Format. In the 3-D Format pane, do the following:Under Bevel, click the button next to Top, and then under Bevel click Circle (first row, first option from the left). Next to Top, in the Width box, enter 15 pt,and in the Height box, enter 3 pt.Under Surface, click the button next to Lighting, and then under Neutral click Balance (first row, second option from the left). In the Angle box, enter 145°. On the slide, drag the rectangle about 0.25” above the 0.00 horizontal drawing guide. (Note: To view the ruler, on the View tab, in the Show/Hide group, select Ruler.)On the Home tab, in the Drawing group, click Arrange, point to Align, and then do the following:Click Align to Slide. Click AlignCenter.To reproduce the tab (rounded rectangle) on this slide, do the following:On the Home tab, in the Drawing group, click the More arrow to expand the shapes gallery, and then under Rectangles click Round Same Side Corner Rectangle (eighth option from the left). On the slide, drag to draw a rounded rectangle. On the slide, select the rounded rectangle. Under DrawingTools, on the Format tab, in the Size group, do the following: In the ShapeHeight box, enter 0.58”.In the ShapeWidth box, enter 1.33”.Under DrawingTools, on the Format tab, in the bottom right corner of the ShapeStyles group, click the FormatShape dialog box launcher. In the FormatShape dialog box, in the left pane, click LineColor. In the LineColor pane, select Noline.Also in the FormatShape dialog box, in the left pane, click Shadow. In the Shadow pane, click the button next to Presets, under Outer click OffsetBottom (first row, second option from the left), and then do the following:In the Transparency box, enter 68%.In the Blur box, enter 3.5 pt.In the Distance box, enter 2.2 pt.Also in the FormatShape dialog box, in the left pane, click 3-D Format. In the 3-D Format pane, do the following:Under Bevel, click the button next to Top, and then under Bevel click Circle (first row, first option from the left). Next to Top, in the Width box, enter 4 pt,and in the Height box, enter 4 pt.Under Surface, click the button next to Lighting, and then under Neutral click Balance (first row, second option from the left). In the Angle box, enter 145°. On the slide, drag the rounded rectangle until the bottom edge touches the top edge of the long, thin rectangle and it is centered on the 3.50 left vertical drawing guide.To reproduce the first text box on this slide, do the following:On the Insert tab, in the Text group, click TextBox. On the slide, drag to draw a text box. Enter TAB ONE,and then select the text. On the Home tab, in the Font group, do the following:In the Font list, select TW Cen MT Condensed.In the FontSize box, enter 22 pt. On the Home tab, in the Paragraph group, click Center to center the text in the text box.On the slide, drag the text box onto the rounded rectangle until the bottom edge of the text is 0.5” above the 0.00 horizontal drawing guide and it is centered on the 3.50 left vertical drawing guide.To reproduce the other text boxes on this slide, do the following:On the slide, select the first text box. On the Home tab, in the Clipboard group, click the arrow under Copy, and then click Duplicate. Repeat this process three more times for a total of five text boxes.Click in one of the duplicate text boxes, delete TAB ONE, and then enter TAB TWO. Drag the second text box until the bottom edge of the text is 0.5” above the 0.00 horizontal drawing guide and it is centered on the 1.75 left vertical drawing guide.Click in another duplicate text box, delete TAB ONE, and then enter TAB THREE.Drag the third text box until the bottom edge of the text is 0.5” above the 0.00 horizontal drawing guide and it is centered on the 0.00 vertical drawing guide. Click in another duplicate text box, delete TAB ONE, and then enter TAB FOUR.Drag the fourth text box until the bottom edge of the text is 0.5” above the 0.00 horizontal drawing guide and it is centered on the 1.75 right vertical drawing guide.Click in the last duplicate text box, delete TAB ONE, and then enter TAB FIVE.Drag the fifth text box until the bottom edge of the text is 0.5” above the 0.00 horizontal drawing guide and it is centered on the 3.50 right vertical drawing guide.Select the text in the first text box. On the Home tab, in the Font group, click the arrow next to Font Color, and then under ThemeColors click White, Background 1 (first row, first option from the left). Repeat this process for each of the other text boxes. To reproduce the animation effects on this slide, do the following:On the Animations tab, in the Advanced Animations group, click Animation Pane. On the Home tab, in the Editing group, click Select, and then click Selection Pane.In the Selection and Visibility task pane, select the rounded rectangle (“Round Same Side Corner Rectangle” object). In the Animation group, click the More arrow to expand the effects gallery, then under MotionPaths, click Lines. In the Animation group, click Effect Options and under Direction, click Right.On the slide, point to the endpoint (red arrow) of the selected motion path until the cursor becomes a two-headed arrow. Press and hold SHIFT, and then drag the endpoint to the 1.75 left vertical drawing guide. In the Selection and Visibility taskpane, select the rounded rectangle again. In the Advanced Animation group, click Add Animation, and under MotionPaths, click Lines. In the Animation group, click Effect Options and under Direction, click Right.In the Animation Pane, select the second animation effect (right motion path for the rounded rectangle).On the slide, point to the endpoint (red arrow) of the selected motion path until the cursor becomes a two-headed arrow. Press and hold SHIFT, and then drag the endpoint to the 0.00 vertical drawing guide. On the slide, point to the starting point (green arrow) of the selected motion path until the cursor becomes a two-headed arrow. Press and hold SHIFT, and then drag the starting point to the 1.75 left vertical drawing guide. In the Selection and Visibility taskpane, select the rounded rectangle again. In the Advanced Animation group, click Add Animation, and under MotionPaths, click Lines. In the Animation group, click Effect Options and under Direction, click Right.In the CustomAnimation task pane, select the third animation effect (right motion path for the rounded rectangle). On the slide, point to the endpoint (red arrow) of the selected motion path until the cursor becomes a two-headed arrow. Press and hold SHIFT, and then drag the endpoint to the 1.75 right vertical drawing guide. On the slide, point to the starting point (green arrow) of the selected motion path until the cursor becomes a two-headed arrow. Press and hold SHIFT, and then drag the starting point to the 0.00 vertical drawing guide. In the Selection and Visibility taskpane, select the rounded rectangle again. In the Advanced Animation group, click Add Animation, and under MotionPaths, click Lines. In the Animation group, click Effect Options and under Direction, click Right.In the CustomAnimation task pane, select the fourth animation effect (right motion path for the rounded rectangle).On the slide, point to the endpoint (red arrow) of the selected motion path until the cursor becomes a two-headed arrow. Press and hold SHIFT, and then drag the endpoint to the 3.50 right vertical drawing guide. On the slide, point to the starting point (green arrow) of the selected motion path until the cursor becomes a two-headed arrow. Press and hold SHIFT, and then drag the starting point to the 1.75 right vertical drawing guide. In the Animation Pane, press and hold down CTRL and select all four animation effects. On the Animations tab, in the Timing group, do the following:In the Start list, select On Click.In the Duration list, enter 01.00.On the View tab, in the Show group, clear Ruler and clear Guides.To reproduce the background effects on this slide, do the following:Right-click the slide background area, and then click Format Background. In the Format Background dialog box, click Fill in the left pane, select Gradient fill in the Fill pane, and then do the following:In the Type list, select Linear.Click the button next to Direction, and then click Linear Up (second row, second option from the left).Under Gradient stops, click Add or Remove until two stops appear on the slider, and customize the gradient stops as follows:Select Stop 1 on the slider, and then do the following:In the Position box, enter 65%.Click the button next to Color, and under Theme Colors, click White, Background 1 (first row, first option from the left).Select Stop 2 on the slider, and then do the following:In the Position box, enter 100%.Click the button next to Color, and under Theme Colors, click Blue, Accent 1, Lighter 60% (third row, fifth option from the left).
  12. Animated tab slides over five headers(Intermediate)Tip: You will need to use drawing guides to position the shapes and text on the slide. To display and set the drawing guides, do the following:On the Home tab, in the Slides group, click Layout, and then click Blank.Right-click the slide background area, and then click Grid and Guides.In the Grid and Guides dialog box, underGuidesettings, select Display drawing guides on screen. (Note: One horizontal and one vertical guide will display on the slide at 0.00, the default position. As you drag the guides, the cursor will display the new position.) On the slide, do the following:Press and hold CTRL, select the vertical guide, and then drag it left to the 3.50 position.Press and hold CTRL, select the vertical guide, and then drag it left to the 1.75 position.Press and hold CTRL, select the vertical guide, and then drag it right to the 1.75 position.Press and hold CTRL, select the vertical guide, and then drag it right to the 3.50 position.To reproduce the long, thin rectangle on this slide, do the following:On the Home tab, in the Drawing group, click Shapes, and then under Rectangles click Rectangle (first option from the left). On the slide, drag to draw a rectangle. Select the rectangle. Under DrawingTools, on the Format tab, in the Size group, do the following: In the ShapeHeight box, enter 0.05”.In the ShapeWidth box, enter 10”.Under DrawingTools, on the Format tab, in the bottom right corner of the ShapeStyles group, click the FormatShape dialog box launcher. In the FormatShape dialog box, in the left pane, click LineColor. In the LineColor pane, select Noline.Also in the FormatShape dialog box, in the left pane, click Shadow. In the Shadow pane, click the button next to Presets, under Outer click OffsetBottom (first row, second option from the left), and then do the following:In the Transparency box, enter 68%.In the Blur box, enter 3.5 pt.In the Distance box, enter 2.2 pt.Also in the FormatShape dialog box, in the left pane, click 3-D Format. In the 3-D Format pane, do the following:Under Bevel, click the button next to Top, and then under Bevel click Circle (first row, first option from the left). Next to Top, in the Width box, enter 15 pt,and in the Height box, enter 3 pt.Under Surface, click the button next to Lighting, and then under Neutral click Balance (first row, second option from the left). In the Angle box, enter 145°. On the slide, drag the rectangle about 0.25” above the 0.00 horizontal drawing guide. (Note: To view the ruler, on the View tab, in the Show/Hide group, select Ruler.)On the Home tab, in the Drawing group, click Arrange, point to Align, and then do the following:Click Align to Slide. Click AlignCenter.To reproduce the tab (rounded rectangle) on this slide, do the following:On the Home tab, in the Drawing group, click the More arrow to expand the shapes gallery, and then under Rectangles click Round Same Side Corner Rectangle (eighth option from the left). On the slide, drag to draw a rounded rectangle. On the slide, select the rounded rectangle. Under DrawingTools, on the Format tab, in the Size group, do the following: In the ShapeHeight box, enter 0.58”.In the ShapeWidth box, enter 1.33”.Under DrawingTools, on the Format tab, in the bottom right corner of the ShapeStyles group, click the FormatShape dialog box launcher. In the FormatShape dialog box, in the left pane, click LineColor. In the LineColor pane, select Noline.Also in the FormatShape dialog box, in the left pane, click Shadow. In the Shadow pane, click the button next to Presets, under Outer click OffsetBottom (first row, second option from the left), and then do the following:In the Transparency box, enter 68%.In the Blur box, enter 3.5 pt.In the Distance box, enter 2.2 pt.Also in the FormatShape dialog box, in the left pane, click 3-D Format. In the 3-D Format pane, do the following:Under Bevel, click the button next to Top, and then under Bevel click Circle (first row, first option from the left). Next to Top, in the Width box, enter 4 pt,and in the Height box, enter 4 pt.Under Surface, click the button next to Lighting, and then under Neutral click Balance (first row, second option from the left). In the Angle box, enter 145°. On the slide, drag the rounded rectangle until the bottom edge touches the top edge of the long, thin rectangle and it is centered on the 3.50 left vertical drawing guide.To reproduce the first text box on this slide, do the following:On the Insert tab, in the Text group, click TextBox. On the slide, drag to draw a text box. Enter TAB ONE,and then select the text. On the Home tab, in the Font group, do the following:In the Font list, select TW Cen MT Condensed.In the FontSize box, enter 22 pt. On the Home tab, in the Paragraph group, click Center to center the text in the text box.On the slide, drag the text box onto the rounded rectangle until the bottom edge of the text is 0.5” above the 0.00 horizontal drawing guide and it is centered on the 3.50 left vertical drawing guide.To reproduce the other text boxes on this slide, do the following:On the slide, select the first text box. On the Home tab, in the Clipboard group, click the arrow under Copy, and then click Duplicate. Repeat this process three more times for a total of five text boxes.Click in one of the duplicate text boxes, delete TAB ONE, and then enter TAB TWO. Drag the second text box until the bottom edge of the text is 0.5” above the 0.00 horizontal drawing guide and it is centered on the 1.75 left vertical drawing guide.Click in another duplicate text box, delete TAB ONE, and then enter TAB THREE.Drag the third text box until the bottom edge of the text is 0.5” above the 0.00 horizontal drawing guide and it is centered on the 0.00 vertical drawing guide. Click in another duplicate text box, delete TAB ONE, and then enter TAB FOUR.Drag the fourth text box until the bottom edge of the text is 0.5” above the 0.00 horizontal drawing guide and it is centered on the 1.75 right vertical drawing guide.Click in the last duplicate text box, delete TAB ONE, and then enter TAB FIVE.Drag the fifth text box until the bottom edge of the text is 0.5” above the 0.00 horizontal drawing guide and it is centered on the 3.50 right vertical drawing guide.Select the text in the first text box. On the Home tab, in the Font group, click the arrow next to Font Color, and then under ThemeColors click White, Background 1 (first row, first option from the left). Repeat this process for each of the other text boxes. To reproduce the animation effects on this slide, do the following:On the Animations tab, in the Advanced Animations group, click Animation Pane. On the Home tab, in the Editing group, click Select, and then click Selection Pane.In the Selection and Visibility task pane, select the rounded rectangle (“Round Same Side Corner Rectangle” object). In the Animation group, click the More arrow to expand the effects gallery, then under MotionPaths, click Lines. In the Animation group, click Effect Options and under Direction, click Right.On the slide, point to the endpoint (red arrow) of the selected motion path until the cursor becomes a two-headed arrow. Press and hold SHIFT, and then drag the endpoint to the 1.75 left vertical drawing guide. In the Selection and Visibility taskpane, select the rounded rectangle again. In the Advanced Animation group, click Add Animation, and under MotionPaths, click Lines. In the Animation group, click Effect Options and under Direction, click Right.In the Animation Pane, select the second animation effect (right motion path for the rounded rectangle).On the slide, point to the endpoint (red arrow) of the selected motion path until the cursor becomes a two-headed arrow. Press and hold SHIFT, and then drag the endpoint to the 0.00 vertical drawing guide. On the slide, point to the starting point (green arrow) of the selected motion path until the cursor becomes a two-headed arrow. Press and hold SHIFT, and then drag the starting point to the 1.75 left vertical drawing guide. In the Selection and Visibility taskpane, select the rounded rectangle again. In the Advanced Animation group, click Add Animation, and under MotionPaths, click Lines. In the Animation group, click Effect Options and under Direction, click Right.In the CustomAnimation task pane, select the third animation effect (right motion path for the rounded rectangle). On the slide, point to the endpoint (red arrow) of the selected motion path until the cursor becomes a two-headed arrow. Press and hold SHIFT, and then drag the endpoint to the 1.75 right vertical drawing guide. On the slide, point to the starting point (green arrow) of the selected motion path until the cursor becomes a two-headed arrow. Press and hold SHIFT, and then drag the starting point to the 0.00 vertical drawing guide. In the Selection and Visibility taskpane, select the rounded rectangle again. In the Advanced Animation group, click Add Animation, and under MotionPaths, click Lines. In the Animation group, click Effect Options and under Direction, click Right.In the CustomAnimation task pane, select the fourth animation effect (right motion path for the rounded rectangle).On the slide, point to the endpoint (red arrow) of the selected motion path until the cursor becomes a two-headed arrow. Press and hold SHIFT, and then drag the endpoint to the 3.50 right vertical drawing guide. On the slide, point to the starting point (green arrow) of the selected motion path until the cursor becomes a two-headed arrow. Press and hold SHIFT, and then drag the starting point to the 1.75 right vertical drawing guide. In the Animation Pane, press and hold down CTRL and select all four animation effects. On the Animations tab, in the Timing group, do the following:In the Start list, select On Click.In the Duration list, enter 01.00.On the View tab, in the Show group, clear Ruler and clear Guides.To reproduce the background effects on this slide, do the following:Right-click the slide background area, and then click Format Background. In the Format Background dialog box, click Fill in the left pane, select Gradient fill in the Fill pane, and then do the following:In the Type list, select Linear.Click the button next to Direction, and then click Linear Up (second row, second option from the left).Under Gradient stops, click Add or Remove until two stops appear on the slider, and customize the gradient stops as follows:Select Stop 1 on the slider, and then do the following:In the Position box, enter 65%.Click the button next to Color, and under Theme Colors, click White, Background 1 (first row, first option from the left).Select Stop 2 on the slider, and then do the following:In the Position box, enter 100%.Click the button next to Color, and under Theme Colors, click Blue, Accent 1, Lighter 60% (third row, fifth option from the left).
  13. Animated tab slides over five headers(Intermediate)Tip: You will need to use drawing guides to position the shapes and text on the slide. To display and set the drawing guides, do the following:On the Home tab, in the Slides group, click Layout, and then click Blank.Right-click the slide background area, and then click Grid and Guides.In the Grid and Guides dialog box, underGuidesettings, select Display drawing guides on screen. (Note: One horizontal and one vertical guide will display on the slide at 0.00, the default position. As you drag the guides, the cursor will display the new position.) On the slide, do the following:Press and hold CTRL, select the vertical guide, and then drag it left to the 3.50 position.Press and hold CTRL, select the vertical guide, and then drag it left to the 1.75 position.Press and hold CTRL, select the vertical guide, and then drag it right to the 1.75 position.Press and hold CTRL, select the vertical guide, and then drag it right to the 3.50 position.To reproduce the long, thin rectangle on this slide, do the following:On the Home tab, in the Drawing group, click Shapes, and then under Rectangles click Rectangle (first option from the left). On the slide, drag to draw a rectangle. Select the rectangle. Under DrawingTools, on the Format tab, in the Size group, do the following: In the ShapeHeight box, enter 0.05”.In the ShapeWidth box, enter 10”.Under DrawingTools, on the Format tab, in the bottom right corner of the ShapeStyles group, click the FormatShape dialog box launcher. In the FormatShape dialog box, in the left pane, click LineColor. In the LineColor pane, select Noline.Also in the FormatShape dialog box, in the left pane, click Shadow. In the Shadow pane, click the button next to Presets, under Outer click OffsetBottom (first row, second option from the left), and then do the following:In the Transparency box, enter 68%.In the Blur box, enter 3.5 pt.In the Distance box, enter 2.2 pt.Also in the FormatShape dialog box, in the left pane, click 3-D Format. In the 3-D Format pane, do the following:Under Bevel, click the button next to Top, and then under Bevel click Circle (first row, first option from the left). Next to Top, in the Width box, enter 15 pt,and in the Height box, enter 3 pt.Under Surface, click the button next to Lighting, and then under Neutral click Balance (first row, second option from the left). In the Angle box, enter 145°. On the slide, drag the rectangle about 0.25” above the 0.00 horizontal drawing guide. (Note: To view the ruler, on the View tab, in the Show/Hide group, select Ruler.)On the Home tab, in the Drawing group, click Arrange, point to Align, and then do the following:Click Align to Slide. Click AlignCenter.To reproduce the tab (rounded rectangle) on this slide, do the following:On the Home tab, in the Drawing group, click the More arrow to expand the shapes gallery, and then under Rectangles click Round Same Side Corner Rectangle (eighth option from the left). On the slide, drag to draw a rounded rectangle. On the slide, select the rounded rectangle. Under DrawingTools, on the Format tab, in the Size group, do the following: In the ShapeHeight box, enter 0.58”.In the ShapeWidth box, enter 1.33”.Under DrawingTools, on the Format tab, in the bottom right corner of the ShapeStyles group, click the FormatShape dialog box launcher. In the FormatShape dialog box, in the left pane, click LineColor. In the LineColor pane, select Noline.Also in the FormatShape dialog box, in the left pane, click Shadow. In the Shadow pane, click the button next to Presets, under Outer click OffsetBottom (first row, second option from the left), and then do the following:In the Transparency box, enter 68%.In the Blur box, enter 3.5 pt.In the Distance box, enter 2.2 pt.Also in the FormatShape dialog box, in the left pane, click 3-D Format. In the 3-D Format pane, do the following:Under Bevel, click the button next to Top, and then under Bevel click Circle (first row, first option from the left). Next to Top, in the Width box, enter 4 pt,and in the Height box, enter 4 pt.Under Surface, click the button next to Lighting, and then under Neutral click Balance (first row, second option from the left). In the Angle box, enter 145°. On the slide, drag the rounded rectangle until the bottom edge touches the top edge of the long, thin rectangle and it is centered on the 3.50 left vertical drawing guide.To reproduce the first text box on this slide, do the following:On the Insert tab, in the Text group, click TextBox. On the slide, drag to draw a text box. Enter TAB ONE,and then select the text. On the Home tab, in the Font group, do the following:In the Font list, select TW Cen MT Condensed.In the FontSize box, enter 22 pt. On the Home tab, in the Paragraph group, click Center to center the text in the text box.On the slide, drag the text box onto the rounded rectangle until the bottom edge of the text is 0.5” above the 0.00 horizontal drawing guide and it is centered on the 3.50 left vertical drawing guide.To reproduce the other text boxes on this slide, do the following:On the slide, select the first text box. On the Home tab, in the Clipboard group, click the arrow under Copy, and then click Duplicate. Repeat this process three more times for a total of five text boxes.Click in one of the duplicate text boxes, delete TAB ONE, and then enter TAB TWO. Drag the second text box until the bottom edge of the text is 0.5” above the 0.00 horizontal drawing guide and it is centered on the 1.75 left vertical drawing guide.Click in another duplicate text box, delete TAB ONE, and then enter TAB THREE.Drag the third text box until the bottom edge of the text is 0.5” above the 0.00 horizontal drawing guide and it is centered on the 0.00 vertical drawing guide. Click in another duplicate text box, delete TAB ONE, and then enter TAB FOUR.Drag the fourth text box until the bottom edge of the text is 0.5” above the 0.00 horizontal drawing guide and it is centered on the 1.75 right vertical drawing guide.Click in the last duplicate text box, delete TAB ONE, and then enter TAB FIVE.Drag the fifth text box until the bottom edge of the text is 0.5” above the 0.00 horizontal drawing guide and it is centered on the 3.50 right vertical drawing guide.Select the text in the first text box. On the Home tab, in the Font group, click the arrow next to Font Color, and then under ThemeColors click White, Background 1 (first row, first option from the left). Repeat this process for each of the other text boxes. To reproduce the animation effects on this slide, do the following:On the Animations tab, in the Advanced Animations group, click Animation Pane. On the Home tab, in the Editing group, click Select, and then click Selection Pane.In the Selection and Visibility task pane, select the rounded rectangle (“Round Same Side Corner Rectangle” object). In the Animation group, click the More arrow to expand the effects gallery, then under MotionPaths, click Lines. In the Animation group, click Effect Options and under Direction, click Right.On the slide, point to the endpoint (red arrow) of the selected motion path until the cursor becomes a two-headed arrow. Press and hold SHIFT, and then drag the endpoint to the 1.75 left vertical drawing guide. In the Selection and Visibility taskpane, select the rounded rectangle again. In the Advanced Animation group, click Add Animation, and under MotionPaths, click Lines. In the Animation group, click Effect Options and under Direction, click Right.In the Animation Pane, select the second animation effect (right motion path for the rounded rectangle).On the slide, point to the endpoint (red arrow) of the selected motion path until the cursor becomes a two-headed arrow. Press and hold SHIFT, and then drag the endpoint to the 0.00 vertical drawing guide. On the slide, point to the starting point (green arrow) of the selected motion path until the cursor becomes a two-headed arrow. Press and hold SHIFT, and then drag the starting point to the 1.75 left vertical drawing guide. In the Selection and Visibility taskpane, select the rounded rectangle again. In the Advanced Animation group, click Add Animation, and under MotionPaths, click Lines. In the Animation group, click Effect Options and under Direction, click Right.In the CustomAnimation task pane, select the third animation effect (right motion path for the rounded rectangle). On the slide, point to the endpoint (red arrow) of the selected motion path until the cursor becomes a two-headed arrow. Press and hold SHIFT, and then drag the endpoint to the 1.75 right vertical drawing guide. On the slide, point to the starting point (green arrow) of the selected motion path until the cursor becomes a two-headed arrow. Press and hold SHIFT, and then drag the starting point to the 0.00 vertical drawing guide. In the Selection and Visibility taskpane, select the rounded rectangle again. In the Advanced Animation group, click Add Animation, and under MotionPaths, click Lines. In the Animation group, click Effect Options and under Direction, click Right.In the CustomAnimation task pane, select the fourth animation effect (right motion path for the rounded rectangle).On the slide, point to the endpoint (red arrow) of the selected motion path until the cursor becomes a two-headed arrow. Press and hold SHIFT, and then drag the endpoint to the 3.50 right vertical drawing guide. On the slide, point to the starting point (green arrow) of the selected motion path until the cursor becomes a two-headed arrow. Press and hold SHIFT, and then drag the starting point to the 1.75 right vertical drawing guide. In the Animation Pane, press and hold down CTRL and select all four animation effects. On the Animations tab, in the Timing group, do the following:In the Start list, select On Click.In the Duration list, enter 01.00.On the View tab, in the Show group, clear Ruler and clear Guides.To reproduce the background effects on this slide, do the following:Right-click the slide background area, and then click Format Background. In the Format Background dialog box, click Fill in the left pane, select Gradient fill in the Fill pane, and then do the following:In the Type list, select Linear.Click the button next to Direction, and then click Linear Up (second row, second option from the left).Under Gradient stops, click Add or Remove until two stops appear on the slider, and customize the gradient stops as follows:Select Stop 1 on the slider, and then do the following:In the Position box, enter 65%.Click the button next to Color, and under Theme Colors, click White, Background 1 (first row, first option from the left).Select Stop 2 on the slider, and then do the following:In the Position box, enter 100%.Click the button next to Color, and under Theme Colors, click Blue, Accent 1, Lighter 60% (third row, fifth option from the left).
  14. Animated tab slides over five headers(Intermediate)Tip: You will need to use drawing guides to position the shapes and text on the slide. To display and set the drawing guides, do the following:On the Home tab, in the Slides group, click Layout, and then click Blank.Right-click the slide background area, and then click Grid and Guides.In the Grid and Guides dialog box, underGuidesettings, select Display drawing guides on screen. (Note: One horizontal and one vertical guide will display on the slide at 0.00, the default position. As you drag the guides, the cursor will display the new position.) On the slide, do the following:Press and hold CTRL, select the vertical guide, and then drag it left to the 3.50 position.Press and hold CTRL, select the vertical guide, and then drag it left to the 1.75 position.Press and hold CTRL, select the vertical guide, and then drag it right to the 1.75 position.Press and hold CTRL, select the vertical guide, and then drag it right to the 3.50 position.To reproduce the long, thin rectangle on this slide, do the following:On the Home tab, in the Drawing group, click Shapes, and then under Rectangles click Rectangle (first option from the left). On the slide, drag to draw a rectangle. Select the rectangle. Under DrawingTools, on the Format tab, in the Size group, do the following: In the ShapeHeight box, enter 0.05”.In the ShapeWidth box, enter 10”.Under DrawingTools, on the Format tab, in the bottom right corner of the ShapeStyles group, click the FormatShape dialog box launcher. In the FormatShape dialog box, in the left pane, click LineColor. In the LineColor pane, select Noline.Also in the FormatShape dialog box, in the left pane, click Shadow. In the Shadow pane, click the button next to Presets, under Outer click OffsetBottom (first row, second option from the left), and then do the following:In the Transparency box, enter 68%.In the Blur box, enter 3.5 pt.In the Distance box, enter 2.2 pt.Also in the FormatShape dialog box, in the left pane, click 3-D Format. In the 3-D Format pane, do the following:Under Bevel, click the button next to Top, and then under Bevel click Circle (first row, first option from the left). Next to Top, in the Width box, enter 15 pt,and in the Height box, enter 3 pt.Under Surface, click the button next to Lighting, and then under Neutral click Balance (first row, second option from the left). In the Angle box, enter 145°. On the slide, drag the rectangle about 0.25” above the 0.00 horizontal drawing guide. (Note: To view the ruler, on the View tab, in the Show/Hide group, select Ruler.)On the Home tab, in the Drawing group, click Arrange, point to Align, and then do the following:Click Align to Slide. Click AlignCenter.To reproduce the tab (rounded rectangle) on this slide, do the following:On the Home tab, in the Drawing group, click the More arrow to expand the shapes gallery, and then under Rectangles click Round Same Side Corner Rectangle (eighth option from the left). On the slide, drag to draw a rounded rectangle. On the slide, select the rounded rectangle. Under DrawingTools, on the Format tab, in the Size group, do the following: In the ShapeHeight box, enter 0.58”.In the ShapeWidth box, enter 1.33”.Under DrawingTools, on the Format tab, in the bottom right corner of the ShapeStyles group, click the FormatShape dialog box launcher. In the FormatShape dialog box, in the left pane, click LineColor. In the LineColor pane, select Noline.Also in the FormatShape dialog box, in the left pane, click Shadow. In the Shadow pane, click the button next to Presets, under Outer click OffsetBottom (first row, second option from the left), and then do the following:In the Transparency box, enter 68%.In the Blur box, enter 3.5 pt.In the Distance box, enter 2.2 pt.Also in the FormatShape dialog box, in the left pane, click 3-D Format. In the 3-D Format pane, do the following:Under Bevel, click the button next to Top, and then under Bevel click Circle (first row, first option from the left). Next to Top, in the Width box, enter 4 pt,and in the Height box, enter 4 pt.Under Surface, click the button next to Lighting, and then under Neutral click Balance (first row, second option from the left). In the Angle box, enter 145°. On the slide, drag the rounded rectangle until the bottom edge touches the top edge of the long, thin rectangle and it is centered on the 3.50 left vertical drawing guide.To reproduce the first text box on this slide, do the following:On the Insert tab, in the Text group, click TextBox. On the slide, drag to draw a text box. Enter TAB ONE,and then select the text. On the Home tab, in the Font group, do the following:In the Font list, select TW Cen MT Condensed.In the FontSize box, enter 22 pt. On the Home tab, in the Paragraph group, click Center to center the text in the text box.On the slide, drag the text box onto the rounded rectangle until the bottom edge of the text is 0.5” above the 0.00 horizontal drawing guide and it is centered on the 3.50 left vertical drawing guide.To reproduce the other text boxes on this slide, do the following:On the slide, select the first text box. On the Home tab, in the Clipboard group, click the arrow under Copy, and then click Duplicate. Repeat this process three more times for a total of five text boxes.Click in one of the duplicate text boxes, delete TAB ONE, and then enter TAB TWO. Drag the second text box until the bottom edge of the text is 0.5” above the 0.00 horizontal drawing guide and it is centered on the 1.75 left vertical drawing guide.Click in another duplicate text box, delete TAB ONE, and then enter TAB THREE.Drag the third text box until the bottom edge of the text is 0.5” above the 0.00 horizontal drawing guide and it is centered on the 0.00 vertical drawing guide. Click in another duplicate text box, delete TAB ONE, and then enter TAB FOUR.Drag the fourth text box until the bottom edge of the text is 0.5” above the 0.00 horizontal drawing guide and it is centered on the 1.75 right vertical drawing guide.Click in the last duplicate text box, delete TAB ONE, and then enter TAB FIVE.Drag the fifth text box until the bottom edge of the text is 0.5” above the 0.00 horizontal drawing guide and it is centered on the 3.50 right vertical drawing guide.Select the text in the first text box. On the Home tab, in the Font group, click the arrow next to Font Color, and then under ThemeColors click White, Background 1 (first row, first option from the left). Repeat this process for each of the other text boxes. To reproduce the animation effects on this slide, do the following:On the Animations tab, in the Advanced Animations group, click Animation Pane. On the Home tab, in the Editing group, click Select, and then click Selection Pane.In the Selection and Visibility task pane, select the rounded rectangle (“Round Same Side Corner Rectangle” object). In the Animation group, click the More arrow to expand the effects gallery, then under MotionPaths, click Lines. In the Animation group, click Effect Options and under Direction, click Right.On the slide, point to the endpoint (red arrow) of the selected motion path until the cursor becomes a two-headed arrow. Press and hold SHIFT, and then drag the endpoint to the 1.75 left vertical drawing guide. In the Selection and Visibility taskpane, select the rounded rectangle again. In the Advanced Animation group, click Add Animation, and under MotionPaths, click Lines. In the Animation group, click Effect Options and under Direction, click Right.In the Animation Pane, select the second animation effect (right motion path for the rounded rectangle).On the slide, point to the endpoint (red arrow) of the selected motion path until the cursor becomes a two-headed arrow. Press and hold SHIFT, and then drag the endpoint to the 0.00 vertical drawing guide. On the slide, point to the starting point (green arrow) of the selected motion path until the cursor becomes a two-headed arrow. Press and hold SHIFT, and then drag the starting point to the 1.75 left vertical drawing guide. In the Selection and Visibility taskpane, select the rounded rectangle again. In the Advanced Animation group, click Add Animation, and under MotionPaths, click Lines. In the Animation group, click Effect Options and under Direction, click Right.In the CustomAnimation task pane, select the third animation effect (right motion path for the rounded rectangle). On the slide, point to the endpoint (red arrow) of the selected motion path until the cursor becomes a two-headed arrow. Press and hold SHIFT, and then drag the endpoint to the 1.75 right vertical drawing guide. On the slide, point to the starting point (green arrow) of the selected motion path until the cursor becomes a two-headed arrow. Press and hold SHIFT, and then drag the starting point to the 0.00 vertical drawing guide. In the Selection and Visibility taskpane, select the rounded rectangle again. In the Advanced Animation group, click Add Animation, and under MotionPaths, click Lines. In the Animation group, click Effect Options and under Direction, click Right.In the CustomAnimation task pane, select the fourth animation effect (right motion path for the rounded rectangle).On the slide, point to the endpoint (red arrow) of the selected motion path until the cursor becomes a two-headed arrow. Press and hold SHIFT, and then drag the endpoint to the 3.50 right vertical drawing guide. On the slide, point to the starting point (green arrow) of the selected motion path until the cursor becomes a two-headed arrow. Press and hold SHIFT, and then drag the starting point to the 1.75 right vertical drawing guide. In the Animation Pane, press and hold down CTRL and select all four animation effects. On the Animations tab, in the Timing group, do the following:In the Start list, select On Click.In the Duration list, enter 01.00.On the View tab, in the Show group, clear Ruler and clear Guides.To reproduce the background effects on this slide, do the following:Right-click the slide background area, and then click Format Background. In the Format Background dialog box, click Fill in the left pane, select Gradient fill in the Fill pane, and then do the following:In the Type list, select Linear.Click the button next to Direction, and then click Linear Up (second row, second option from the left).Under Gradient stops, click Add or Remove until two stops appear on the slider, and customize the gradient stops as follows:Select Stop 1 on the slider, and then do the following:In the Position box, enter 65%.Click the button next to Color, and under Theme Colors, click White, Background 1 (first row, first option from the left).Select Stop 2 on the slider, and then do the following:In the Position box, enter 100%.Click the button next to Color, and under Theme Colors, click Blue, Accent 1, Lighter 60% (third row, fifth option from the left).
  15. Animated tab slides over five headers(Intermediate)Tip: You will need to use drawing guides to position the shapes and text on the slide. To display and set the drawing guides, do the following:On the Home tab, in the Slides group, click Layout, and then click Blank.Right-click the slide background area, and then click Grid and Guides.In the Grid and Guides dialog box, underGuidesettings, select Display drawing guides on screen. (Note: One horizontal and one vertical guide will display on the slide at 0.00, the default position. As you drag the guides, the cursor will display the new position.) On the slide, do the following:Press and hold CTRL, select the vertical guide, and then drag it left to the 3.50 position.Press and hold CTRL, select the vertical guide, and then drag it left to the 1.75 position.Press and hold CTRL, select the vertical guide, and then drag it right to the 1.75 position.Press and hold CTRL, select the vertical guide, and then drag it right to the 3.50 position.To reproduce the long, thin rectangle on this slide, do the following:On the Home tab, in the Drawing group, click Shapes, and then under Rectangles click Rectangle (first option from the left). On the slide, drag to draw a rectangle. Select the rectangle. Under DrawingTools, on the Format tab, in the Size group, do the following: In the ShapeHeight box, enter 0.05”.In the ShapeWidth box, enter 10”.Under DrawingTools, on the Format tab, in the bottom right corner of the ShapeStyles group, click the FormatShape dialog box launcher. In the FormatShape dialog box, in the left pane, click LineColor. In the LineColor pane, select Noline.Also in the FormatShape dialog box, in the left pane, click Shadow. In the Shadow pane, click the button next to Presets, under Outer click OffsetBottom (first row, second option from the left), and then do the following:In the Transparency box, enter 68%.In the Blur box, enter 3.5 pt.In the Distance box, enter 2.2 pt.Also in the FormatShape dialog box, in the left pane, click 3-D Format. In the 3-D Format pane, do the following:Under Bevel, click the button next to Top, and then under Bevel click Circle (first row, first option from the left). Next to Top, in the Width box, enter 15 pt,and in the Height box, enter 3 pt.Under Surface, click the button next to Lighting, and then under Neutral click Balance (first row, second option from the left). In the Angle box, enter 145°. On the slide, drag the rectangle about 0.25” above the 0.00 horizontal drawing guide. (Note: To view the ruler, on the View tab, in the Show/Hide group, select Ruler.)On the Home tab, in the Drawing group, click Arrange, point to Align, and then do the following:Click Align to Slide. Click AlignCenter.To reproduce the tab (rounded rectangle) on this slide, do the following:On the Home tab, in the Drawing group, click the More arrow to expand the shapes gallery, and then under Rectangles click Round Same Side Corner Rectangle (eighth option from the left). On the slide, drag to draw a rounded rectangle. On the slide, select the rounded rectangle. Under DrawingTools, on the Format tab, in the Size group, do the following: In the ShapeHeight box, enter 0.58”.In the ShapeWidth box, enter 1.33”.Under DrawingTools, on the Format tab, in the bottom right corner of the ShapeStyles group, click the FormatShape dialog box launcher. In the FormatShape dialog box, in the left pane, click LineColor. In the LineColor pane, select Noline.Also in the FormatShape dialog box, in the left pane, click Shadow. In the Shadow pane, click the button next to Presets, under Outer click OffsetBottom (first row, second option from the left), and then do the following:In the Transparency box, enter 68%.In the Blur box, enter 3.5 pt.In the Distance box, enter 2.2 pt.Also in the FormatShape dialog box, in the left pane, click 3-D Format. In the 3-D Format pane, do the following:Under Bevel, click the button next to Top, and then under Bevel click Circle (first row, first option from the left). Next to Top, in the Width box, enter 4 pt,and in the Height box, enter 4 pt.Under Surface, click the button next to Lighting, and then under Neutral click Balance (first row, second option from the left). In the Angle box, enter 145°. On the slide, drag the rounded rectangle until the bottom edge touches the top edge of the long, thin rectangle and it is centered on the 3.50 left vertical drawing guide.To reproduce the first text box on this slide, do the following:On the Insert tab, in the Text group, click TextBox. On the slide, drag to draw a text box. Enter TAB ONE,and then select the text. On the Home tab, in the Font group, do the following:In the Font list, select TW Cen MT Condensed.In the FontSize box, enter 22 pt. On the Home tab, in the Paragraph group, click Center to center the text in the text box.On the slide, drag the text box onto the rounded rectangle until the bottom edge of the text is 0.5” above the 0.00 horizontal drawing guide and it is centered on the 3.50 left vertical drawing guide.To reproduce the other text boxes on this slide, do the following:On the slide, select the first text box. On the Home tab, in the Clipboard group, click the arrow under Copy, and then click Duplicate. Repeat this process three more times for a total of five text boxes.Click in one of the duplicate text boxes, delete TAB ONE, and then enter TAB TWO. Drag the second text box until the bottom edge of the text is 0.5” above the 0.00 horizontal drawing guide and it is centered on the 1.75 left vertical drawing guide.Click in another duplicate text box, delete TAB ONE, and then enter TAB THREE.Drag the third text box until the bottom edge of the text is 0.5” above the 0.00 horizontal drawing guide and it is centered on the 0.00 vertical drawing guide. Click in another duplicate text box, delete TAB ONE, and then enter TAB FOUR.Drag the fourth text box until the bottom edge of the text is 0.5” above the 0.00 horizontal drawing guide and it is centered on the 1.75 right vertical drawing guide.Click in the last duplicate text box, delete TAB ONE, and then enter TAB FIVE.Drag the fifth text box until the bottom edge of the text is 0.5” above the 0.00 horizontal drawing guide and it is centered on the 3.50 right vertical drawing guide.Select the text in the first text box. On the Home tab, in the Font group, click the arrow next to Font Color, and then under ThemeColors click White, Background 1 (first row, first option from the left). Repeat this process for each of the other text boxes. To reproduce the animation effects on this slide, do the following:On the Animations tab, in the Advanced Animations group, click Animation Pane. On the Home tab, in the Editing group, click Select, and then click Selection Pane.In the Selection and Visibility task pane, select the rounded rectangle (“Round Same Side Corner Rectangle” object). In the Animation group, click the More arrow to expand the effects gallery, then under MotionPaths, click Lines. In the Animation group, click Effect Options and under Direction, click Right.On the slide, point to the endpoint (red arrow) of the selected motion path until the cursor becomes a two-headed arrow. Press and hold SHIFT, and then drag the endpoint to the 1.75 left vertical drawing guide. In the Selection and Visibility taskpane, select the rounded rectangle again. In the Advanced Animation group, click Add Animation, and under MotionPaths, click Lines. In the Animation group, click Effect Options and under Direction, click Right.In the Animation Pane, select the second animation effect (right motion path for the rounded rectangle).On the slide, point to the endpoint (red arrow) of the selected motion path until the cursor becomes a two-headed arrow. Press and hold SHIFT, and then drag the endpoint to the 0.00 vertical drawing guide. On the slide, point to the starting point (green arrow) of the selected motion path until the cursor becomes a two-headed arrow. Press and hold SHIFT, and then drag the starting point to the 1.75 left vertical drawing guide. In the Selection and Visibility taskpane, select the rounded rectangle again. In the Advanced Animation group, click Add Animation, and under MotionPaths, click Lines. In the Animation group, click Effect Options and under Direction, click Right.In the CustomAnimation task pane, select the third animation effect (right motion path for the rounded rectangle). On the slide, point to the endpoint (red arrow) of the selected motion path until the cursor becomes a two-headed arrow. Press and hold SHIFT, and then drag the endpoint to the 1.75 right vertical drawing guide. On the slide, point to the starting point (green arrow) of the selected motion path until the cursor becomes a two-headed arrow. Press and hold SHIFT, and then drag the starting point to the 0.00 vertical drawing guide. In the Selection and Visibility taskpane, select the rounded rectangle again. In the Advanced Animation group, click Add Animation, and under MotionPaths, click Lines. In the Animation group, click Effect Options and under Direction, click Right.In the CustomAnimation task pane, select the fourth animation effect (right motion path for the rounded rectangle).On the slide, point to the endpoint (red arrow) of the selected motion path until the cursor becomes a two-headed arrow. Press and hold SHIFT, and then drag the endpoint to the 3.50 right vertical drawing guide. On the slide, point to the starting point (green arrow) of the selected motion path until the cursor becomes a two-headed arrow. Press and hold SHIFT, and then drag the starting point to the 1.75 right vertical drawing guide. In the Animation Pane, press and hold down CTRL and select all four animation effects. On the Animations tab, in the Timing group, do the following:In the Start list, select On Click.In the Duration list, enter 01.00.On the View tab, in the Show group, clear Ruler and clear Guides.To reproduce the background effects on this slide, do the following:Right-click the slide background area, and then click Format Background. In the Format Background dialog box, click Fill in the left pane, select Gradient fill in the Fill pane, and then do the following:In the Type list, select Linear.Click the button next to Direction, and then click Linear Up (second row, second option from the left).Under Gradient stops, click Add or Remove until two stops appear on the slider, and customize the gradient stops as follows:Select Stop 1 on the slider, and then do the following:In the Position box, enter 65%.Click the button next to Color, and under Theme Colors, click White, Background 1 (first row, first option from the left).Select Stop 2 on the slider, and then do the following:In the Position box, enter 100%.Click the button next to Color, and under Theme Colors, click Blue, Accent 1, Lighter 60% (third row, fifth option from the left).
  16. Animated tab slides over five headers(Intermediate)Tip: You will need to use drawing guides to position the shapes and text on the slide. To display and set the drawing guides, do the following:On the Home tab, in the Slides group, click Layout, and then click Blank.Right-click the slide background area, and then click Grid and Guides.In the Grid and Guides dialog box, underGuidesettings, select Display drawing guides on screen. (Note: One horizontal and one vertical guide will display on the slide at 0.00, the default position. As you drag the guides, the cursor will display the new position.) On the slide, do the following:Press and hold CTRL, select the vertical guide, and then drag it left to the 3.50 position.Press and hold CTRL, select the vertical guide, and then drag it left to the 1.75 position.Press and hold CTRL, select the vertical guide, and then drag it right to the 1.75 position.Press and hold CTRL, select the vertical guide, and then drag it right to the 3.50 position.To reproduce the long, thin rectangle on this slide, do the following:On the Home tab, in the Drawing group, click Shapes, and then under Rectangles click Rectangle (first option from the left). On the slide, drag to draw a rectangle. Select the rectangle. Under DrawingTools, on the Format tab, in the Size group, do the following: In the ShapeHeight box, enter 0.05”.In the ShapeWidth box, enter 10”.Under DrawingTools, on the Format tab, in the bottom right corner of the ShapeStyles group, click the FormatShape dialog box launcher. In the FormatShape dialog box, in the left pane, click LineColor. In the LineColor pane, select Noline.Also in the FormatShape dialog box, in the left pane, click Shadow. In the Shadow pane, click the button next to Presets, under Outer click OffsetBottom (first row, second option from the left), and then do the following:In the Transparency box, enter 68%.In the Blur box, enter 3.5 pt.In the Distance box, enter 2.2 pt.Also in the FormatShape dialog box, in the left pane, click 3-D Format. In the 3-D Format pane, do the following:Under Bevel, click the button next to Top, and then under Bevel click Circle (first row, first option from the left). Next to Top, in the Width box, enter 15 pt,and in the Height box, enter 3 pt.Under Surface, click the button next to Lighting, and then under Neutral click Balance (first row, second option from the left). In the Angle box, enter 145°. On the slide, drag the rectangle about 0.25” above the 0.00 horizontal drawing guide. (Note: To view the ruler, on the View tab, in the Show/Hide group, select Ruler.)On the Home tab, in the Drawing group, click Arrange, point to Align, and then do the following:Click Align to Slide. Click AlignCenter.To reproduce the tab (rounded rectangle) on this slide, do the following:On the Home tab, in the Drawing group, click the More arrow to expand the shapes gallery, and then under Rectangles click Round Same Side Corner Rectangle (eighth option from the left). On the slide, drag to draw a rounded rectangle. On the slide, select the rounded rectangle. Under DrawingTools, on the Format tab, in the Size group, do the following: In the ShapeHeight box, enter 0.58”.In the ShapeWidth box, enter 1.33”.Under DrawingTools, on the Format tab, in the bottom right corner of the ShapeStyles group, click the FormatShape dialog box launcher. In the FormatShape dialog box, in the left pane, click LineColor. In the LineColor pane, select Noline.Also in the FormatShape dialog box, in the left pane, click Shadow. In the Shadow pane, click the button next to Presets, under Outer click OffsetBottom (first row, second option from the left), and then do the following:In the Transparency box, enter 68%.In the Blur box, enter 3.5 pt.In the Distance box, enter 2.2 pt.Also in the FormatShape dialog box, in the left pane, click 3-D Format. In the 3-D Format pane, do the following:Under Bevel, click the button next to Top, and then under Bevel click Circle (first row, first option from the left). Next to Top, in the Width box, enter 4 pt,and in the Height box, enter 4 pt.Under Surface, click the button next to Lighting, and then under Neutral click Balance (first row, second option from the left). In the Angle box, enter 145°. On the slide, drag the rounded rectangle until the bottom edge touches the top edge of the long, thin rectangle and it is centered on the 3.50 left vertical drawing guide.To reproduce the first text box on this slide, do the following:On the Insert tab, in the Text group, click TextBox. On the slide, drag to draw a text box. Enter TAB ONE,and then select the text. On the Home tab, in the Font group, do the following:In the Font list, select TW Cen MT Condensed.In the FontSize box, enter 22 pt. On the Home tab, in the Paragraph group, click Center to center the text in the text box.On the slide, drag the text box onto the rounded rectangle until the bottom edge of the text is 0.5” above the 0.00 horizontal drawing guide and it is centered on the 3.50 left vertical drawing guide.To reproduce the other text boxes on this slide, do the following:On the slide, select the first text box. On the Home tab, in the Clipboard group, click the arrow under Copy, and then click Duplicate. Repeat this process three more times for a total of five text boxes.Click in one of the duplicate text boxes, delete TAB ONE, and then enter TAB TWO. Drag the second text box until the bottom edge of the text is 0.5” above the 0.00 horizontal drawing guide and it is centered on the 1.75 left vertical drawing guide.Click in another duplicate text box, delete TAB ONE, and then enter TAB THREE.Drag the third text box until the bottom edge of the text is 0.5” above the 0.00 horizontal drawing guide and it is centered on the 0.00 vertical drawing guide. Click in another duplicate text box, delete TAB ONE, and then enter TAB FOUR.Drag the fourth text box until the bottom edge of the text is 0.5” above the 0.00 horizontal drawing guide and it is centered on the 1.75 right vertical drawing guide.Click in the last duplicate text box, delete TAB ONE, and then enter TAB FIVE.Drag the fifth text box until the bottom edge of the text is 0.5” above the 0.00 horizontal drawing guide and it is centered on the 3.50 right vertical drawing guide.Select the text in the first text box. On the Home tab, in the Font group, click the arrow next to Font Color, and then under ThemeColors click White, Background 1 (first row, first option from the left). Repeat this process for each of the other text boxes. To reproduce the animation effects on this slide, do the following:On the Animations tab, in the Advanced Animations group, click Animation Pane. On the Home tab, in the Editing group, click Select, and then click Selection Pane.In the Selection and Visibility task pane, select the rounded rectangle (“Round Same Side Corner Rectangle” object). In the Animation group, click the More arrow to expand the effects gallery, then under MotionPaths, click Lines. In the Animation group, click Effect Options and under Direction, click Right.On the slide, point to the endpoint (red arrow) of the selected motion path until the cursor becomes a two-headed arrow. Press and hold SHIFT, and then drag the endpoint to the 1.75 left vertical drawing guide. In the Selection and Visibility taskpane, select the rounded rectangle again. In the Advanced Animation group, click Add Animation, and under MotionPaths, click Lines. In the Animation group, click Effect Options and under Direction, click Right.In the Animation Pane, select the second animation effect (right motion path for the rounded rectangle).On the slide, point to the endpoint (red arrow) of the selected motion path until the cursor becomes a two-headed arrow. Press and hold SHIFT, and then drag the endpoint to the 0.00 vertical drawing guide. On the slide, point to the starting point (green arrow) of the selected motion path until the cursor becomes a two-headed arrow. Press and hold SHIFT, and then drag the starting point to the 1.75 left vertical drawing guide. In the Selection and Visibility taskpane, select the rounded rectangle again. In the Advanced Animation group, click Add Animation, and under MotionPaths, click Lines. In the Animation group, click Effect Options and under Direction, click Right.In the CustomAnimation task pane, select the third animation effect (right motion path for the rounded rectangle). On the slide, point to the endpoint (red arrow) of the selected motion path until the cursor becomes a two-headed arrow. Press and hold SHIFT, and then drag the endpoint to the 1.75 right vertical drawing guide. On the slide, point to the starting point (green arrow) of the selected motion path until the cursor becomes a two-headed arrow. Press and hold SHIFT, and then drag the starting point to the 0.00 vertical drawing guide. In the Selection and Visibility taskpane, select the rounded rectangle again. In the Advanced Animation group, click Add Animation, and under MotionPaths, click Lines. In the Animation group, click Effect Options and under Direction, click Right.In the CustomAnimation task pane, select the fourth animation effect (right motion path for the rounded rectangle).On the slide, point to the endpoint (red arrow) of the selected motion path until the cursor becomes a two-headed arrow. Press and hold SHIFT, and then drag the endpoint to the 3.50 right vertical drawing guide. On the slide, point to the starting point (green arrow) of the selected motion path until the cursor becomes a two-headed arrow. Press and hold SHIFT, and then drag the starting point to the 1.75 right vertical drawing guide. In the Animation Pane, press and hold down CTRL and select all four animation effects. On the Animations tab, in the Timing group, do the following:In the Start list, select On Click.In the Duration list, enter 01.00.On the View tab, in the Show group, clear Ruler and clear Guides.To reproduce the background effects on this slide, do the following:Right-click the slide background area, and then click Format Background. In the Format Background dialog box, click Fill in the left pane, select Gradient fill in the Fill pane, and then do the following:In the Type list, select Linear.Click the button next to Direction, and then click Linear Up (second row, second option from the left).Under Gradient stops, click Add or Remove until two stops appear on the slider, and customize the gradient stops as follows:Select Stop 1 on the slider, and then do the following:In the Position box, enter 65%.Click the button next to Color, and under Theme Colors, click White, Background 1 (first row, first option from the left).Select Stop 2 on the slider, and then do the following:In the Position box, enter 100%.Click the button next to Color, and under Theme Colors, click Blue, Accent 1, Lighter 60% (third row, fifth option from the left).
  17. Animated tab slides over five headers(Intermediate)Tip: You will need to use drawing guides to position the shapes and text on the slide. To display and set the drawing guides, do the following:On the Home tab, in the Slides group, click Layout, and then click Blank.Right-click the slide background area, and then click Grid and Guides.In the Grid and Guides dialog box, underGuidesettings, select Display drawing guides on screen. (Note: One horizontal and one vertical guide will display on the slide at 0.00, the default position. As you drag the guides, the cursor will display the new position.) On the slide, do the following:Press and hold CTRL, select the vertical guide, and then drag it left to the 3.50 position.Press and hold CTRL, select the vertical guide, and then drag it left to the 1.75 position.Press and hold CTRL, select the vertical guide, and then drag it right to the 1.75 position.Press and hold CTRL, select the vertical guide, and then drag it right to the 3.50 position.To reproduce the long, thin rectangle on this slide, do the following:On the Home tab, in the Drawing group, click Shapes, and then under Rectangles click Rectangle (first option from the left). On the slide, drag to draw a rectangle. Select the rectangle. Under DrawingTools, on the Format tab, in the Size group, do the following: In the ShapeHeight box, enter 0.05”.In the ShapeWidth box, enter 10”.Under DrawingTools, on the Format tab, in the bottom right corner of the ShapeStyles group, click the FormatShape dialog box launcher. In the FormatShape dialog box, in the left pane, click LineColor. In the LineColor pane, select Noline.Also in the FormatShape dialog box, in the left pane, click Shadow. In the Shadow pane, click the button next to Presets, under Outer click OffsetBottom (first row, second option from the left), and then do the following:In the Transparency box, enter 68%.In the Blur box, enter 3.5 pt.In the Distance box, enter 2.2 pt.Also in the FormatShape dialog box, in the left pane, click 3-D Format. In the 3-D Format pane, do the following:Under Bevel, click the button next to Top, and then under Bevel click Circle (first row, first option from the left). Next to Top, in the Width box, enter 15 pt,and in the Height box, enter 3 pt.Under Surface, click the button next to Lighting, and then under Neutral click Balance (first row, second option from the left). In the Angle box, enter 145°. On the slide, drag the rectangle about 0.25” above the 0.00 horizontal drawing guide. (Note: To view the ruler, on the View tab, in the Show/Hide group, select Ruler.)On the Home tab, in the Drawing group, click Arrange, point to Align, and then do the following:Click Align to Slide. Click AlignCenter.To reproduce the tab (rounded rectangle) on this slide, do the following:On the Home tab, in the Drawing group, click the More arrow to expand the shapes gallery, and then under Rectangles click Round Same Side Corner Rectangle (eighth option from the left). On the slide, drag to draw a rounded rectangle. On the slide, select the rounded rectangle. Under DrawingTools, on the Format tab, in the Size group, do the following: In the ShapeHeight box, enter 0.58”.In the ShapeWidth box, enter 1.33”.Under DrawingTools, on the Format tab, in the bottom right corner of the ShapeStyles group, click the FormatShape dialog box launcher. In the FormatShape dialog box, in the left pane, click LineColor. In the LineColor pane, select Noline.Also in the FormatShape dialog box, in the left pane, click Shadow. In the Shadow pane, click the button next to Presets, under Outer click OffsetBottom (first row, second option from the left), and then do the following:In the Transparency box, enter 68%.In the Blur box, enter 3.5 pt.In the Distance box, enter 2.2 pt.Also in the FormatShape dialog box, in the left pane, click 3-D Format. In the 3-D Format pane, do the following:Under Bevel, click the button next to Top, and then under Bevel click Circle (first row, first option from the left). Next to Top, in the Width box, enter 4 pt,and in the Height box, enter 4 pt.Under Surface, click the button next to Lighting, and then under Neutral click Balance (first row, second option from the left). In the Angle box, enter 145°. On the slide, drag the rounded rectangle until the bottom edge touches the top edge of the long, thin rectangle and it is centered on the 3.50 left vertical drawing guide.To reproduce the first text box on this slide, do the following:On the Insert tab, in the Text group, click TextBox. On the slide, drag to draw a text box. Enter TAB ONE,and then select the text. On the Home tab, in the Font group, do the following:In the Font list, select TW Cen MT Condensed.In the FontSize box, enter 22 pt. On the Home tab, in the Paragraph group, click Center to center the text in the text box.On the slide, drag the text box onto the rounded rectangle until the bottom edge of the text is 0.5” above the 0.00 horizontal drawing guide and it is centered on the 3.50 left vertical drawing guide.To reproduce the other text boxes on this slide, do the following:On the slide, select the first text box. On the Home tab, in the Clipboard group, click the arrow under Copy, and then click Duplicate. Repeat this process three more times for a total of five text boxes.Click in one of the duplicate text boxes, delete TAB ONE, and then enter TAB TWO. Drag the second text box until the bottom edge of the text is 0.5” above the 0.00 horizontal drawing guide and it is centered on the 1.75 left vertical drawing guide.Click in another duplicate text box, delete TAB ONE, and then enter TAB THREE.Drag the third text box until the bottom edge of the text is 0.5” above the 0.00 horizontal drawing guide and it is centered on the 0.00 vertical drawing guide. Click in another duplicate text box, delete TAB ONE, and then enter TAB FOUR.Drag the fourth text box until the bottom edge of the text is 0.5” above the 0.00 horizontal drawing guide and it is centered on the 1.75 right vertical drawing guide.Click in the last duplicate text box, delete TAB ONE, and then enter TAB FIVE.Drag the fifth text box until the bottom edge of the text is 0.5” above the 0.00 horizontal drawing guide and it is centered on the 3.50 right vertical drawing guide.Select the text in the first text box. On the Home tab, in the Font group, click the arrow next to Font Color, and then under ThemeColors click White, Background 1 (first row, first option from the left). Repeat this process for each of the other text boxes. To reproduce the animation effects on this slide, do the following:On the Animations tab, in the Advanced Animations group, click Animation Pane. On the Home tab, in the Editing group, click Select, and then click Selection Pane.In the Selection and Visibility task pane, select the rounded rectangle (“Round Same Side Corner Rectangle” object). In the Animation group, click the More arrow to expand the effects gallery, then under MotionPaths, click Lines. In the Animation group, click Effect Options and under Direction, click Right.On the slide, point to the endpoint (red arrow) of the selected motion path until the cursor becomes a two-headed arrow. Press and hold SHIFT, and then drag the endpoint to the 1.75 left vertical drawing guide. In the Selection and Visibility taskpane, select the rounded rectangle again. In the Advanced Animation group, click Add Animation, and under MotionPaths, click Lines. In the Animation group, click Effect Options and under Direction, click Right.In the Animation Pane, select the second animation effect (right motion path for the rounded rectangle).On the slide, point to the endpoint (red arrow) of the selected motion path until the cursor becomes a two-headed arrow. Press and hold SHIFT, and then drag the endpoint to the 0.00 vertical drawing guide. On the slide, point to the starting point (green arrow) of the selected motion path until the cursor becomes a two-headed arrow. Press and hold SHIFT, and then drag the starting point to the 1.75 left vertical drawing guide. In the Selection and Visibility taskpane, select the rounded rectangle again. In the Advanced Animation group, click Add Animation, and under MotionPaths, click Lines. In the Animation group, click Effect Options and under Direction, click Right.In the CustomAnimation task pane, select the third animation effect (right motion path for the rounded rectangle). On the slide, point to the endpoint (red arrow) of the selected motion path until the cursor becomes a two-headed arrow. Press and hold SHIFT, and then drag the endpoint to the 1.75 right vertical drawing guide. On the slide, point to the starting point (green arrow) of the selected motion path until the cursor becomes a two-headed arrow. Press and hold SHIFT, and then drag the starting point to the 0.00 vertical drawing guide. In the Selection and Visibility taskpane, select the rounded rectangle again. In the Advanced Animation group, click Add Animation, and under MotionPaths, click Lines. In the Animation group, click Effect Options and under Direction, click Right.In the CustomAnimation task pane, select the fourth animation effect (right motion path for the rounded rectangle).On the slide, point to the endpoint (red arrow) of the selected motion path until the cursor becomes a two-headed arrow. Press and hold SHIFT, and then drag the endpoint to the 3.50 right vertical drawing guide. On the slide, point to the starting point (green arrow) of the selected motion path until the cursor becomes a two-headed arrow. Press and hold SHIFT, and then drag the starting point to the 1.75 right vertical drawing guide. In the Animation Pane, press and hold down CTRL and select all four animation effects. On the Animations tab, in the Timing group, do the following:In the Start list, select On Click.In the Duration list, enter 01.00.On the View tab, in the Show group, clear Ruler and clear Guides.To reproduce the background effects on this slide, do the following:Right-click the slide background area, and then click Format Background. In the Format Background dialog box, click Fill in the left pane, select Gradient fill in the Fill pane, and then do the following:In the Type list, select Linear.Click the button next to Direction, and then click Linear Up (second row, second option from the left).Under Gradient stops, click Add or Remove until two stops appear on the slider, and customize the gradient stops as follows:Select Stop 1 on the slider, and then do the following:In the Position box, enter 65%.Click the button next to Color, and under Theme Colors, click White, Background 1 (first row, first option from the left).Select Stop 2 on the slider, and then do the following:In the Position box, enter 100%.Click the button next to Color, and under Theme Colors, click Blue, Accent 1, Lighter 60% (third row, fifth option from the left).
  18. Animated tab slides over five headers(Intermediate)Tip: You will need to use drawing guides to position the shapes and text on the slide. To display and set the drawing guides, do the following:On the Home tab, in the Slides group, click Layout, and then click Blank.Right-click the slide background area, and then click Grid and Guides.In the Grid and Guides dialog box, underGuidesettings, select Display drawing guides on screen. (Note: One horizontal and one vertical guide will display on the slide at 0.00, the default position. As you drag the guides, the cursor will display the new position.) On the slide, do the following:Press and hold CTRL, select the vertical guide, and then drag it left to the 3.50 position.Press and hold CTRL, select the vertical guide, and then drag it left to the 1.75 position.Press and hold CTRL, select the vertical guide, and then drag it right to the 1.75 position.Press and hold CTRL, select the vertical guide, and then drag it right to the 3.50 position.To reproduce the long, thin rectangle on this slide, do the following:On the Home tab, in the Drawing group, click Shapes, and then under Rectangles click Rectangle (first option from the left). On the slide, drag to draw a rectangle. Select the rectangle. Under DrawingTools, on the Format tab, in the Size group, do the following: In the ShapeHeight box, enter 0.05”.In the ShapeWidth box, enter 10”.Under DrawingTools, on the Format tab, in the bottom right corner of the ShapeStyles group, click the FormatShape dialog box launcher. In the FormatShape dialog box, in the left pane, click LineColor. In the LineColor pane, select Noline.Also in the FormatShape dialog box, in the left pane, click Shadow. In the Shadow pane, click the button next to Presets, under Outer click OffsetBottom (first row, second option from the left), and then do the following:In the Transparency box, enter 68%.In the Blur box, enter 3.5 pt.In the Distance box, enter 2.2 pt.Also in the FormatShape dialog box, in the left pane, click 3-D Format. In the 3-D Format pane, do the following:Under Bevel, click the button next to Top, and then under Bevel click Circle (first row, first option from the left). Next to Top, in the Width box, enter 15 pt,and in the Height box, enter 3 pt.Under Surface, click the button next to Lighting, and then under Neutral click Balance (first row, second option from the left). In the Angle box, enter 145°. On the slide, drag the rectangle about 0.25” above the 0.00 horizontal drawing guide. (Note: To view the ruler, on the View tab, in the Show/Hide group, select Ruler.)On the Home tab, in the Drawing group, click Arrange, point to Align, and then do the following:Click Align to Slide. Click AlignCenter.To reproduce the tab (rounded rectangle) on this slide, do the following:On the Home tab, in the Drawing group, click the More arrow to expand the shapes gallery, and then under Rectangles click Round Same Side Corner Rectangle (eighth option from the left). On the slide, drag to draw a rounded rectangle. On the slide, select the rounded rectangle. Under DrawingTools, on the Format tab, in the Size group, do the following: In the ShapeHeight box, enter 0.58”.In the ShapeWidth box, enter 1.33”.Under DrawingTools, on the Format tab, in the bottom right corner of the ShapeStyles group, click the FormatShape dialog box launcher. In the FormatShape dialog box, in the left pane, click LineColor. In the LineColor pane, select Noline.Also in the FormatShape dialog box, in the left pane, click Shadow. In the Shadow pane, click the button next to Presets, under Outer click OffsetBottom (first row, second option from the left), and then do the following:In the Transparency box, enter 68%.In the Blur box, enter 3.5 pt.In the Distance box, enter 2.2 pt.Also in the FormatShape dialog box, in the left pane, click 3-D Format. In the 3-D Format pane, do the following:Under Bevel, click the button next to Top, and then under Bevel click Circle (first row, first option from the left). Next to Top, in the Width box, enter 4 pt,and in the Height box, enter 4 pt.Under Surface, click the button next to Lighting, and then under Neutral click Balance (first row, second option from the left). In the Angle box, enter 145°. On the slide, drag the rounded rectangle until the bottom edge touches the top edge of the long, thin rectangle and it is centered on the 3.50 left vertical drawing guide.To reproduce the first text box on this slide, do the following:On the Insert tab, in the Text group, click TextBox. On the slide, drag to draw a text box. Enter TAB ONE,and then select the text. On the Home tab, in the Font group, do the following:In the Font list, select TW Cen MT Condensed.In the FontSize box, enter 22 pt. On the Home tab, in the Paragraph group, click Center to center the text in the text box.On the slide, drag the text box onto the rounded rectangle until the bottom edge of the text is 0.5” above the 0.00 horizontal drawing guide and it is centered on the 3.50 left vertical drawing guide.To reproduce the other text boxes on this slide, do the following:On the slide, select the first text box. On the Home tab, in the Clipboard group, click the arrow under Copy, and then click Duplicate. Repeat this process three more times for a total of five text boxes.Click in one of the duplicate text boxes, delete TAB ONE, and then enter TAB TWO. Drag the second text box until the bottom edge of the text is 0.5” above the 0.00 horizontal drawing guide and it is centered on the 1.75 left vertical drawing guide.Click in another duplicate text box, delete TAB ONE, and then enter TAB THREE.Drag the third text box until the bottom edge of the text is 0.5” above the 0.00 horizontal drawing guide and it is centered on the 0.00 vertical drawing guide. Click in another duplicate text box, delete TAB ONE, and then enter TAB FOUR.Drag the fourth text box until the bottom edge of the text is 0.5” above the 0.00 horizontal drawing guide and it is centered on the 1.75 right vertical drawing guide.Click in the last duplicate text box, delete TAB ONE, and then enter TAB FIVE.Drag the fifth text box until the bottom edge of the text is 0.5” above the 0.00 horizontal drawing guide and it is centered on the 3.50 right vertical drawing guide.Select the text in the first text box. On the Home tab, in the Font group, click the arrow next to Font Color, and then under ThemeColors click White, Background 1 (first row, first option from the left). Repeat this process for each of the other text boxes. To reproduce the animation effects on this slide, do the following:On the Animations tab, in the Advanced Animations group, click Animation Pane. On the Home tab, in the Editing group, click Select, and then click Selection Pane.In the Selection and Visibility task pane, select the rounded rectangle (“Round Same Side Corner Rectangle” object). In the Animation group, click the More arrow to expand the effects gallery, then under MotionPaths, click Lines. In the Animation group, click Effect Options and under Direction, click Right.On the slide, point to the endpoint (red arrow) of the selected motion path until the cursor becomes a two-headed arrow. Press and hold SHIFT, and then drag the endpoint to the 1.75 left vertical drawing guide. In the Selection and Visibility taskpane, select the rounded rectangle again. In the Advanced Animation group, click Add Animation, and under MotionPaths, click Lines. In the Animation group, click Effect Options and under Direction, click Right.In the Animation Pane, select the second animation effect (right motion path for the rounded rectangle).On the slide, point to the endpoint (red arrow) of the selected motion path until the cursor becomes a two-headed arrow. Press and hold SHIFT, and then drag the endpoint to the 0.00 vertical drawing guide. On the slide, point to the starting point (green arrow) of the selected motion path until the cursor becomes a two-headed arrow. Press and hold SHIFT, and then drag the starting point to the 1.75 left vertical drawing guide. In the Selection and Visibility taskpane, select the rounded rectangle again. In the Advanced Animation group, click Add Animation, and under MotionPaths, click Lines. In the Animation group, click Effect Options and under Direction, click Right.In the CustomAnimation task pane, select the third animation effect (right motion path for the rounded rectangle). On the slide, point to the endpoint (red arrow) of the selected motion path until the cursor becomes a two-headed arrow. Press and hold SHIFT, and then drag the endpoint to the 1.75 right vertical drawing guide. On the slide, point to the starting point (green arrow) of the selected motion path until the cursor becomes a two-headed arrow. Press and hold SHIFT, and then drag the starting point to the 0.00 vertical drawing guide. In the Selection and Visibility taskpane, select the rounded rectangle again. In the Advanced Animation group, click Add Animation, and under MotionPaths, click Lines. In the Animation group, click Effect Options and under Direction, click Right.In the CustomAnimation task pane, select the fourth animation effect (right motion path for the rounded rectangle).On the slide, point to the endpoint (red arrow) of the selected motion path until the cursor becomes a two-headed arrow. Press and hold SHIFT, and then drag the endpoint to the 3.50 right vertical drawing guide. On the slide, point to the starting point (green arrow) of the selected motion path until the cursor becomes a two-headed arrow. Press and hold SHIFT, and then drag the starting point to the 1.75 right vertical drawing guide. In the Animation Pane, press and hold down CTRL and select all four animation effects. On the Animations tab, in the Timing group, do the following:In the Start list, select On Click.In the Duration list, enter 01.00.On the View tab, in the Show group, clear Ruler and clear Guides.To reproduce the background effects on this slide, do the following:Right-click the slide background area, and then click Format Background. In the Format Background dialog box, click Fill in the left pane, select Gradient fill in the Fill pane, and then do the following:In the Type list, select Linear.Click the button next to Direction, and then click Linear Up (second row, second option from the left).Under Gradient stops, click Add or Remove until two stops appear on the slider, and customize the gradient stops as follows:Select Stop 1 on the slider, and then do the following:In the Position box, enter 65%.Click the button next to Color, and under Theme Colors, click White, Background 1 (first row, first option from the left).Select Stop 2 on the slider, and then do the following:In the Position box, enter 100%.Click the button next to Color, and under Theme Colors, click Blue, Accent 1, Lighter 60% (third row, fifth option from the left).
  19. عمل ضمنی بین فازهای مپ و ردیوس، عمل گروه بندی-ه توزیع شده روی کلیدهای میانی هست.
  20. Rotating numbers on a curved path(Advanced)Tip: To draw the curved line on this slide, you will need to use the ruler and the drawing guides.To display the ruler and the drawing guides, do the following:On the View tab, in the Show/Hide group, select Ruler. Right-click the slide background area, and then click Grid and Guides. In the Grid and Guides dialog box, under Guide settings, select Display drawing guides on screen. (Note: One horizontal and one vertical guide will display on the slide at 0.00, the default position.)To reproduce the curved line on this slide, do the following:On the Insert tab, in the Illustrations group, click Shapes, and then under Lines click Curve (10th option from the left). To draw the curved line on the slide, do the following:Click the first point 0.25” to the left of the left edge of the slide and 0.75” below the horizontal drawing guide.Click the second point 3” to the left of the vertical drawing guide and 1” above the horizontal drawing guide.Click the third point 1.5” to the right of the vertical drawing guide and 0.5” below the horizontal drawing guide.Double-click the fourth and final point 0.25” to the right of the right edge of the slide and 1.5” above the horizontal drawing guide. Select the curved line. UnderDrawing Tools, on the Format tab, in the Shape Styles group, click Shape Outline, and then do the following: Under Theme Colors,clickWhite, Background 1, Darker 35% (fifth row, first option from the left). Point to Dashes, and then click Square Dot (third option from the top).Point to Weight, and then click 1 ½ pt. To reproduce the “1” on this slide, do the following:On the Home tab, in theSlides group, click Layout, and then click Blank.On the Insert tab, in the Text group, click Text Box, and then on the slide, drag to draw the text box.Enter 1 in the text box, and then select the text. On the Home tab, in the Font group, do the following:In the Font list, select Impact.In the Font Size box, enter 140.On the Home tab, in the Paragraph group, click Align Text Left to align the text left in the text box. Select the text box. Under Drawing Tools, on the Format tab, in the bottom right corner of the WordArt Styles group, click the Format Text Effects dialog box launcher. In the Format Text Effects dialog box, click Text Fill in the left pane, select Gradient fill in the Text Fill pane, and then do the following:In the Type list, select Linear.Click the button next to Direction, and then click Linear Down (first row, second option from the left).Under Gradient stops, click Add gradient stops or Remove gradient stops until two stops appear in the slider.Also under Gradient stops, customize the gradient stops that you added as follows:Select the first stop in the slider, and then do the following:In the Position box, enter 0%.Click the button next to Color, and then under Theme Colors click White, Background 1 (first row, first option from the left).In the Transparency box, enter 50%.Select the last stop in the slider, and then do the following:In the Position box, enter 85%.Click the button next to Color, and then under Theme Colors click White, Background 1 (first row, first option from the left).In the Transparency box, enter 0%.Also in the Format Text Effects dialog box, click Text Outline in the left pane. In the Text Outline pane, select Solid line, click the button next to Color, and then click More Colors. In the Colors dialog box, on the Custom tab, enter values for Red: 49, Green: 133, Blue: 156.Also in the Format Text Effects dialog box, click Outline Style in the left pane. In the Outline Style pane, in the Width box, enter 2.5 pt. Also in the Format Text Effects dialog box, click Shadow in the left pane. In the Shadow pane, click the button next to Presets, under Outer click Offset Diagonal Bottom Left (first row, third option from the left), and then do the following:In the Transparency box, enter 82%.In the Size box, enter 100%.In the Blur box, enter 8 pt.In the Angle box, enter 135°.In the Distance box, enter 30 pt. Also in the Format Text Effects dialog box, click 3-D Rotation in the left pane. In the 3-D Rotation pane, under Rotation, in the Z box, enter 15°.Also in the Format Text Effects dialog box, click Glow and Soft Edges in the left pane, and in the Glow and Soft Edges pane, do the following:In the Size box, enter 8 pt.Click the button next to Color, and then click More Colors. In the Colors dialog box, on the Custom tab, enter values for Red: 29, Green: 199, Blue: 244.Drag the text box onto the left part of the curved line, slightly to the right of the peak of the curve. To reproduce the animation effects for the “1” on this slide, do the following:On the slide, select the text box. On the Animations tab, in the Advanced Animation group, click Add Animation, and then under Entrance, click Fade.Also on the Animations tab, in the Timing group, do the following:In theStart list, selectWith Previous. In the Duration box, enter 1.00.Also on the Animations tab, in the Advanced Animation group, click Add Animation, and then under Emphasis click Spin.Also on the Animations tab, in the Animation group, click the Effect Options dialog box launcher. In the Spin dialog box, do the following:On the Effect tab, under Settings, do the following:In the Amount list, in the Custom box, enter 30°, and then press ENTER.Select Clockwise.Select Auto-Reverse.On the Timing tab, do the following:In theStart list, selectWith Previous. In the Duration list, select 1 seconds (Fast).On the Animations tab, in the Advanced Animation group, click Add Animation, and then click More Motion Paths. In the Add Motion Path dialog box, under Lines & Curves, click Arc Down.Also on the Animations tab, in the Timing group, do the following:In the Start list, select With Previous.In the Duration box, enter 2.00.On the slide, right-click the motion path and then click Edit Points. In Edit Points mode, do the following: Right-click the line and then click Add Point. Repeat until the line has five points.Select the second, third, and fourth points individually. Drag each point so that it is along the dashed curved line. Drag the end point off the right side of the slide. (Note: Click at least 1.5” off the right edge of the slide so that the text and its shadow exit completely.)On the slide, right-click the motion path, and then click Reverse Path Direction.On the View tab, in the Show/Hide group, clear Ruler.Right-click the slide background area, and then click Grid and Guides. In the Grid and Guides dialog box, under Guide settings, clear Display drawing guides on screen. To reproduce the animated “2” on this slide, do the following:Select the first text box. On the Home tab, in the Clipboard group, click the arrow to the right of Copy, and then click Duplicate.Click in the second text box, delete 1, and then enter 2.Select the second text box. UnderDrawing Tools, on the Format tab, in the bottom right corner of the WordArt Styles group, click the FormatTextEffects dialog box launcher. In the Format Text Effects dialog box, click Text Fill in the left pane, select Gradient fill in the Text Fill pane, and then do the following:In the Type list, select Linear.Click the button next to Direction, and then click Linear Down (first row, second option from the left).Under Gradient stops, click Add gradient stop or Remove gradient stop until two stops appear in the slider.Also under Gradient stops, customize the gradient stops that you added as follows:Select the first stop in the slider, and then do the following:In the Position box, enter 0%.Click the button next to Color, and then under Theme Colors click White, Background 1 (first row, first option from the left).In the Transparency box, enter 50%.Select the last stop in the slider, and then do the following:In the Position box, enter 85%.Click the button next to Color, click More Colors, and then in the Colors dialog box, on the Custom tab, enter values for Red: 198, Green: 217, Blue: 241.In the Transparency box, enter 0%.Also in the Format Text Effects dialog box, click Text Outline in the left pane. In the Text Outline pane, select Solid line, click the button next to Color, and then click More Colors. In the Colors dialog box, on the Custom tab, enter values for Red: 228, Green: 108, Blue: 10.Also in the Format Text Effects dialog box, click 3-D Rotation in the left pane. In the 3-D Rotation pane, under Rotation, in the Z box, enter 350°.Also in the Format Text Effects dialog box, click Glow and Soft Edges in the left pane, in the Glow and Soft Edges pane, click the button next to Color, and then click More Colors. In the Colors dialog box, on the Custom tab, enter values for Red: 255, Green: 144, Blue: 4.Drag the second text box onto the curved line, to the right of the “1” text box and approximately in the middle of the slide. On the Animations tab, in the Advanced Animation group, click Animation Pane.Press and hold CTRL, and then in the Animation Pane, select the fourth and fifth animation effects (fade and spin effects for the second text box). On the Animations tab, in the Timing group, do the following:In the Delay box, enter 0.5.In the Duration box, enter 0.9 seconds. In the Animation Pane, select the sixth animation effect (motion path for the second text box). On the Animations tab, in the Timing group, do the following:In the Delay box, enter 0.5.In the Duration box, enter 1.8 seconds. In the Animation Pane, select the sixth animation effect. On the slide, right-click the selected motion path, and then click Edit Points. Drag the points on the path to match the path to the curved line. (Note: The starting point will be further to the right of the right edge of the slide than the starting point for the first motion path.)To reproduce the animated “3” on this slide, do the following:On the slide, select the second text box. On the Home tab, in the Clipboard group, click the arrow to the right of Copy, and then click Duplicate.Drag the third text box away from the second text box.Click in the third text box, delete 2, and then enter 3. Select the third text box. UnderDrawing Tools, on the Format tab, in the bottom right corner of the WordArt Styles group, click the FormatTextEffects dialog box launcher. In the Format Text Effects dialog box, click Text Fill in the left pane, select Gradient fill in the Text Fill pane, and then do the following:In the Type list, select Linear.Click the button next to Direction, and then click Linear Down (first row, second option from the left).Under Gradient stops, click Add gradient stop or Remove gradient stop until two stops appear in the slider.Also under Gradient stops, customize the gradient stops that you added as follows:Select the first stop in the slider, and then do the following:In the Position box, enter 0%.Click the button next to Color, and then under Theme Colors click White, Background 1 (first row, first option from the left).In the Transparency box, enter 50%.Select the last stop in the slider,and then do the following:In the Position box, enter 85%.Click the button next to Color, click More Colors, and then in the Colors dialog box, on the Custom tab, enter values for Red: 198, Green: 217, Blue: 241.In the Transparency box, enter 0%.Also in the Format Text Effects dialog box, click Text Outline in the left pane. In the Text Outline pane, select Solid line, click the button next to Color, and then click More Colors. In the Colors dialog box, on the Custom tab, enter values for Red: 119, Green: 147, Blue: 60.Also in the Format Text Effects dialog box, click 3-D Rotation in the left pane. In the 3-D Rotation pane, under Rotation, in the Z box, enter 5°.Also in the Format Text Effects dialog box, click Glow and Soft Edges in the left pane, and in the Glow and Soft Edges pane, under Glow, click the button next to Color, and then click More Colors. In the Colors dialog box, on the Custom tab, enter values for Red: 168, Green: 224, Blue: 52.Drag the third text box to the right of the second text box, above the curve.In the Animation Pane, select the seventh animation effect (fade effect for the third text box). On the Animations tab, in the Timing group, do the following:In the Delay box, enter 0.9.In the Duration box, enter 0.7 seconds. In the Animation Pane, select the eighth animation effect (spin effect for the third text box). On the Animations tab, in the Timing group, do the following:In the Delay box, enter 0.9.In the Duration box, enter 0.75 seconds. In the Animation Pane, select the ninth animation effect (motion path for the third text box). On the Animations tab, in the Timing group, do the following:In the Delay box, enter 0.9.In the Duration box, enter 1.5 seconds. In the Animation Pane, select the ninth animation effect (motion path for the third text box). On the slide, right-click the selected motion path, and then click Edit Points. Drag the points on the path to match the path to the curved line. (Note: The endpoint will be above the curved line and the path will eventually meet the curve. The starting point will be further to the right of the right edge of the slide than the starting point for the first motion path.)To reproduce the background on this slide, do the following: Right-click the slide background area, and then click Format Background. In the Format Background dialog box, click Fill in the left pane, select Gradient fill in the Fill pane, and then do the following:In the Type list, select Radial.Click the button next to Direction, and then click From Corner (fifth option from the left).Under Gradient stops, click Add gradient stop or Remove gradient stop until two stops appear in the slider.Also under Gradient stops, customize the gradient stops that you added as follows:Select the first stop in the slider, and then do the following:In the Position box, enter 0%.Click the button next to Color, and then under Theme Colors click White, Background 1 (first row, first option from the left).Select the last stop in the slider, and then do the following: In the Position box, enter 100%.Click the button next to Color, and then under Theme Colors click White, Background 1, Darker 35% (fifth row, first option from the left).