SlideShare a Scribd company logo
6’6’’	
6’0’’	
5’6’’	
5’0’’	
4’6’’	
4’0’’	
3’6’’	
3’0’’	
6’6’’	
6’0’’	
5’6’’	
5’0’’	
4’6’’	
4’0’’	
3’6’’	
3’0’’	
	
	
Who	owns	the	
robot	chicken?
Donald	J.	Trump	
												Dr.	Evil	
Kim	Jong-un	
Frank	Underwood	
Bane
Shark	
Octopus	
Tortoise	
Armadillo	
Robot	
Chicken
1. There are five houses.
2. Frank Underwood lives in the Red house.
3. Dr. Evil owns the frickin’ Octopus.
4. Whiskey is the preferred drink in the Black house.
5. Donald Trump drinks Bourbon.
6. The Black house is just to the right of the White house.
7. The Black Lung smoker owns the Tortoise.
8. French Soot is smoked in the Brown house.
9. Tequila is the preferred drink in the middle house.
10.Bane lives in the first house.
11.The villain who smokes Coal Dust lives in the house next
to the villain with the Armadillo.
12.French Soot is smoked in a house next to the house
where the Shark is kept.
13.The Slow Death smoker drinks Vodka.
14.Kim Jong-un smokes Hacking Cough.
15.Bane lives next to the Blue house.
Who	owns	the	
robot	chicken?	
	
Who	drinks	
champagne?
@prefix		:		<http://ngrams.ucd.ie/hawking#>	.	
	
@prefix	rdfs:	<http://www.w3.org/2000/01/rdf-schema#>	.	
	
@prefix	owl:	<http://www.w3.org/2002/07/owl#>	.	
	
@prefix	xsd:	<http://www.w3.org/2001/XMLSchema#>	.	
	
@prefix	rdf:	<http://www.w3.org/1999/02/22-rdf-syntax-ns#>	.	
	
Every	line	is	a	
triple,	ending	
with	a	period.
Anonymous	
classes	are	
defined	in	[	]	
	
<http://ngrams.ucd.ie/hawking>	rdf:type	owl:Ontology	.	
	
	
	
[	rdf:type	owl:AllDisjointClasses	;	
		owl:members	(	:Color	:Drink	:House	:Person	:Pet	:Smoke	)	]	.	
	
Separate	triples	
with	a	semicolon
Let’s	define	the	
key	classes	in	
the	riddle	…	
	
:Color	rdf:type	owl:Class	;	
							owl:equivalentClass		
										[		rdf:type	owl:Class	;	
														owl:oneOf	(	:Blue	:Brown	:White	:Black	:Red	)	]	.	
	
:Drink	rdf:type	owl:Class	;	
							owl:equivalentClass			
											[	rdf:type	owl:Class	;	
														owl:oneOf	(	:Vodka	:Champagne	:Bourbon	:Tequila	:Whiskey	)	]	.
Now	for		
the	relations	
between	classes	
:drinks	rdf:type		 	 owl:FunctionalProperty	,	
																		 	 	 	 owl:InverseFunctionalProperty	,	
																		 	 	 	 owl:ObjectProperty	;	
									 rdfs:domain		:Person;	
									 rdfs:range						:Drink		.	
	
:hasColor	rdf:type		 owl:FunctionalProperty	,	
																					 	 	 owl:InverseFunctionalProperty	,	
																					 	 	 owl:ObjectProperty	;	
										rdfs:domain		 :House	;	
			rdfs:range	 	 :Color		.	
Use	commas	for	
multiple	values	
for	a	property		
But	what’s	an	
inverse	
functional	
property?
owl:onProperty	
owl:someValuesFrom	
:Color	
	rdfs:subClassOf	
:House	rdf:type	owl:Class	;	
															rdfs:subClassOf				[		
						rdf:type			owl:Restriction	;	
																									owl:onProperty			:hasColor	;	
																									owl:someValuesFrom			:Color	]	.	
