SlideShare ist ein Scribd-Unternehmen logo
1 von 58
Downloaden Sie, um offline zu lesen
edupsych theory
for hacker school
(hacker school s2013)
follow along at bit.ly/hackerschool-edupsych
MEL CHUA
academic
hacker
academic
WAT
ure
doin
it
rite
ure
doin
it
riteCC-BY-SAfromhttp://www.flickr.com/photos/ykjc9/4143179870
the big idea:
design your learning
the same way you
design your code
Example: test-driven development
def factorial(n):
"""Return the factorial of n, an exact integer >= 0.
>>> [factorial(n) for n in range(6)]
[1, 1, 2, 6, 24, 120]"""
result = 1
factor = 2
while factor <= n: (shamelessly stolen from
result *= factor http://docs.python.org/2/library/doctest.html)
factor += 1
return result
Example: test-driven development
def factorial(n):
"""Return the factorial of n, an exact integer >= 0.
>>> [factorial(n) for n in range(6)]
[1, 1, 2, 6, 24, 120]"""
result = 1
factor = 2
while factor <= n: (shamelessly stolen from
result *= factor http://docs.python.org/2/library/doctest.html)
factor += 1
return result
what should it do?
how will I know if it works?
ok, now how do I make it work?
Example: test-driven development
def learn_tdd(student):
"""Students should be able to analyze the relationship between
a doctest, thefunction under test, and the test output.
>>> [learn_tdd(student) for student inclass]
[True, True, True, True, True]"""
fun_activity_thing()
student.doctestability = True
return student.doctestability
Example: test-driven development
def learn_tdd(student):
"""Students should be able to analyze the relationship between
a doctest, thefunction under test, and the test output.
>>> [learn_tdd(student) for student inclass]
[True, True, True, True, True]"""
fun_activity_thing()
student.doctestability = True
return student.doctestability
content (goal)
assessment
pedagogy (activity)
Further reading: Understanding By Design
dependency: articulate clear and
assessible goals
(hint: check-in groups)
Example: test-driven development
def curriculum(student):
"""Students should be able to analyze therelationship between
a doctest, thefunction under test, and the test output.
>>> [curriculum(student) for student in class]
[True, True, True, True, True]"""
fun_activity_thing()
student.doctestability = True
return student.doctestability
Bloom's taxonomy
Bloom's Taxonomy
Cognitive Affective
create
evaluate
analyze
apply
understand
remember
characterize
organize
value
respond
receive
Example: test-driven development
def curriculum(student):
"""Students should be able to analyze the relationship between
a doctest, thefunction under test, and the test output.
>>> [curriculum(student) for student in class]
[True, True, True, True, True]"""
fun_activity_thing()
student.doctestability = True
return student.doctestability
behaviorism
(we'll come back to this at the end)
the world is socially constructed
the world is socially constructed
(of course it is)
accidental learning in cognitive
apprenticeships within authentic
communities of practice with
metacognition models and
formative feedback to develop
self-efficacy and self-
determination
Accidental
learning.
Cognitive apprenticeship.
modelmodel
coachcoach
scaffoldscaffold
fadefade bit.ly/pycon-cogapp
Dreyfus Model of Skill
Acquisition
novice
advanced beginner
competent
proficient
expert
CC-BY-SAbywoodleywonderworks(http://www.flickr.com/photos/wwworks/2985216277/)
CC-BY-SAbyeschipul (http://www.flickr.com/photos/eschipul/278768722/)
clarityclarity constraintconstraint
freedomfreedom frustrationfrustration
CC-BY-SA byginnerobot (http://www.flickr.com/photos/ginnerobot/4487647471/)
CC-BYby NatalieMaynor(http://www.flickr.com/photos/nataliemaynor/2539937014/)
Why?
Because Piaget.
Piaget In One Slide
assimilation: adding another module
accommodation: REFACTOR EVERYTHING
assimilation
------------accommodation------------------------------------------------
assimilation
CC-BY-SAbyeschipul (http://www.flickr.com/photos/eschipul/278768722/)
tasting the food
tasting == assessment
Formative: in-progress (code reviews, informalchats)
'tasting the food on the stove'
Summative: at the end (GRADE GRADE GRADE)
'tasting the food on the plate'
Community of practice.
domaindomain
communitycommunity
practicepractice
In a cognitive apprenticeship within a
community of practice...
zone of proximal development
legitimate peripheral participation
Zone of proximal development:
learning to bike
1. watching
2. somebody pushes you
3. wheeeeeeeeeeeeeeeeeeeeeeee
Zone of proximal development:
learning to program
1. watching
2. somebody pushes you
3. wheeeeeeeeeeeeeeeeeeeeeeee
Zone of proximal development:
learning to program
1. watching
2. pair programming, code review, etc...
3. wheeeeeeeeeeeeeeeeeeeeeeee
MYTHS:
not skilled enoughnot skilled enough
not technical enoughnot technical enough
(perhaps later but surely not now)(perhaps later but surely not now)
Legitimate Peripheral
Participation Task Criteria
1. mission critical
3. nobody really cares
Legitimate Peripheral
Participation Task Criteria
1. mission critical
2. we have no time
3. nobody really cares
a history of cognitive paradigms
in teaching and learning
(abridged)
more information:
bit.ly/pycon-eduhistory
bit.ly/pycon-eduparadigms
bostonpythonworkshop.com
Cognitive
Felder: learning styles
(tomorrow morning @11
after check-ins)
FAIL #1: Assumption of
privilege
If it's hard, something's wrong with me
vs
If it's hard, something's wrong with it
(I can fix that!)
We teach the way we learn.
Situative
Cognitive apprenticeship.
modelmodel
coachcoach
scaffoldscaffold
fadefade bit.ly/pycon-cogapp
Motivation
Self-efficacy (Bandura)
1. doing it
2. seeing people (like me) do it
3. social persuasion
4. your own body
(Bandura also did social learning, which is a lot of fun – look it up!)
Attribution theory (Dweck)
Fixed vs Growth mindsets
aka
Nature vs Nurture
Motivation (Deci, Ryan)
1. amotivation
2. external regulation
3. identified regulation
4. intrinsic motivation
autonomy
relatedness
competence
(thanks to Jon Stolk, Rob Martello, Mark Somerville, and the Olin College I2E2 crew)
accidental learning in cognitive
apprenticeships within authentic
communities of practice with
metacognition models and
formative feedback to develop
self-efficacy and self-
determination
Why? Because this.
''...thefirst steps on this journey do not feel like progress....thefirst steps onthis journey do not feel like progress. TheThe
voice diminishes involume; it lacks... even thederived authorityvoice diminishes involume; it lacks... even thederived authority
of thosewho... can assume as they parrot... they speak theofthosewho... can assume as they parrot... they speak the
truth... The inner voice turns critical; it tells themtheir ideastruth... The inner voice turns critical; it tells themtheir ideas
maybestupid. Women at this position think before they speak;maybestupid. Women at this position think before they speak;
and, because their ideas must measure up to certain objectiveand, because their ideas must measure up to certain objective
standards, theyspeak in measured tones.standards, theyspeak in measured tones.
Often, they do not speakat all.Often, they do not speakat all.
But this is not a passive silence; on the other side ofthis silence,But this is not a passive silence; on the other side ofthis silence,
reason is stirringreason is stirring.' --Women's Ways ofKnowing.' --Women's Ways ofKnowing
'...confirmation and community are prerequisites rather than'...confirmation and community are prerequisites rather than
consequences ofdevelopment.'consequences ofdevelopment.'
--Women's Ways ofKnowing--Women's Ways ofKnowing
ure
doin
it
rite
ure
doin
it
riteCC-BY-SAfromhttp://www.flickr.com/photos/ykjc9/4143179870
that's all, folks. questions?that's all, folks. questions?
this talkthis talk
my workmy work
bit.ly/hackerschool-edupsychbit.ly/hackerschool-edupsych
melchua.com/contactmelchua.com/contact

Weitere ähnliche Inhalte

Ähnlich wie Edupsych Theory for Hacker School: Summer 2013 edition

Creativity: Core Skill for inclusive AI-based Learning
Creativity: Core Skill for inclusive AI-based LearningCreativity: Core Skill for inclusive AI-based Learning
Creativity: Core Skill for inclusive AI-based LearningNeus Lorenzo
 
An Introduction to Deep Learning (May 2018)
An Introduction to Deep Learning (May 2018)An Introduction to Deep Learning (May 2018)
An Introduction to Deep Learning (May 2018)Julien SIMON
 
Creativity: core skill for inclusive AI-based learning
Creativity: core skill for inclusive AI-based learningCreativity: core skill for inclusive AI-based learning
Creativity: core skill for inclusive AI-based learningThe Transformation Society
 
Desperately Seeking Theory: Gamification, Theory, and the Promise of a Data/A...
Desperately Seeking Theory: Gamification, Theory, and the Promise of a Data/A...Desperately Seeking Theory: Gamification, Theory, and the Promise of a Data/A...
Desperately Seeking Theory: Gamification, Theory, and the Promise of a Data/A...Sebastian Deterding
 
An Introduction to Deep Learning I AWS Dev Day 2018
An Introduction to Deep Learning I AWS Dev Day 2018An Introduction to Deep Learning I AWS Dev Day 2018
An Introduction to Deep Learning I AWS Dev Day 2018AWS Germany
 
An Introduction to Deep Learning (April 2018)
An Introduction to Deep Learning (April 2018)An Introduction to Deep Learning (April 2018)
An Introduction to Deep Learning (April 2018)Julien SIMON
 
MEXTESOL 2016 Teaching Writing (workshop)
MEXTESOL 2016 Teaching Writing (workshop)MEXTESOL 2016 Teaching Writing (workshop)
MEXTESOL 2016 Teaching Writing (workshop)Laura Sagert
 
Deep Learning: concepts and use cases (October 2018)
Deep Learning: concepts and use cases (October 2018)Deep Learning: concepts and use cases (October 2018)
Deep Learning: concepts and use cases (October 2018)Julien SIMON
 
UMich CI Days: Scaling a code in the human dimension
UMich CI Days: Scaling a code in the human dimensionUMich CI Days: Scaling a code in the human dimension
UMich CI Days: Scaling a code in the human dimensionmatthewturk
 
Patterns for the People
Patterns for the PeoplePatterns for the People
Patterns for the PeopleKevlin Henney
 
The College Classroom (Fa14) Week 2: Developing Expertise through Deliberate ...
The College Classroom (Fa14) Week 2: Developing Expertise through Deliberate ...The College Classroom (Fa14) Week 2: Developing Expertise through Deliberate ...
The College Classroom (Fa14) Week 2: Developing Expertise through Deliberate ...Peter Newbury
 
5 Ways Organizations Get eLearning Wrong
5 Ways Organizations Get eLearning Wrong5 Ways Organizations Get eLearning Wrong
5 Ways Organizations Get eLearning WrongJohn Schulz
 
Remix Culture 4 Learning
Remix Culture 4 LearningRemix Culture 4 Learning
Remix Culture 4 LearningErin Reilly
 
Ricardo Sosa: Ideation, a conversation
Ricardo Sosa: Ideation, a conversationRicardo Sosa: Ideation, a conversation
Ricardo Sosa: Ideation, a conversationR. Sosa
 
Scalable Learning Technologies for Big Data Mining
Scalable Learning Technologies for Big Data MiningScalable Learning Technologies for Big Data Mining
Scalable Learning Technologies for Big Data MiningGerard de Melo
 
Using binary classifiers
Using binary classifiersUsing binary classifiers
Using binary classifiersbutest
 

Ähnlich wie Edupsych Theory for Hacker School: Summer 2013 edition (20)

Creativity: Core Skill for inclusive AI-based Learning
Creativity: Core Skill for inclusive AI-based LearningCreativity: Core Skill for inclusive AI-based Learning
Creativity: Core Skill for inclusive AI-based Learning
 
An Introduction to Deep Learning (May 2018)
An Introduction to Deep Learning (May 2018)An Introduction to Deep Learning (May 2018)
An Introduction to Deep Learning (May 2018)
 
Creativity: core skill for inclusive AI-based learning
Creativity: core skill for inclusive AI-based learningCreativity: core skill for inclusive AI-based learning
Creativity: core skill for inclusive AI-based learning
 
Desperately Seeking Theory: Gamification, Theory, and the Promise of a Data/A...
Desperately Seeking Theory: Gamification, Theory, and the Promise of a Data/A...Desperately Seeking Theory: Gamification, Theory, and the Promise of a Data/A...
Desperately Seeking Theory: Gamification, Theory, and the Promise of a Data/A...
 
An Introduction to Deep Learning I AWS Dev Day 2018
An Introduction to Deep Learning I AWS Dev Day 2018An Introduction to Deep Learning I AWS Dev Day 2018
An Introduction to Deep Learning I AWS Dev Day 2018
 
An Introduction to Deep Learning (April 2018)
An Introduction to Deep Learning (April 2018)An Introduction to Deep Learning (April 2018)
An Introduction to Deep Learning (April 2018)
 
MEXTESOL 2016 Teaching Writing (workshop)
MEXTESOL 2016 Teaching Writing (workshop)MEXTESOL 2016 Teaching Writing (workshop)
MEXTESOL 2016 Teaching Writing (workshop)
 
Deep Learning: concepts and use cases (October 2018)
Deep Learning: concepts and use cases (October 2018)Deep Learning: concepts and use cases (October 2018)
Deep Learning: concepts and use cases (October 2018)
 
Losing Presentation 8 09
Losing Presentation 8 09Losing Presentation 8 09
Losing Presentation 8 09
 
UMich CI Days: Scaling a code in the human dimension
UMich CI Days: Scaling a code in the human dimensionUMich CI Days: Scaling a code in the human dimension
UMich CI Days: Scaling a code in the human dimension
 
Patterns for the People
Patterns for the PeoplePatterns for the People
Patterns for the People
 
The College Classroom (Fa14) Week 2: Developing Expertise through Deliberate ...
The College Classroom (Fa14) Week 2: Developing Expertise through Deliberate ...The College Classroom (Fa14) Week 2: Developing Expertise through Deliberate ...
The College Classroom (Fa14) Week 2: Developing Expertise through Deliberate ...
 
5 Ways Organizations Get eLearning Wrong
5 Ways Organizations Get eLearning Wrong5 Ways Organizations Get eLearning Wrong
5 Ways Organizations Get eLearning Wrong
 
2019 TribalHub Keynote "The Innovation Mindset"
2019 TribalHub Keynote "The Innovation Mindset"2019 TribalHub Keynote "The Innovation Mindset"
2019 TribalHub Keynote "The Innovation Mindset"
 
Using Wikis and Chats to Promote Knowledge Building Communities
Using Wikis and Chats to Promote Knowledge Building CommunitiesUsing Wikis and Chats to Promote Knowledge Building Communities
Using Wikis and Chats to Promote Knowledge Building Communities
 
Remix Culture 4 Learning
Remix Culture 4 LearningRemix Culture 4 Learning
Remix Culture 4 Learning
 
Ricardo Sosa: Ideation, a conversation
Ricardo Sosa: Ideation, a conversationRicardo Sosa: Ideation, a conversation
Ricardo Sosa: Ideation, a conversation
 
Scalable Learning Technologies for Big Data Mining
Scalable Learning Technologies for Big Data MiningScalable Learning Technologies for Big Data Mining
Scalable Learning Technologies for Big Data Mining
 
Using binary classifiers
Using binary classifiersUsing binary classifiers
Using binary classifiers
 
BCII 2016 - Visualizing Complexity
BCII 2016 - Visualizing ComplexityBCII 2016 - Visualizing Complexity
BCII 2016 - Visualizing Complexity
 

Mehr von Mel Chua

Productively Lost For Great Justice
Productively Lost For Great JusticeProductively Lost For Great Justice
Productively Lost For Great JusticeMel Chua
 
Level-up Main Talk
Level-up Main TalkLevel-up Main Talk
Level-up Main TalkMel Chua
 
Take the A Train
Take the A TrainTake the A Train
Take the A TrainMel Chua
 
The Language Game
The Language GameThe Language Game
The Language GameMel Chua
 
The Fitness Game
The Fitness GameThe Fitness Game
The Fitness GameMel Chua
 
The Music Game
The Music GameThe Music Game
The Music GameMel Chua
 
The Invisible Traceback
The Invisible TracebackThe Invisible Traceback
The Invisible TracebackMel Chua
 

Mehr von Mel Chua (7)

Productively Lost For Great Justice
Productively Lost For Great JusticeProductively Lost For Great Justice
Productively Lost For Great Justice
 
Level-up Main Talk
Level-up Main TalkLevel-up Main Talk
Level-up Main Talk
 
Take the A Train
Take the A TrainTake the A Train
Take the A Train
 
The Language Game
The Language GameThe Language Game
The Language Game
 
The Fitness Game
The Fitness GameThe Fitness Game
The Fitness Game
 
The Music Game
The Music GameThe Music Game
The Music Game
 
The Invisible Traceback
The Invisible TracebackThe Invisible Traceback
The Invisible Traceback
 

Kürzlich hochgeladen

CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxGaneshChakor2
 
Mastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionMastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionSafetyChain Software
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Celine George
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introductionMaksud Ahmed
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Sapana Sha
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptxVS Mahajan Coaching Centre
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxNirmalaLoungPoorunde1
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdfQucHHunhnh
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfsanyamsingh5019
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactdawncurless
 
Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991
Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991
Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991RKavithamani
 
Privatization and Disinvestment - Meaning, Objectives, Advantages and Disadva...
Privatization and Disinvestment - Meaning, Objectives, Advantages and Disadva...Privatization and Disinvestment - Meaning, Objectives, Advantages and Disadva...
Privatization and Disinvestment - Meaning, Objectives, Advantages and Disadva...RKavithamani
 
URLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppURLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppCeline George
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxheathfieldcps1
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeThiyagu K
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationnomboosow
 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxpboyjonauth
 

Kürzlich hochgeladen (20)

TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdfTataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptx
 
Mastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionMastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory Inspection
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introduction
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptx
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdf
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impact
 
Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991
Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991
Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991
 
Privatization and Disinvestment - Meaning, Objectives, Advantages and Disadva...
Privatization and Disinvestment - Meaning, Objectives, Advantages and Disadva...Privatization and Disinvestment - Meaning, Objectives, Advantages and Disadva...
Privatization and Disinvestment - Meaning, Objectives, Advantages and Disadva...
 
URLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppURLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website App
 
Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptx
 
Staff of Color (SOC) Retention Efforts DDSD
Staff of Color (SOC) Retention Efforts DDSDStaff of Color (SOC) Retention Efforts DDSD
Staff of Color (SOC) Retention Efforts DDSD
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and Mode
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communication
 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptx
 

Edupsych Theory for Hacker School: Summer 2013 edition