HOGWARTS SCHOOL OF WITCHCRAFT AND WIZARDRY PREPARES FOR DUELS. Grupptentamen i Programmeringsparadigm

Size: px
Start display at page:

Download "HOGWARTS SCHOOL OF WITCHCRAFT AND WIZARDRY PREPARES FOR DUELS. Grupptentamen i Programmeringsparadigm"

Transcription

1 HOGWARTS SCHOOL OF WITCHCRAFT AND WIZARDRY PREPARES FOR DUELS Grupptentamen i Programmeringsparadigm

2 REGLER FÖR GRUPPTENT v Webben är öppen för deltagarna. v Deltagarna får endast kommunicera (angående tenten) med varandra. v Att aktivt begära hjälp eller information av utomstående via mejl, chatforums eller andra kanaler är förbjudet v Tentttiden är 6h och slutar 19:15 (+2h för de som jobbar i par).

3 REGLER FÖR GRUPPTENT v Det finns 9 olika uppgifter i tenten. Sammanlagt kan de ge 20p. v Ni får fritt välja vem som kodar vilken uppgift eller hur ni samarbetar kring dem. v Ni får fritt välja för varje uppgift separat om ni kodar den på Haskell eller Prolog. v Det ska stå som kommentar för varje inlämnad uppgift vilken språkversion och OS som använts.

4 REGLER FÖR GRUPPTENT v Inlämningen sker via mejl till soini@abo.fi v Haskell-uppgifterna ska samlas i en fil, prolog-uppgifterna i en annan. Ifall ni använder system som inte är ömsesidigt kompatibla, får ni mejla flera filer (dokumentera detta i så fall!) v Varje inmejlad fil ska ha en kommentar om vilken grupp som producerat den. Koden ska ha kommentarer som visar hur den ska anropas.

5 REGLER FÖR GRUPPTENT v Själva uppgifterna beskrivs på engelska, eftersom svenska språket än så länge är obekant vid Hogwarts.

6 TEST DATA v You should use these lists to test the tasks that follow (naturally, you will decide how to represents the data in the lists, here they are given in pseudocode): v Slytherin students: ("Draco Malfoy", "owl ) ("Vincent Crabbe", "rat ) ("Pansy Parkinson", "cat ) ("Gregory Goyle", "cat )