:hasColor	
owl:Restriction	
owl:Class	
rdf:type	
???	
rdf:type	
:House
:Person	rdf:type	owl:Class	;	
								rdfs:subClassOf		
											[	rdf:type	owl:Class	;	
													owl:intersectionOf	(		
																	[	rdf:type	owl:Restriction	;	
																			owl:onProperty	:drinks	;	
																			owl:someValuesFrom	:Drink	]	
																	[	rdf:type	owl:Restriction	;	
																			owl:onProperty	:hasPet	;	
																			owl:someValuesFrom	:Pet	]	
																	[	rdf:type	owl:Restriction	;	
																			owl:onProperty	:livesIn	;	
																			owl:someValuesFrom	:House	]	
																	[	rdf:type	owl:Restriction	;	
																			owl:onProperty	:smokes	;	
																			owl:someValuesFrom	:Smoke	]	
													)	
								]	.	
	
Ensure	every	
person	has	all	
of	the	vices	…
:isNextTo		rdf:type		 	 owl:IrreflexiveProperty	,	
																			 	 	 			 	 owl:ObjectProperty	,	
																							 	 			 	 owl:SymmetricProperty	;	
											 	 rdfs:domain		 :House	;	
											 	 rdfs:range		 :House	.	
	
:isRightTo			rdf:type		owl:FunctionalProperty	,	
	 				 					 	 	 	 owl:InverseFunctionalProperty	,	
	 				 					 	 	 	 owl:ObjectProperty	;	
												 	 		owl:inverseOf		 	 		:isLeftTo	;	
															 		rdfs:subPropertyOf			:isNextTo	.	
	
:isLeftTo		 rdf:type		 	 	 	 owl:ObjectProperty	;	
											 	 rdfs:subPropertyOf		 :isNextTo	.	
	
	
Now	to	
constrain	the	
neighbours!
:House1		 :isLeftTo		 :House2	.	
:House2		 :isLeftTo		 :House3	.	
:House3		 :isLeftTo		 :House4	.	
:House4		 :isLeftTo		 :House5	.	
	
[	rdf:type			 	 	 	 	owl:NegativePropertyAssertion	;	
		owl:assertionProperty			:isNextTo	;	
		owl:targetIndividual		 	:House1	;	
		owl:sourceIndividual		 	:House5		]	.	
	
[	rdf:type			 	 	 	 owl:AllDifferent	;	
		owl:distinctMembers			(	:House2	:House1	:House4	:House3	:House5	)	]	.
:House			rdf:type			owl:Class	;	
								 				rdfs:subClassOf		
												 	 	 	 [	rdf:type	owl:Restriction	;	
															 	 	 		owl:onProperty	:isNextTo	;	
															 	 	 		owl:onClass	:House	;	
															 	 	 		owl:maxQualifiedCardinality		
"2"^^xsd:nonNegativeInteger	]	,	
												 	 	 	 [	rdf:type	owl:Restriction	;	
															 	 	 			owl:onProperty	:hasColor	;	
															 	 	 			owl:someValuesFrom	:Color	]	.	
	
	
	
	
Qualified	
cardinality!		
Eureka!	 	
A	house	has		
at	most	two	
neighboring	
houses	
	
and	at	least	
(but	only)		
one	colour!
[	rdf:type			 	 	 	 owl:AllDifferent	;	
		owl:distinctMembers			(:Black	:White	:Red	:Brown	:Blue)	]	.	
	
[	rdf:type	owl:AllDifferent	;	
			owl:distinctMembers	(	:DrEvil	:Bane	:FrankUnderwood		
:DonaldTrump	:KimJongUn	)	]	.	
	
[	rdf:type	owl:AllDifferent	;	
		owl:distinctMembers	(	:Bourbon	:Vodka	:Champagne	:Whiskey		
:Tequila	)	]	.	
[	rdf:type	owl:AllDifferent	;	
			owl:distinctMembers	(	:Octopus	:RobotChicken	:Armadillo	:Tortoise		
:Shark	)	]	.	
[	rdf:type	owl:AllDifferent	;	
		owl:distinctMembers	(	:BlackLung	:FrenchSoot	:CoalDust	:SlowDeath		
:HackingCough	)	]	.	
	
	
	I’m	no	
	Einstein,	but		
I	could	be!	
	
So	beware	the		
non-unique	names	
assumption
:FrankUnderwood	:livesIn	[	:hasColor	:Red	]	.	
	
:DrEvil	:hasPet	:Octopus	.	
	
	[]	:drinks	:Whiskey	;	
					:livesIn	[	:hasColor	:Black	]	.	
	
:DonaldTrump	:drinks	:Bourbon	.	
	
	[]	:hasColor	:Black	;		
					:isRightTo	[	:hasColor	:White	]	.	
	
[]	:smokes	:BlackLung	;	
				:hasPet	:Tortoise	.	
	
	
Now	for	the	
specific	facts	of	the	
riddle	…	
	
[	]	denotes	a	
blank	node
[]		:drinks		:Whiskey	;	
					:livesIn	[	:hasColor	:Black	]	.
}	
[]	:smokes	:FrenchSoot	;	
				:livesIn	[	:hasColor	:Brown	]	.	
	
	
[]	:drinks	:Tequila	;	
				:livesIn	:House3	.	
	
	
:Bane	:livesIn	:House1	.	
	
	
[]	:smokes	:CoalDust	;	
				:livesIn	[	:isNextTo	_:x11	]	.	
	
[]	:livesIn	_:x11	;	
				:hasPet	:Armadillo	.
[]			:livesIn		_:x11	;	
						:hasPet		:Armadillo	.	
	
[]		:smokes		:CoalDust	;	
					:livesIn				[	:isNextTo	_:x11	]	.
[]		:smokes	:FrenchSoot;	
					:livesIn	[	:isNextTo	_:x12	]	.	
	
[]		:livesIn		_:x12	;	
					:hasPet		:Shark	.	
	
	
[]	:smokes	:SlowDeath	;	
				:drinks			:Vodka	.	
	
	
:KimJongUn	:smokes	:HackingCough	.	
	
	
:Bane	:livesIn	[	:isNextTo	[	:hasColor	:Blue	]	]	.	
}
French	
Soot
French	
Soot
French	
Soot	 Slow	
Death	
Hacking	
Cough
Slow	
Death	
Hacking	
Cough	
Black	
Lung	
Coal		
Dust	
French	
Soot
Hawking:
The Riddle
Credits
Hawking’s	riddle	is	based	on	“Einstein’s	Riddle”	from	Life	
magazine	in	December,	1962.	Einstein’s	connection	to	the	
riddle	is	apocryphal,	and	about	as	tenuous	as	Hawking’s.	
	
My	solution	here	is	based	on	that	of	Martin	G.	Skjæveland

More Related Content

More from Tony Veale

Building a sense of humour: The Robot's guide to Humorous Incongruity
Building a sense of humour: The Robot's guide to Humorous IncongruityBuilding a sense of humour: The Robot's guide to Humorous Incongruity
Building a sense of humour: The Robot's guide to Humorous Incongruity
Tony Veale
 
West of Eden: Building Characters with Personality
West of Eden: Building Characters with PersonalityWest of Eden: Building Characters with Personality
West of Eden: Building Characters with Personality
Tony Veale
 
Fifty shades of orange: Building Bots with Personality
Fifty shades of orange: Building Bots with PersonalityFifty shades of orange: Building Bots with Personality
Fifty shades of orange: Building Bots with Personality
Tony Veale
 
Fifty shades of Dorian Gray: Affective Computing and The Self
Fifty shades of Dorian Gray: Affective Computing and The SelfFifty shades of Dorian Gray: Affective Computing and The Self
Fifty shades of Dorian Gray: Affective Computing and The Self
Tony Veale
 
Pizza maker: A Tutorial on Building Twitterbots
Pizza maker: A Tutorial on Building TwitterbotsPizza maker: A Tutorial on Building Twitterbots
Pizza maker: A Tutorial on Building Twitterbots
Tony Veale
 
Design patterns: An Introduction to Software Design Patterns
Design patterns: An Introduction to Software Design PatternsDesign patterns: An Introduction to Software Design Patterns
Design patterns: An Introduction to Software Design Patterns
Tony Veale
 
Better than the real thing: AI at the Movies
Better than the real thing: AI at the MoviesBetter than the real thing: AI at the Movies
Better than the real thing: AI at the Movies
Tony Veale
 
Divine sparks: Empathic Ethical Machines
Divine sparks: Empathic Ethical MachinesDivine sparks: Empathic Ethical Machines
Divine sparks: Empathic Ethical Machines
Tony Veale
 
Apt pupils: Machine Learning in the Movies
Apt pupils: Machine Learning in the MoviesApt pupils: Machine Learning in the Movies
Apt pupils: Machine Learning in the Movies
Tony Veale
 