7 TEST DATA v Gryffindor students: ("Harry Potter", "owl ) ("Hermione Granger", "cat ) ("Ron Weasly", "rat ) v Ravenclaw students: ("Luna Lovegood", "cat ) ("Cho Chang", "rat ) ("Padma Patil", "cat ) ("Marcus Belby", "owl )

8 TEST DATA v Hufflepuff students: ("Cedric Diggory", "cat ) ("Hannah Abbot", "owl ) ("Pomona Sprout", "rat )

9 TASK 1: DUELSTART 1P v In Hogwarts the unit that partakes in duels is a student and his/her magical pet. For duelstart you should model such a pair and then prepare this pair for the duel so that the points awarded for this pair start from 0. v You can write a Haskell function or a Prolog predicate for this; the functionality should be: v E g input: ( Harry Potter, owl) output: ( Harry Potter, owl) 0 (You choose how to represent this)

10 TASK 2: DUELREADY 1P v In duelready you work with a list of student & magical pet couples. duelready should take a list of such couples and make them ready for a duel, using the function/predicate duelstart from the last task. The expected result is naturally of list of these couples, ready for duel: v Eg ("Cedric Diggory", "cat ) ("Hannah Abbot", "owl ) ("Pomona Sprout", "rat ) should be turned into

11 TASK 2: DUELREADY 1P ("Cedric Diggory", "cat"), 0 ("Hannah Abbot", "owl"), 0 ("Pomona Sprout", "rat ), 0 v You decide how to model this, but the result must be the same list of students, all ready for duel.

12 TASK 3: PAIR FOR DUEL 2P v The function/predicate pairforduel takes in two lists where the elements are student-pet couples, and pairs these couples with other such couples, so that one couple comes from one list, the other couple from the other list. pairforduel must give as result all such possible couplings. v See next slide for example!

13 TASK 3: PAIR FOR DUEL 2P v E g first list: ("Harry Potter", "owl ) ("Hermione Granger", "cat") v Second list: ("Cedric Diggory", "cat ) ("Hannah Abbot", "owl ) ("Pomona Sprout", "rat") v should yield...

14 TASK 3: PAIR FOR DUEL 2P v The result should be: ("Harry Potter", "owl ) & ("Cedric Diggory", "cat ) ("Harry Potter", "owl ) & ("Hannah Abbot", "owl ) ("Harry Potter", "owl ) & ("Pomona Sprout", "rat ) ("Hermione Granger", "cat") & ("Cedric Diggory", "cat ) ("Hermione Granger", "cat") & ("Hannah Abbot", "owl ) ("Hermione Granger", "cat") & ("Pomona Sprout", "rat )

15 TASK 4: SAME ANIMAL 1P v This function/predicate should check whether two student-pet couples have the same animal or not. v E g: ("Harry Potter", "owl ) & ("Cedric Diggory", "cat ) => false ("Harry Potter", "owl ) & ("Hannah Abbot", "owl ) => true

16 TASK 5: PAIR FOR ANIMAL DUEL 3P v This function/predicate should work as pairforduel, but only couples with the same kind of magical pets are allowed in the result: veg ("Harry Potter", "owl ) & ("Cedric Diggory", "cat ) ("Harry Potter", "owl ) & ("Hannah Abbot", "owl ) ("Harry Potter", "owl ) & ("Pomona Sprout", "rat ) ("Hermione Granger", "cat") & ("Cedric Diggory", "cat ) ("Hermione Granger", "cat") & ("Hannah Abbot", "owl ) ("Hermione Granger", "cat") & ("Pomona Sprout", "rat )

17 TASK 6: COUPLE FOR DUEL 3P v Again we need to form (student, pet) pairs for duelling, but this time we simply pair the couples in the order that they have in the lists: the first couples from both lists will form a pair, the second couples the second pair and so on. However, as the House Lists are not equally long, there is a risk that some students will not get paired off. We might wish to find pairs for them later. So, coupleforduel must give three results: (next slide!)

18 TASK 6: COUPLE FOR DUEL 3P v Say whether all students in both the lists got paired off or not v Give the list of the new pairs v Give a list of those student-pet couples that did not get a pair (this list may be empty) v See next slide for an example!

19 TASK 6: COUPLE FOR DUEL 3P v E g first list: ("Harry Potter", "owl ) ("Hermione Granger", "cat") v Second list: ("Cedric Diggory", "cat ) ("Hannah Abbot", "owl ) ("Pomona Sprout", "rat") v should yield...

20 TASK 6: COUPLE FOR DUEL 3P v There were students left over v The list of pairs: ("Harry Potter", "owl ) & ("Cedric Diggory", "cat ) ("Hermione Granger", "cat") & ("Hannah Abbot", "owl ) v The list of those left over: ("Pomona Sprout", "rat")

21 TASK 7: THREAT 3P v threat is used to controll that two students do not threaten each other while training on a 5 x 5 field. The spells are cast on straight lines, so that the row and the column where the student stands are effected by the spell. (The magical architecture of the 5 x 5 training hall reflects the spells so that the whole row and the whole column where the student is standing are effected by the spell, but the rest of the space is uneffected.) v NB! The wizards/witches may NOT stand in the same slot!! (Next slide!)

22 TASK 7: THREAT 3P v The function/predicate threat must check the position of a student casting the spell in this hall against the position of another student planning to enter the hall (remember, (s)he may choose to apparate in any slot) and say whether there is a threat that this student might be effected by the spell cast by the first student. v Threat must also see to it that the second student may not apparate on the slot reserved by the student casting the spell! (Next slide!)

23 TASK 7: THREAT 3P 1 2 Student 2 is not threatened by the spell cast by student 1 Hint: think very, very carefully what you need to know to model the task! Do NOT model what is not needed 1 2 Student 2 is threatened by the spell cast by student 1

24 TASK 8: CROSSFIRE 3P v The function/predicate crossfire will help to determine whether a third person risks being hit by crossfire if (s)he enters the training local described above, with two students already casting spells in it. v Crossfire is defined as all the slots where the spells cast meet. v Remember to analyse the situation both for the case where the wizards training do not threaten each other, and for the one where they do! We are still working in the 5 x 5 training hall. (Next slide!)

25 TASK 8: CROSSFIRE and 2 do not threaten each other. Crossfire positions are marked in red. crossfire must produce a list of the slots to be avoided (those with crossfire). 1 2 Students 1 and 2 are threatened by each other. Crossfire positions are marked in red.

26 TASK 9: SAFE 3P v A third person will apparate onto the arena at a given position but is it safe? v Safe positions to apparate in are those that are not under threat (see task 7) or those where one risks crossfire (see task 8). v The function/predicate safe must check whether the slot where the third person plans to apparate is safe or not.

27 GOOD LUCK WITH YOUR CODING MAGIC! %253Bhttps%25253A%25252F%25252Fen.wikipedia.org%25252Fwiki%25252FHogwarts&source=iu&pf=m&fir=8Db5n-ewbR6CBM%253A %252CUmXnQO0O_YykpM%252C_&usg= MQlngaztgHhWNUqsyl_nshvOzJI %3D&ved=0ahUKEwjNy_Dr45_MAhUOb5oKHSm5C00QyjcIJQ&ei=As4YV83COI7e6QSp8q7oBA#imgdii=8Db5n-ewbR6CBM%3A%3B8Db5newbR6CBM%3A%3B50Cw-vVa3QB-4M%3A&imgrc=8Db5n-ewbR6CBM%3A

DUMBLEDORE S ARMY VIMUNC I MARCH 21ST TO 22ND, 2014 HOSTED AT LANGLEY HIGH SCHOOL. 1 P a g e

DUMBLEDORE S ARMY VIMUNC I MARCH 21ST TO 22ND, 2014 HOSTED AT LANGLEY HIGH SCHOOL. 1 P a g e DUMBLEDORE S ARMY VIMUNC I MARCH 21ST TO 22ND, 2014 HOSTED AT LANGLEY HIGH SCHOOL 1 P a g e D u m b l e d o r e s A r m y P a g e 2 VIMUNC I Dear Delegates, NATALIE FAHLBERG JIHO KIM HOONIE KIM CAMERON

More information

Carnegie Mellon University Spring Programming Competition

Carnegie Mellon University Spring Programming Competition Carnegie Mellon University Spring Programming Competition March 29, 2008 You can program in C, C++, or Java; note that the judges will re-compile your programs before testing Your programs should read

More information

Sample file. Authors: Crystal and Thomas Rende Cover Illustrator: Heather Tang. Novel Ideas Harry Potter and the Chamber of Secrets

Sample file. Authors: Crystal and Thomas Rende Cover Illustrator: Heather Tang. Novel Ideas Harry Potter and the Chamber of Secrets Authors: Crystal and Thomas Rende Cover Illustrator: Heather Tang Novel Ideas Harry Potter and the Chamber of Secrets Copyright 2007 New Learning Publishing All rights reserved. Except as permitted under

More information

SVENSKA STÅNDPUNKTER REGIONAL RADIOCOMMUNICATION CONFERENCE RRC-04

SVENSKA STÅNDPUNKTER REGIONAL RADIOCOMMUNICATION CONFERENCE RRC-04 SVENSKA STÅNDPUNKTER REGIONAL RADIOCOMMUNICATION CONFERENCE RRC-04 Innehållsförteckning 0. Inledning 3 1. 1, Frequency planning for the digital terrestrial broadcasting service for RRC 04/05 4 2. 2, Time

More information

CHAPTER IV FINDINGS AND DISCUSSION

CHAPTER IV FINDINGS AND DISCUSSION 1 CHAPTER IV FINDINGS AND DISCUSSION This chapter presents the analysis of and the Sorcerer s Stone movie using the register s theory. The writer will try to connect the topic with the theory. 4.1 The

More information

(10 th form, Home Reading Lesson)

(10 th form, Home Reading Lesson) Заліщицька районна державна адміністрація Відділ освіти Районний методичний кабінет Заліщицька державна гімназія (10 th form, Home Reading Lesson) Prepared by: Teacher of English, Zalishchyky Gimnasia,

More information

SVENSK STANDARD SS ISO 10957:2010

SVENSK STANDARD SS ISO 10957:2010 SVENSK STANDARD SS ISO 10957:2010 Fastställd/Approved: 2010 02 15 Publicerad/Published: 2010 03 10 Utgåva/Edition: 2 Språk/Language: engelska/english ICS: 01.140.20 Dokumentation Internationellt standardnummer

More information

3. Speaking task: as the pairs visit each poster they should. a) Identify the movie. b) Name any characters they can

3. Speaking task: as the pairs visit each poster they should. a) Identify the movie. b) Name any characters they can There are numerous ways these summary posters can be exploited in the ESL classroom. This is how I used them with pre-intermediate teen students. We had already spent two weeks studying the narrative tenses

More information

Library Lessons. by Lynne Farrell Stover. Harry Potter and the Order of the Phoenix. Lesson 1: Phone Spell

Library Lessons. by Lynne Farrell Stover. Harry Potter and the Order of the Phoenix. Lesson 1: Phone Spell Calling Harry Grades 4 7 Library Lessons by Lynne Farrell Stover Harry Potter and the Order of the Phoenix In his fifth year at Hogwarts School for Witchcraft and Wizardry fifteen-year-old Harry Potter

More information

Identifiering och beskrivning Internationellt standardnummer för böcker (ISBN) (ISO 2108:2005, IDT)

Identifiering och beskrivning Internationellt standardnummer för böcker (ISBN) (ISO 2108:2005, IDT) SVENSK STANDARD SS-ISO 2108:2008 Fastställd/Approved: 2008-08-25 Publicerad/Published: 2008-09-18 Utgåva/Edition: 1 Språk/Language: engelska/english ICS: 01.140.20; 35.020 Identifiering och beskrivning

More information

The Deathly Hallows. Library Lessons. by Lynne Farrell Stover. Harry Potter and the Deathly Hallows by J. K. Rowling. Lesson 1: Wizard World Wisdom

The Deathly Hallows. Library Lessons. by Lynne Farrell Stover. Harry Potter and the Deathly Hallows by J. K. Rowling. Lesson 1: Wizard World Wisdom The Deathly Hallows Grades 3 7 Library Lessons by Lynne Farrell Stover Harry Potter and the Deathly Hallows by J. K. Rowling Book seven, the conclusion of the Harry Potter saga, begins in the home of the

More information

You re a Divergent, Harry

You re a Divergent, Harry 1 Drew Crabtree You re a Divergent, Harry In Harry Potter and the Chamber of Secrets, Headmaster Albus Dumbledore explained to Harry that the sword of Gryffindor can present itself to any worthy Gryffindor.

More information

The Cure. I saved a Gryffindor from the hatred and prejudice of the Muggle World Hermione. I wonder why you never did anything about that.

The Cure. I saved a Gryffindor from the hatred and prejudice of the Muggle World Hermione. I wonder why you never did anything about that. He was attracted to other boys. Oh he claimed that he had just been dumped by his Muggle girlfriend back home, but it was clear to anyone who looked. It was also obvious that he was dreading the treatment

More information

SVENSK STANDARD SS

SVENSK STANDARD SS SVENSK STANDARD SS 424 14 16 Fastställd Utgåva Sida Ansvarig kommitté 2008-01-21 9 1 (136) SEK TK 20 Copyright SEK. Reproduction in any form without permission is prohibited. Kraftkablar PEX-isolerad kabel

More information

Literacy Skills Teacher's Guide for Harry Potter and the Half-Blood Prince by J.K. Rowling

Literacy Skills Teacher's Guide for Harry Potter and the Half-Blood Prince by J.K. Rowling Book Information, Harry Potter and the Half-Blood Prince Quiz Number: 207654 Bloomsbury Publishing,2005 ISBN 0-7475-8110-X; LCCN 607 Pages Book Level: 7.2 Interest Level: UY In this, the sixth book in

More information

Amazon books Kids Love Books

Amazon books Kids Love Books Amazon books is launching a unique campaign, Kids Love Books, to showcase the nation s favourite children s books (ages 4-11), as voted for by children. We are asking schools and parents to ask their children

More information

The Hero. Harry Potter

The Hero. Harry Potter Archetypes in & The Hero The Hero is a protagonist whose life is an adventure. The circumstances of his birth are unusual, and he is raised by a guardian. Characterized by courage, strength, and honor,

More information

SVENSK STANDARD SS-ISO :2009

SVENSK STANDARD SS-ISO :2009 SVENSK STANDARD SS-ISO 12637-4:2009 Grafisk teknik Ordlista Del 4: Termer inom efterbearbetning (ISO 12637-4:2008, IDT) Graphic technology Vocabulary Part 4: Postpress terms (ISO 12637-4:2008, IDT) SWEDISH

More information

who entered my world and did beautiful things there. J.K. Rowling For Joe, Louis, Max, Sonny, and Merle... wizards all...

who entered my world and did beautiful things there. J.K. Rowling For Joe, Louis, Max, Sonny, and Merle... wizards all... The digital heart of the Wizarding World www.pottermore.com Parts One and Two may not be performed in whole or in part and no use may be made of it whatsoever except under express license from the rights

More information

---===ooooooooo===---

---===ooooooooo===--- The Band A/N: I don t own Harry Potter and wouldn t particularly care to. I would like a rental agreement with option to buy for Hermione Granger. A short term contract with Nyphadora Tonks wouldn t be

More information

DOWNLOAD OR READ : NINE DRAGONS A BEATRIX ROSE THRILLER HONG KONG STORIES VOLUME 1 BEATRIX ROSES HONG KONG STORIES BOOK 2 PDF EBOOK EPUB MOBI

DOWNLOAD OR READ : NINE DRAGONS A BEATRIX ROSE THRILLER HONG KONG STORIES VOLUME 1 BEATRIX ROSES HONG KONG STORIES BOOK 2 PDF EBOOK EPUB MOBI DOWNLOAD OR READ : NINE DRAGONS A BEATRIX ROSE THRILLER HONG KONG STORIES VOLUME 1 BEATRIX ROSES HONG KONG STORIES BOOK 2 PDF EBOOK EPUB MOBI Page 1 Page 2 nine dragons a beatrix rose thriller hong kong

More information

EXAMENSARBETE. We don t need no education. A study on the motivational effects of cultural media in ESOL education. Fredrik Erlandsson

EXAMENSARBETE. We don t need no education. A study on the motivational effects of cultural media in ESOL education. Fredrik Erlandsson Ämneslärare för gymnasiet, 300hp EXAMENSARBETE We don t need no education A study on the motivational effects of cultural media in ESOL education Fredrik Erlandsson Engelska med didaktik för ämneslärare

More information

A Harry Potter Christmas Carol

A Harry Potter Christmas Carol A Harry Potter Christmas Carol A Harry Christmas Carol By Aaran St Vines ***~*~ Even though it had been over twenty-four hours since Snape had sentenced him to his room, Harry was still fuming about this

More information

ISSN Galaxy: International Multidisciplinary Research Journal Bi-Monthly Refereed and Indexed Open Access ejournal

ISSN Galaxy: International Multidisciplinary Research Journal Bi-Monthly Refereed and Indexed Open Access ejournal About Us: http:///about/ Archive: http:///archive/ Contact Us: http:///contact/ Editorial Board: http:///editorial-board/ Submission: http:///submission/ FAQ: http:///fa/ ISSN 2278-9529 Galaxy: International

More information

Triwizard Redoux. DrT

Triwizard Redoux. DrT Triwizard Redoux by DrT Table of Contents Triwizard Redoux...1 Chapter I... 3 Chapter II... 9 Chapter III...16 Chapter IV...22 Chapter V...29 Chapter VI...38 Chapter VII... 44 Chapter VIII...51 Chapter

More information

The Defense Professor Chapter 1: Chapter 1

The Defense Professor Chapter 1: Chapter 1 Title: The Defense Professor Category: Books» Harry Potter Author: Bloodpage Alchemist Language: English, Rating: Rated: K+ Genre: General Published: 03 30 11, Updated: 09 06 13 Chapters: 12, Words: 47,926

More information

CHAPTER IV RESEARCH FINDING. Secret movie script, the syntactical realized of the expressive speech acts that were

CHAPTER IV RESEARCH FINDING. Secret movie script, the syntactical realized of the expressive speech acts that were CHAPTER IV RESEARCH FINDING This chapter presents the research finding. In this chapter the researcher, explain kind of expressive speech acts that are found in the Harry Potter and Chamber of Secret movie

More information

By Zoe, Laila, Chloe, and Franca

By Zoe, Laila, Chloe, and Franca By Zoe, Laila, Chloe, and Franca Wand by Zoe I am a wand I am a wand. Though small and Made of wood, I am a wizards Best partner, just wave me and Swiftly in the air, say the magic Words, if you want me

More information

Sample file. Authors: Crystal and Thomas Rende Cover Illustrator: Heather Tang. Novel Ideas Harry Potter and the Order of the Phoenix

Sample file. Authors: Crystal and Thomas Rende Cover Illustrator: Heather Tang. Novel Ideas Harry Potter and the Order of the Phoenix Authors: Crystal and Thomas Rende Cover Illustrator: Heather Tang Novel Ideas Harry Potter and the Order of the Phoenix Copyright 2007 New Learning Publishing All rights reserved. Except as permitted under

More information

The Object Lessons Trilogy Going For A Glass Of Water

The Object Lessons Trilogy Going For A Glass Of Water The Object Lessons Trilogy Going For A Glass Of Water I'm going for a glass of water, Harry said abruptly. I really can't listen to you two argue anymore. He turned, ignoring the stunned silence behind

More information

DOWNLOAD OR READ : THE UNOFFICIAL HARRY POTTER INSULTS HANDBOOK 101 COMEBACKS FOR THE SLYTHERIN IN YOUR LIFE PDF EBOOK EPUB MOBI

DOWNLOAD OR READ : THE UNOFFICIAL HARRY POTTER INSULTS HANDBOOK 101 COMEBACKS FOR THE SLYTHERIN IN YOUR LIFE PDF EBOOK EPUB MOBI DOWNLOAD OR READ : THE UNOFFICIAL HARRY POTTER INSULTS HANDBOOK 101 COMEBACKS FOR THE SLYTHERIN IN YOUR LIFE PDF EBOOK EPUB MOBI Page 1 Page 2 the unofficial harry potter insults handbook 101 comebacks

More information

Harry Potter competition

Harry Potter competition Name: Harry Potter competition Harry Potter and the Philosopher s Stone Warm-up questions: 1. What s the name of the Gryffindor s house ghost? 2. What is the colour of the Slytherin s flag? 3. What s the

More information

Blueprint A, 3.0. Ett utdrag från sidorna från huvudboken, BLUEPRINT A, 3.0. Så här arbetar du med provlektionen:

Blueprint A, 3.0. Ett utdrag från sidorna från huvudboken, BLUEPRINT A, 3.0. Så här arbetar du med provlektionen: Blueprint A, 3.0 Funderar du på att bygga om din undervisning i engelska? Testa nya Blueprint A, 3.0 - ett av Sveriges mest omtyckta läromedel för engelska 5 på gymnasiet! PROVLEKTION TILL ALLA HJÄRTANS

More information

Compression efficiency of different picture coding structures in High Efficiency Video Coding (HEVC)

Compression efficiency of different picture coding structures in High Efficiency Video Coding (HEVC) UPTEC STS 16006 Examensarbete 30 hp Mars 2016 Compression efficiency of different picture coding structures in High Efficiency Video Coding (HEVC) Johan Bartelmess Abstract Compression efficiency of different

More information

Harry Potter and Chamber of Secret

Harry Potter and Chamber of Secret Harry Potter and Chamber of Secret [Vernon's House] Harry : I can't let you out, Hedwig. I am not allowed to use magic outside of school. Besides, if uncle Vernon... Uncle Vernon : Harry Potter!!! Harry

More information

Harry Potter and the Sorcerer s Stone

Harry Potter and the Sorcerer s Stone Harry Potter and the Sorcerer s Stone By J. K. Rowling Dictation passages Week One Mr. and Mrs. Dursley, of number four, Privet Drive, were proud to say that they were perfectly normal, thank you very

More information

Institutionen för datavetenskap Department of Computer and Information Science

Institutionen för datavetenskap Department of Computer and Information Science Institutionen för datavetenskap Department of Computer and Information Science Examensarbete Design and implementation of a generic communication protocol for use in an IPTV environment av Mikael Nilsson

More information

ANDREAS REJBRAND Harry Potter The Harry Potter movies a profound subjective analysis

ANDREAS REJBRAND Harry Potter   The Harry Potter movies a profound subjective analysis ANDREAS REJBRAND 2006-05-24 Harry Potter http://english.rejbrand.se/ Table of Contents THE HARRY POTTER MOVIES A PROFOUND SUBJECTIVE ANALYSIS... 1 TABLE OF CONTENTS... 2 INTRODUCTION... 3 HARRY POTTER

More information

Harry Potter 2011 Final Copy Page 1 of 7 12/12/2011

Harry Potter 2011 Final Copy Page 1 of 7 12/12/2011 Harry Potter 2011 Final Copy Page 1 of 7 12/12/2011 Stage opens with just the sorting hat on a stool at the front. A medicine bottle is next to it, labelled polyjuice potion. Harry Potter theme plays four

More information

Dokumentation Förvaringskrav för arkivoch biblioteksmaterial (ISO 11799:2003, IDT)

Dokumentation Förvaringskrav för arkivoch biblioteksmaterial (ISO 11799:2003, IDT) SVENSK STANDARD Fastställd 2005-03-11 Utgåva 1 Dokumentation Förvaringskrav för arkivoch biblioteksmaterial (ISO 11799:2003, IDT) Information and documentation Document storage requirements for archive

More information

Contents. Harry Potter - a story of success An Online-Chat with J K Rowling. Three-Quarters. Taking a closer look at the book and the film

Contents. Harry Potter - a story of success An Online-Chat with J K Rowling. Three-Quarters. Taking a closer look at the book and the film READER Contents Preface Chapter one Chapter two Chapter three Chapter four Chapter five Chapter six Chapter seven Chapter eight Chapter nine Chapter ten Chapter eleven Chapter twelve Chapter thirteen Chapter

More information

Educating the Young Wizard

Educating the Young Wizard Zeteo: The Journal of Interdisciplinary Writing Educating the Young Wizard J.K. Rowling, C.S. Lewis, and Xenophilius Lovegood By Katie Eller G iven how many children have read and re-read the Harry Potter

More information

The Present-day Composer: Performing Individuality and Producing on Commission

The Present-day Composer: Performing Individuality and Producing on Commission Paper from the Conference Current Issues in European Cultural Studies, organised by the Advanced Cultural Studies Institute of Sweden (ACSIS) in Norrköping 15-17 June 2011. Conference Proceedings published

More information

The digital heart of the Wizarding World.

The digital heart of the Wizarding World. The digital heart of the Wizarding World www.pottermore.com Harry Potter and the Cursed Child Parts One and Two may not be performed in whole or in part and no use may be made of it whatsoever except under

More information

The digital heart of the Wizarding World.

The digital heart of the Wizarding World. The digital heart of the Wizarding World www.pottermore.com Harry Potter and the Cursed Child Parts One and Two may not be performed in whole or in part and no use may be made of it whatsoever except under

More information

Mobile Math Teachers Circle The Return of the iclicker

Mobile Math Teachers Circle The Return of the iclicker Mobile Math Teachers Circle The Return of the iclicker June 20, 2016 1. Dr. Spock asked his class to solve a percent problem, Julia set up the proportion: 4/5 = x/100. She then cross-multiplied to solve

More information

Small bowls with pretzels will be on each table for the kids to snack on throughout the service too.]

Small bowls with pretzels will be on each table for the kids to snack on throughout the service too.] FIRST UNITARIAN CHURCH OF HAMILTON SERVICE SCRIPT TITLE: Harry Potter A How To Guide On Speaking Truth To Power (Revised for April 2009) DATE: Sunday, April 26, 2009 (This service was originally presented

More information

Harry Potter and the Deathly Hallows Part VI by Rilian Holden. Based on the book By JK Rowling

Harry Potter and the Deathly Hallows Part VI by Rilian Holden. Based on the book By JK Rowling Harry Potter and the Deathly Hallows Part VI by Rilian Holden Based on the book By JK Rowling All rights reserved to JK Rowling. No profit was made from this screenplay. www.booksandwands.com Deathly Hallows

More information

Improbable History A Dog and his Boy

Improbable History A Dog and his Boy Improbable History A Dog and his Boy Six a half year old Harry Potter struggled with carrying the small plastic pail filled with white stones from the pile on the lawn to the flower bed where he would

More information

DOWNLOAD PDF IF HARRY POTTER RAN GENERAL ELECTRIC

DOWNLOAD PDF IF HARRY POTTER RAN GENERAL ELECTRIC Chapter 1 : If Harry Potter Ran General Electric & 3 Other Books by Tom Morris (All Signed) ebay In If Harry Potter Ran General Electric, bestselling business author Tom Morris (If Aristotle Ran General

More information

Order Of The Phoenix Book Review ->->->->

Order Of The Phoenix Book Review ->->->-> Order Of The Phoenix Book Review ->->->-> http://shurll.com/9pkfi 1 / 5 2 / 5 Buy Harry Potter and the Order of the Phoenix by J. K. Rowling. The Harry Potter books have already created a corpus of modern.

More information

Summary: This is the sequel to First Day of class where Sirius was never arrested and was able to

Summary: This is the sequel to First Day of class where Sirius was never arrested and was able to Disclaimer: Do I look like JKR? Then I don t own Harry Potter. Summary: This is the sequel to First Day of class where Sirius was never arrested and was able to adopt Harry at the age of 18 months. Harry

More information

The Folk Trad Orality Method within Higher education Susanne Rosenberg, KMH

The Folk Trad Orality Method within Higher education Susanne Rosenberg, KMH The Folk Trad Orality Method within Higher education Susanne Rosenberg, KMH Developing the curriculum. Orality method and learning circle Questions, ideas, inspiration Longing, Being bored Listen Contemplate

More information

Harry Potter and. Literature Guide. For. by J.K. Rowling. Student - Lesson 1

Harry Potter and. Literature Guide. For. by J.K. Rowling. Student - Lesson 1 Literature Guide For Harry Potter and by J.K. Rowling Background Vocabulary Comprehension Application/ Knowledge Extension Lesson Semantic Personal Personal Response/ Raft/Letter Map Clues Literary Analysis

More information

Blaze of Glory. Monday Morning

Blaze of Glory. Monday Morning Blaze of Glory Monday Morning Harry awoke with a start, his hand instinctively going for his wand. He gasped for air as the nightmare slowly released him, leaving him staring at the onrushing dawn. He

More information

Like A Phoenix From The Ashes Prologue

Like A Phoenix From The Ashes Prologue Aldonza picked up. And our daughter suggested we talk to you. If a student at Hogwarts is able to escape someone reputed to be the most powerful dark wizard of this age well, to be honest, we want to be

More information

Place Metaphor in Digital Television

Place Metaphor in Digital Television TRITA-NA-D0207 CID-166 ISSN 1403-0721 Department of Numerical Analysis and Computer Science Place Metaphor in Digital Television Anders Hedman, Sören Lenman, Carina Persson CID, CENTRE FOR USER ORIENTED

More information

Part One of the Draco Trilogy

Part One of the Draco Trilogy Draco Dormiens Part One of the Draco Trilogy Disclaimer: This story is based on characters and situations created and owned by JK Rowling, various publishers including but not limited to Bloomsbury Books,

More information

Harry Potter and the Narrative Causality HPNC

Harry Potter and the Narrative Causality HPNC Hermione cuddled closer. Let s look at your coincidences. First year, you needed to get through the traps the Professors rigged to protect the Philosophers Stone. You needed to get by fluffy, Hagrid let

More information

About this Pathfinder

About this Pathfinder About this Pathfinder The purpose of this pathfinder is to assist moguls with learning about the wizarding world of Harry Potter. Oh, I almost forgot, most of you probably don t know what a mogul is. A

More information

Harry Potter and the Marriage Contracts. Clell65619

Harry Potter and the Marriage Contracts. Clell65619 Harry Potter and the Marriage Contracts By Clell65619 Table of Contents Harry Potter and the Marriage Contracts...1 Chapter One Survivors...3 Chapter Two Exchanges...13 Chapter Three Sharing Experience...24

More information

Sebastian Hilli. Paraphrase. for oboe, clarinet, piano and double bass

Sebastian Hilli. Paraphrase. for oboe, clarinet, piano and double bass 2 20 Sebastian Hilli Paraphrase for oboe, clarinet, piano and double bass 201 Copyright by the Cooser All Rights Reserved No part of this publication may be copied or reproduced in any form or by any means

More information

Suggested fingering for keyboards

Suggested fingering for keyboards Suggested fingering for keyboards BASSAM ALFARHAN DAVID SANDBERG Bachelor of Science Thesis Supervisor: Anders Askenfelt Examiner: Mårten Björkman Stockholm, Sweden 2013 Abstract Learning how to play

More information

Electronic music and sound spatialization in contemporary theatre performances

Electronic music and sound spatialization in contemporary theatre performances Kent Olofsson Composer Teacher at the Malmö Academy of Music Doctorate Candidate in Artistic Research at the Royal College of Music in Stockholm Electronic music and sound spatialization in contemporary

More information

Mail-Order Brides Of America: Iowa Destiny (A Clean Western Historical Romance) By Zoe Matthews

Mail-Order Brides Of America: Iowa Destiny (A Clean Western Historical Romance) By Zoe Matthews Mail-Order Brides Of America: Iowa Destiny (A Clean Western Historical Romance) By Zoe Matthews Brunch at Bobby's: 140 Recipes for the Best Part of the Weekend [Bobby Flay, Stephanie Banyas, Sally Jackson]

More information

Well, what about Weasley? You were dating her last year. I was, he agreed. But not any more.

Well, what about Weasley? You were dating her last year. I was, he agreed. But not any more. Perfect Situations Her heels made an echoing, clicking sound as she walked purposefully down the aisle of the church. She made an elegant figure, wearing a black Muggle mourning dress, with her black hair

More information

Harry's Second Chance. DrT

Harry's Second Chance. DrT Harry's Second Chance by DrT Table of Contents Harry's Second Chance...1 Chapter I... 3 Chapter II... 10 Chapter III...16 Chapter IV...22 Chapter V...29 Chapter VI...35 Chapter VII... 42 Chapter VIII...49

More information

A Magical Vacation? Preparatory Reading TALKING ABOUT TRAVEL, PAST SIMPLE TENSE ADJECTIVES, ASKING FOLLOW-UP QUESTIONS

A Magical Vacation? Preparatory Reading TALKING ABOUT TRAVEL, PAST SIMPLE TENSE ADJECTIVES, ASKING FOLLOW-UP QUESTIONS TALKING ABOUT TRAVEL, PAST SIMPLE TENSE ADJECTIVES, ASKING FOLLOW-UP QUESTIONS A Magical Vacation? Last year I went on the most wonderful vacation. I m a huge fan of the Harry Potter books and movies,

More information

The role of Fred and George Weasley in the Harry Potter books

The role of Fred and George Weasley in the Harry Potter books The role of Fred and George Weasley in the Harry Potter books Saila Kemilä Master s thesis English Philology Faculty of Humanities University of Oulu Spring 2018 Table of Contents 1 INTRODUCTION 3 2 MATERIALS

More information

Gold Tinted Spectacles

Gold Tinted Spectacles Gold Tinted Spectacles Chapter 1 A Beginning...3 Chapter 2 Talking... 12 Chapter 3 More than Talking... 19 Chapter 4 More... Simply More... 25 Chapter 5 Revelations... 35 Chapter 6 The Room... 44 Chapter

More information

Chances Guess Who Just Got Back Today

Chances Guess Who Just Got Back Today Chances Guess Who Just Got Back Today Harry James Potter took a long drink of his Pina-Colada and sighed happily. He stretched out on his sun bed to gaze happily at the beach before him. His eyes surveyed

More information

Screen for the modern workplace

Screen for the modern workplace Screen for the modern workplace Joakim Karlström MASTERTHESIS 2016 Master in Product Development with a specialization INDUSTRIAL DESIGN Postadress: Besöksadress: Telefon: Box 1026 Gjuterigatan 5 036-10

More information

Chapter Six: Data Analysis

Chapter Six: Data Analysis Chapter Six: Data Analysis 6.1 Introduction In the previous chapter, we discussed many issues regarding different cultural problems that have arisen in the translation/subtitling of Harry Potter movies

More information

Reference Management with. EndNote X8 Mac. Guide for Students & Researchers

Reference Management with. EndNote X8 Mac. Guide for Students & Researchers Reference Management with EndNote X8 Mac Guide for Students & Researchers Library & ICT Faculty of Medicine Lund University 2017 0 Table of Contents What is EndNote?... 2 How do I get access to the program?...

More information

Syntax Exercises. Consider the following stanza from Lewis Carroll's poem "Jabberwocky":

Syntax Exercises. Consider the following stanza from Lewis Carroll's poem Jabberwocky: Syntax Exercises Exercise 1 Consider the following stanza from Lewis Carroll's poem "Jabberwocky": (1) 'Twas brillig, and the slithy toves Did gyre and gimble in the wabe; All mimsy were the borogroves,

More information

what it meant. Headmaster Dumbledore came striding up to the frozen tableau. Hoping the ancient wizard could help her understand what was going on,

what it meant. Headmaster Dumbledore came striding up to the frozen tableau. Hoping the ancient wizard could help her understand what was going on, After fifteen timeless seconds of inactivity, the Great Hall started buzzing, everyone either recounting what had just happened or speculating on Protectors Colin Creevey sat at the Gryffindor table during

More information

CITATION METRICS WORKSHOP (WEB of SCIENCE)

CITATION METRICS WORKSHOP (WEB of SCIENCE) CITATION METRICS WORKSHOP (WEB of SCIENCE) BASIC LEVEL: Searching Indexed Works Only Prepared by Bibliometric Team, NUS Libraries, Apr 2018 Section Description Pages I Citation Searching of Indexed Works

More information

Unit of Study: Shakespeare vs. Modern Day. some of the most memorable and timeless stories, which everyone has heard of. The

Unit of Study: Shakespeare vs. Modern Day. some of the most memorable and timeless stories, which everyone has heard of. The Griswold 1 Maria Griswold Dr. Mary Warner ENGL 112B 5 May 2015 Unit of Study: Shakespeare vs. Modern Day Introduction to the Unit Why should we continue to teach Shakespeare? When students hear Shakespeare

More information

HARRY POTTER AND THE ADAMANTINE GATE By Jitterbug Perfume

HARRY POTTER AND THE ADAMANTINE GATE By Jitterbug Perfume HARRY POTTER AND THE ADAMANTINE GATE By Jitterbug Perfume www.darkmark.com/forum For Patty, Lif and Stewie for being parts of my life. Thanks guys. Harry Potter belongs to Warner Bros, Scholastic, Bloomsbury,

More information

Charts for A Writer s Guide to Harry Potter

Charts for A Writer s Guide to Harry Potter Charts for A Writer s Guide to Harry Potter Obstacles to Overcome, Lesson One, Point 6: Character Beginning Situation Obstacle to Overcome Ending Triumph Dobby Enslaved to the Malfoys. Cannot act on his

More information

SVENSK STANDARD SS-ISO 9230:2007. Dokumentation Bestämning av prisindex för tryckta och elektroniska media inköpta av bibliotek (ISO 9230:2007, IDT)

SVENSK STANDARD SS-ISO 9230:2007. Dokumentation Bestämning av prisindex för tryckta och elektroniska media inköpta av bibliotek (ISO 9230:2007, IDT) SVENSK STANDARD SS-ISO 9230:2007 Fastställd 2007-05-31 Utgåva 2 Dokumentation Bestämning av prisindex för tryckta och elektroniska media inköpta av bibliotek (ISO 9230:2007, IDT) Information and documentation

More information

Perfect Slytherins - Tales From The Second Year Part 1

Perfect Slytherins - Tales From The Second Year Part 1 Perfect Slytherins - Tales From The Second Year Part 1 It was at the end of Potter s first year that Severus finally admitted that the Harry Potter before him was not the son of James Potter, and with

More information

Harry Potter and. Literature Guide. for. by J.K. Rowling. Model Response Lesson 1

Harry Potter and. Literature Guide. for. by J.K. Rowling. Model Response Lesson 1 Literature Guide for Harry Potter and by J.K. Rowling Background Vocabulary Comprehension Application/ Knowledge Extension Lesson Anticipation Vocabulary Personal Response Character Rating Guide Overview

More information

The Foundations of 3D Analysis: 3D Model of the Avada Kedavra Curse in Potteriana

The Foundations of 3D Analysis: 3D Model of the Avada Kedavra Curse in Potteriana Journal of Siberian Federal University. Humanities & Social Sciences 10 (2016 9) 2365-2373 ~ ~ ~ УДК 81+811.111 The Foundations of 3D Analysis: 3D Model of the Avada Kedavra Curse in Potteriana Arsentiy

More information

SVENSK STANDARD SS-EN

SVENSK STANDARD SS-EN SVENSK STANDARD SS-EN 50083-5 Fastställd Utgåva Sida Ingår i Svenska Elektriska Kommissionen, SEK 2001-05-29 2 1 (1+54) SEK Översikt 209 Copyright SEK. Reproduction in any form without permission is prohibited.

More information

Harry Potter and. Literature Guide. for. by J.K. Rowling. Student Lesson 1

Harry Potter and. Literature Guide. for. by J.K. Rowling. Student Lesson 1 Literature Guide for Harry Potter and by J.K. Rowling Background Vocabulary Comprehension Application/ Knowledge Extension Lesson Anticipation Vocabulary Personal Response Character Rating Guide Overview

More information

AI understands joke. Home Archive Templates Forum Contact Sitemap. Posted in Technology on , 12:57

AI understands joke. Home Archive Templates Forum Contact Sitemap. Posted in Technology on , 12:57 1 of 5 8/14/2007 12:11 PM Home Archive Templates Forum Contact Sitemap Search Keywords Search AI understands joke Posted in Technology on 2007-08-05, 12:57 Artificial intelligence experts, Julia Taylor

More information

Swish. Our brand and how you use it.

Swish. Our brand and how you use it. Swish. Our brand and how you use it. Introduction This document contains guidelines and requirements that are supposed to be used whenever you wish to display Swish and possibly together with your own

More information

Remote Control of Test Stations

Remote Control of Test Stations Remote Control of Test Stations Software solutions in TestStand Bachelor s thesis in Electrical engineering Kevin Johansson Henrik Kahl Department of Signals and Systems CHALMERS UNIVERSITY OF TECHNOLOGY

More information

Death of a Hero. Still, Harry thought as the Express pulled out of Hogsmeade Station, it wouldn't hurt to have a few surprises planned. Just in case.

Death of a Hero. Still, Harry thought as the Express pulled out of Hogsmeade Station, it wouldn't hurt to have a few surprises planned. Just in case. Death of a Hero haharry stepped onto the platform in Hogsmeade, prepared to climb onto the Express to return him to his abusive relatives once again. Fifth year was over, Sirius was dead, and people in

More information

Dumbledore s Army. DrT

Dumbledore s Army. DrT Dumbledore s Army By DrT 1 Table of Contense Dumbledore s Army... 1 Chapter 01... 3 Chapter 02... 12 Chapter 03... 22 Chapter 04... 33 Chapter 05... 44 Chapter 06... 51 Chapter 07... 59 Chapter 08... 67

More information

Podium Acoustics for the Symphony Orchestra

Podium Acoustics for the Symphony Orchestra Podium Acoustics for the Symphony Orchestra An investigation of correlations between subjective and objective acoustic parameters M A L I N C E D E R L Ö F Master of Science Thesis Stockholm, Sweden Podium

More information

Automatic Camerawork in virtual talk show production

Automatic Camerawork in virtual talk show production Automatic Camerawork in virtual talk show production Automatiserat kameraarbete i virtuella talkshowproduktioner Author: Mikael Lang Company: NHK Japan Broadcasting Corporation Supervisor at NHK: Dr. Masaki

More information

Summer Reading for Rising 5 th Graders Due: 1 st day of school.

Summer Reading for Rising 5 th Graders Due: 1 st day of school. Summer Reading for Rising 5 th Graders Due: 1 st day of school. Read a book at your grade level that interests you. It has to be one that you have not read before. Then, follow the guidelines in the following

More information

A Chance Meeting Harry

A Chance Meeting Harry A Chance Meeting Harry A/N: I do not own Harry Potter. But you knew that. Harry Potter and The Chance Meeting Chapter One: Harry The clicking of her heels echoed off the masonry as she made her way down

More information

Harry Potter s Moral Universe: Reading Harry Potter as a Morality Tale. Linnea Helgesen

Harry Potter s Moral Universe: Reading Harry Potter as a Morality Tale. Linnea Helgesen Harry Potter s Moral Universe: Reading Harry Potter as a Morality Tale Linnea Helgesen A Thesis Presented to The Department of Literature, Area Studies and European Languages The University of Oslo In

More information

Please contact our events team for a bespoke quote based on your individual requirements. Tel:

Please contact our events team for a bespoke quote based on your individual requirements. Tel: Our events team are on hand to create and deliver unique experiences that will exceed guests expectations on the iconic sets from the Harry Potter film series. Please contact our events team for a bespoke

More information

Complete Idiot's Guide To Writing Poetry By Nikki Moustaki

Complete Idiot's Guide To Writing Poetry By Nikki Moustaki Complete Idiot's Guide To Writing Poetry By Nikki Moustaki - Amazon.com: Complete Idiot's Guide to Writing Poetry - The Complete Idiot's Guide to Writing Poetry will help you compose powerful, emotion-packed

More information

Independent Book of Your Choice

Independent Book of Your Choice Name: Independent Book of Your Choice 7th Grade Summer Assignment (Worth 100 points) 7th Grade LA ~ Ms. Glidden Hello future 7th graders! Mrs. Campeta and I have worked together to create a summer reading

More information

Cereal Box Book Report

Cereal Box Book Report Cereal Box Book Report This month s book report is to create a Cereal Box Book Report. You will need to cover and decorate a real cereal box with illustrations, information, and other interesting facts

More information