Mechanical muses
Mechanical musesMechanical muses
Mechanical muses
Tony Veale
 
Metaphors all the way down
Metaphors all the way downMetaphors all the way down
Metaphors all the way down
Tony Veale
 
Placebo effect
Placebo effectPlacebo effect
Placebo effect
Tony Veale
 
Game of tropes
Game of tropesGame of tropes
Game of tropes
Tony Veale
 
Unweaving the lexical rainbow: Grounding Linguistic Creativity in Perceptual ...
Unweaving the lexical rainbow: Grounding Linguistic Creativity in Perceptual ...Unweaving the lexical rainbow: Grounding Linguistic Creativity in Perceptual ...
Unweaving the lexical rainbow: Grounding Linguistic Creativity in Perceptual ...
Tony Veale
 
Seduced and abandoned in the Chinese Room
Seduced and abandoned in the Chinese RoomSeduced and abandoned in the Chinese Room
Seduced and abandoned in the Chinese RoomTony Veale
 
Metaphor for NLP (at NAACL 2015)
Metaphor for NLP (at NAACL 2015)Metaphor for NLP (at NAACL 2015)
Metaphor for NLP (at NAACL 2015)Tony Veale
 
SemEval 2015 Task 11: Sentiment Analysis of Figurative Language in Twitter
SemEval 2015 Task 11: Sentiment Analysis of Figurative Language in TwitterSemEval 2015 Task 11: Sentiment Analysis of Figurative Language in Twitter
SemEval 2015 Task 11: Sentiment Analysis of Figurative Language in Twitter
Tony Veale
 
The Mirror Makers: Sustaining Human Creative Communities With Machines That M...
The Mirror Makers: Sustaining Human Creative Communities With Machines That M...The Mirror Makers: Sustaining Human Creative Communities With Machines That M...
The Mirror Makers: Sustaining Human Creative Communities With Machines That M...
Tony Veale
 
Set Up Your Twitter App!
Set Up Your Twitter App!Set Up Your Twitter App!
Set Up Your Twitter App!
Tony Veale
 
Colorful Twitterbots
Colorful TwitterbotsColorful Twitterbots
Colorful Twitterbots
Tony Veale
 

More from Tony Veale (20)

Building a sense of humour: The Robot's guide to Humorous Incongruity
Building a sense of humour: The Robot's guide to Humorous IncongruityBuilding a sense of humour: The Robot's guide to Humorous Incongruity
Building a sense of humour: The Robot's guide to Humorous Incongruity
 
West of Eden: Building Characters with Personality
West of Eden: Building Characters with PersonalityWest of Eden: Building Characters with Personality
West of Eden: Building Characters with Personality
 
Fifty shades of orange: Building Bots with Personality
Fifty shades of orange: Building Bots with PersonalityFifty shades of orange: Building Bots with Personality
Fifty shades of orange: Building Bots with Personality
 
Fifty shades of Dorian Gray: Affective Computing and The Self
Fifty shades of Dorian Gray: Affective Computing and The SelfFifty shades of Dorian Gray: Affective Computing and The Self
Fifty shades of Dorian Gray: Affective Computing and The Self
 
Pizza maker: A Tutorial on Building Twitterbots
Pizza maker: A Tutorial on Building TwitterbotsPizza maker: A Tutorial on Building Twitterbots
Pizza maker: A Tutorial on Building Twitterbots
 
Design patterns: An Introduction to Software Design Patterns
Design patterns: An Introduction to Software Design PatternsDesign patterns: An Introduction to Software Design Patterns
Design patterns: An Introduction to Software Design Patterns
 
Better than the real thing: AI at the Movies
Better than the real thing: AI at the MoviesBetter than the real thing: AI at the Movies
Better than the real thing: AI at the Movies
 
Divine sparks: Empathic Ethical Machines
Divine sparks: Empathic Ethical MachinesDivine sparks: Empathic Ethical Machines
Divine sparks: Empathic Ethical Machines
 
Apt pupils: Machine Learning in the Movies
Apt pupils: Machine Learning in the MoviesApt pupils: Machine Learning in the Movies
Apt pupils: Machine Learning in the Movies
 
Mechanical muses
Mechanical musesMechanical muses
Mechanical muses
 
Metaphors all the way down
Metaphors all the way downMetaphors all the way down
Metaphors all the way down
 
Placebo effect
Placebo effectPlacebo effect
Placebo effect
 
Game of tropes
Game of tropesGame of tropes
Game of tropes
 
Unweaving the lexical rainbow: Grounding Linguistic Creativity in Perceptual ...
Unweaving the lexical rainbow: Grounding Linguistic Creativity in Perceptual ...Unweaving the lexical rainbow: Grounding Linguistic Creativity in Perceptual ...
Unweaving the lexical rainbow: Grounding Linguistic Creativity in Perceptual ...
 
Seduced and abandoned in the Chinese Room
Seduced and abandoned in the Chinese RoomSeduced and abandoned in the Chinese Room
Seduced and abandoned in the Chinese Room
 
Metaphor for NLP (at NAACL 2015)
Metaphor for NLP (at NAACL 2015)Metaphor for NLP (at NAACL 2015)
Metaphor for NLP (at NAACL 2015)
 
SemEval 2015 Task 11: Sentiment Analysis of Figurative Language in Twitter
SemEval 2015 Task 11: Sentiment Analysis of Figurative Language in TwitterSemEval 2015 Task 11: Sentiment Analysis of Figurative Language in Twitter
SemEval 2015 Task 11: Sentiment Analysis of Figurative Language in Twitter
 
The Mirror Makers: Sustaining Human Creative Communities With Machines That M...
The Mirror Makers: Sustaining Human Creative Communities With Machines That M...The Mirror Makers: Sustaining Human Creative Communities With Machines That M...
The Mirror Makers: Sustaining Human Creative Communities With Machines That M...
 
Set Up Your Twitter App!
Set Up Your Twitter App!Set Up Your Twitter App!
Set Up Your Twitter App!
 
Colorful Twitterbots
Colorful TwitterbotsColorful Twitterbots
Colorful Twitterbots
 

Recently uploaded

Operation Blue Star - Saka Neela Tara
Operation Blue Star   -  Saka Neela TaraOperation Blue Star   -  Saka Neela Tara
Operation Blue Star - Saka Neela Tara
Balvir Singh
 
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
EugeneSaldivar
 
The Challenger.pdf DNHS Official Publication
The Challenger.pdf DNHS Official PublicationThe Challenger.pdf DNHS Official Publication
The Challenger.pdf DNHS Official Publication
Delapenabediema
 
The geography of Taylor Swift - some ideas
The geography of Taylor Swift - some ideasThe geography of Taylor Swift - some ideas
The geography of Taylor Swift - some ideas
GeoBlogs
 
Supporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptxSupporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptx
Jisc
 
Thesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.pptThesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.ppt
EverAndrsGuerraGuerr
 
June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...
June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...
June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...
Levi Shapiro
 
How to Make a Field invisible in Odoo 17
How to Make a Field invisible in Odoo 17How to Make a Field invisible in Odoo 17
How to Make a Field invisible in Odoo 17
Celine George
 
Model Attribute Check Company Auto Property
Model Attribute  Check Company Auto PropertyModel Attribute  Check Company Auto Property
Model Attribute Check Company Auto Property
Celine George
 
The basics of sentences session 5pptx.pptx
The basics of sentences session 5pptx.pptxThe basics of sentences session 5pptx.pptx
The basics of sentences session 5pptx.pptx
heathfieldcps1
 
Overview on Edible Vaccine: Pros & Cons with Mechanism
Overview on Edible Vaccine: Pros & Cons with MechanismOverview on Edible Vaccine: Pros & Cons with Mechanism
Overview on Edible Vaccine: Pros & Cons with Mechanism
DeeptiGupta154
 
2024.06.01 Introducing a competency framework for languag learning materials ...
2024.06.01 Introducing a competency framework for languag learning materials ...2024.06.01 Introducing a competency framework for languag learning materials ...
2024.06.01 Introducing a competency framework for languag learning materials ...
Sandy Millin
 
Honest Reviews of Tim Han LMA Course Program.pptx
Honest Reviews of Tim Han LMA Course Program.pptxHonest Reviews of Tim Han LMA Course Program.pptx
Honest Reviews of Tim Han LMA Course Program.pptx
timhan337
 
Embracing GenAI - A Strategic Imperative
Embracing GenAI - A Strategic ImperativeEmbracing GenAI - A Strategic Imperative
Embracing GenAI - A Strategic Imperative
Peter Windle
 
Sha'Carri Richardson Presentation 202345
Sha'Carri Richardson Presentation 202345Sha'Carri Richardson Presentation 202345
Sha'Carri Richardson Presentation 202345
beazzy04
 
BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...
BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...
BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...
Nguyen Thanh Tu Collection
 
Introduction to AI for Nonprofits with Tapp Network
Introduction to AI for Nonprofits with Tapp NetworkIntroduction to AI for Nonprofits with Tapp Network
Introduction to AI for Nonprofits with Tapp Network
TechSoup
 
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
siemaillard
 
Phrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXX
Phrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXXPhrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXX
Phrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXX
MIRIAMSALINAS13
 
Francesca Gottschalk - How can education support child empowerment.pptx
Francesca Gottschalk - How can education support child empowerment.pptxFrancesca Gottschalk - How can education support child empowerment.pptx
Francesca Gottschalk - How can education support child empowerment.pptx
EduSkills OECD
 

Recently uploaded (20)

Operation Blue Star - Saka Neela Tara
Operation Blue Star   -  Saka Neela TaraOperation Blue Star   -  Saka Neela Tara
Operation Blue Star - Saka Neela Tara
 
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
 
The Challenger.pdf DNHS Official Publication
The Challenger.pdf DNHS Official PublicationThe Challenger.pdf DNHS Official Publication
The Challenger.pdf DNHS Official Publication
 
The geography of Taylor Swift - some ideas
The geography of Taylor Swift - some ideasThe geography of Taylor Swift - some ideas
The geography of Taylor Swift - some ideas
 
Supporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptxSupporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptx
 
Thesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.pptThesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.ppt
 
June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...
June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...
June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...
 
How to Make a Field invisible in Odoo 17
How to Make a Field invisible in Odoo 17How to Make a Field invisible in Odoo 17
How to Make a Field invisible in Odoo 17
 
Model Attribute Check Company Auto Property
Model Attribute  Check Company Auto PropertyModel Attribute  Check Company Auto Property
Model Attribute Check Company Auto Property
 
The basics of sentences session 5pptx.pptx
The basics of sentences session 5pptx.pptxThe basics of sentences session 5pptx.pptx
The basics of sentences session 5pptx.pptx
 
Overview on Edible Vaccine: Pros & Cons with Mechanism
Overview on Edible Vaccine: Pros & Cons with MechanismOverview on Edible Vaccine: Pros & Cons with Mechanism
Overview on Edible Vaccine: Pros & Cons with Mechanism
 
2024.06.01 Introducing a competency framework for languag learning materials ...
2024.06.01 Introducing a competency framework for languag learning materials ...2024.06.01 Introducing a competency framework for languag learning materials ...
2024.06.01 Introducing a competency framework for languag learning materials ...
 
Honest Reviews of Tim Han LMA Course Program.pptx
Honest Reviews of Tim Han LMA Course Program.pptxHonest Reviews of Tim Han LMA Course Program.pptx
Honest Reviews of Tim Han LMA Course Program.pptx
 
Embracing GenAI - A Strategic Imperative
Embracing GenAI - A Strategic ImperativeEmbracing GenAI - A Strategic Imperative
Embracing GenAI - A Strategic Imperative
 
Sha'Carri Richardson Presentation 202345
Sha'Carri Richardson Presentation 202345Sha'Carri Richardson Presentation 202345
Sha'Carri Richardson Presentation 202345
 
BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...
BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...
BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...
 
Introduction to AI for Nonprofits with Tapp Network
Introduction to AI for Nonprofits with Tapp NetworkIntroduction to AI for Nonprofits with Tapp Network
Introduction to AI for Nonprofits with Tapp Network
 
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
 
Phrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXX
Phrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXXPhrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXX
Phrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXX
 
Francesca Gottschalk - How can education support child empowerment.pptx
Francesca Gottschalk - How can education support child empowerment.pptxFrancesca Gottschalk - How can education support child empowerment.pptx
Francesca Gottschalk - How can education support child empowerment.pptx
 

Hawking's riddle: An OWL lesson