Concepts of Programming Languages, Spring 2014 Practice Assignment1 Discussion:

Size: px
Start display at page:

Download "Concepts of Programming Languages, Spring 2014 Practice Assignment1 Discussion:"

Transcription

1 German University in Cairo Media Engineering and Technology Prof. Dr. Slim Abdennadher Concepts of Programming Languages, Spring 2014 Practice Assignment1 Discussion: Exercise 1-1 Movies The supplied file movies.pl includes a database of movies specified by 4 different predicates: movie(m,y). % movie M was produced in year Y director(m,d). % movie M was directed by director D actor(m,a,r). % actor A played role R in movie M actress(m,a,r). % actress A played role R in movie M a) Implement the queries that answer the following questions: 1. What is the production year of the movie American Beauty??- movie(american_beauty,y).?- movie(n,y),n=american_beauty. 2. Find a movie that was produced in the year 2000.?- movie(n,2000).?- movie(m,y),y= Find a movie that was produced before the year 2000.?- movie(n,y),y< Find the name and year of a movie.?- movie(n,y). 5. Find a director who has directed a movie in which the actress Scarlett Johansson appeared.?- actress(m,scarlett_johansson,_), director(m,d).?- actress(m,a,_), director(m,d),a=scarlett_johansson. 1

2 6. Find an actor who has also directed a movie.?- actor(_,a,_),director(_,a). 7. Find an actor who has appeared in more than one movie.?- actor(m1,a,_),actor(m2,a,_),m1\=m2. 8. Find an actor or actress who has also directed a movie (You may use disjunction).?- director(_,a),(actor(_,a,_);actress(_,a,_)). Note: It is necessary to add parentheses around the disjunction in this example. Without them, Prolog would give a higher precedence to the logical-and and that will not correspond to our intent. b) Implement the following Prolog predicates: 1. same_year_as(m1,m2) succeeds if movie M1 was produced in the same year as movie M2. same_year_as(m1,m2):- movie(m1,y), movie(m2,y), M1\=M2. 2. cast_member(a,m) succeeds if person A was an actor or actress in movie M (write 2 rules). cast_member(a,m):- actor(m,a,_). cast_member(a,m):- actress(m,a,_). 3. cast_member2(a,m) succeeds if person A was an actor or actress in movie M (write a single rule). cast_member2(a,m):- actor(m,a,_); actress(m,a,_). 4. directed_by(x,y) succeeds if person X has been in a movie directed by person Y. directed_by(x,y):- director(m,y), cast_member(x,m). 5. released_since(m,y) succeeds if movie M was produced during or after year Y. released_since(m,y):- movie(m,year), Year>=Y. 6. newer(m1,m2) succeeds if movie M1 was produced after movie M2. newer(m1,m2):- movie(m1,y1), movie(m2,y2), Y1>Y2. 2

3 7. released_between(m,y1,y2) succeeds if movie M was produced between year Y1 and year Y2 inclusively. released_between(m,y1,y2):- movie(m,year), Year>=Y1. Year=<Y2. c) What is the difference between the three queries below??- actor(m1,d,_),actor(m2,d,_).?- actor(m1,d,_),actor(m2,d,_),m1\=m2.?- actor(m1,d,_),actor(m2,d,_),m1@<m2. The first query produces all possible combinations of results, including the case where M1 is the same as M2; whereas in the second query, the problem is solved by adding the constraint that M1 cannot be the same as M2. However, the second query still has redundancies as it displays the results of two distinct movies twice, in the second time M1 is bound to the second movie and M2 is bound to the first one. The third query allows the display of two different movies only if M1 lexicographically precedes M2, and hence solves the problem of the second query. 3

4 Exercise 1-2 Family We are going to add some new predicates to the family database family.pl. The database is specified by 3 different predicates: parent(x,y) % person X is the parent of person Y. male(x) % person X is a male. husband(x,y) % person X is the husband of person Y. Your task is to implement the following Prolog predicates: a) female(a): A is a female person. female(x) :- \+ male(x). b) grandfather(a,b): A is the grandfather of B. grandfather(x,y) :- father(x,p), parent(p,y). c) grandmother(a,b): A is a grandmother of B. grandmother(x,y) :- parent(x,p), \+male(x). d) brother(a,b): A is the brother of B. brother(x,y) :- parent(p,x), male(x), e) uncle(a,b): A is the uncle of B. uncle(x,y) :- brother(x,p), parent(p,y). f) sister(a,b): A is the sister of B. sister(x,y) :- parent(p,x), female(x), 4

5 g) has_son(a): The person A has a son. has_son(x) :- parent(x,y), male(y). h) married(a,b): A and B are married to each other. married(x,y) :- husband(x,y). married(x,y) :- husband(y,x). i) siblings(a,b): A and B are siblings (both parents in common) siblings(x,y) :- parent(z,x), parent(z,y), male(z), parent(m,x), parent(m,y), female(m), j) cousins(a,b): A and B are cousins cousins(x,y) :- parent(a,x), parent(b,y), siblings(a,b), k) no_children(a): A has no children no_children(x) :- \+ parent(x,_). no_children(x) :- married(x,y), \+parent(y,_). l) brother_in_law(a,b): A is the brother-in-law of B. brother_in_law(x,y) :- brother(x,p), married(p,y). brother_in_law(x,y) :- husband(x,w), sister(w,y). Hint: Insert new facts about your own parents and other relatives to see if the predicates work as expected! 5

The Language of First-Order Predicate Logic

The Language of First-Order Predicate Logic The Language of First-Order Predicate Logic (Note: First-Order Predicate Logic differs from ordinary Predicate Logic in that it contains individual variables and quantifiers. The designation first-order

More information

TRANSLATIONS IN SENTENTIAL LOGIC

TRANSLATIONS IN SENTENTIAL LOGIC 4 TRANSLATIONS IN SENTENTIAL LOGIC 1. Introduction... 92 2. The Grammar of Sentential Logic; A Review... 93 3. Conjunctions... 94 4. Disguised Conjunctions... 95 5. The Relational Use of And... 96 6. Connective-Uses

More information

PARTICIPIAL PHRASES: EXERCISE #1

PARTICIPIAL PHRASES: EXERCISE #1 PARTICIPIAL PHRASES: EXERCISE #1 PART I DIRECTIONS: Look at each verb below. If it looks like a present participle, mark "pres" in the space at the left. If it looks like a past participle, mark "past."

More information

Your English Podcasts. Vocabulary and Fluency Building Exercises. Pack 1-5. Scripts - Version for Mobile Devices (free)

Your English Podcasts. Vocabulary and Fluency Building Exercises. Pack 1-5. Scripts - Version for Mobile Devices (free) Your English Podcasts Vocabulary and Fluency Building Exercises Pack 1-5 Scripts - Version for Mobile Devices (free) Audio available on itunes or on www.qualitytime-esl.com π 1 Your English Podcasts An

More information

English Listening and Speaking Patterns 2

English Listening and Speaking Patterns 2 English Listening and Speaking Patterns 2 by Andrew E. Bennett Copyright 2017 All Rights Reserved No part of this book may be reproduced in any form without written permission from the author and Nan un-do

More information

Fungsi sosial Menjalin hubungan dengan guru, teman dan orang lain Ungkapan. My name is... I m... I live in... I have I like.

Fungsi sosial Menjalin hubungan dengan guru, teman dan orang lain Ungkapan. My name is... I m... I live in... I have I like. Fungsi sosial Menjalin hubungan dengan guru, teman dan orang lain Ungkapan My name is... I m... I live in... I have I like. dan semacamnya Unsur kebahasaan: (1) Kata terkait dengan hubungan kekeluargaan

More information

Actual MH CET Test Name Actual MH CET 2016 Total Questions 200 Total Time 150 Mins

Actual MH CET Test Name Actual MH CET 2016 Total Questions 200 Total Time 150 Mins Directions of Test Test Name Actual MH CET 2016 Total Questions 200 Total Time 150 Mins Section Name No. of Questions Marks per Question Negative Marking Abstract Reasoning 25 1 0 Analytical & Logical

More information

Introduction p. 1 The Elements of an Argument p. 1 Deduction and Induction p. 5 Deductive Argument Forms p. 7 Truth and Validity p. 8 Soundness p.

Introduction p. 1 The Elements of an Argument p. 1 Deduction and Induction p. 5 Deductive Argument Forms p. 7 Truth and Validity p. 8 Soundness p. Preface p. xi Introduction p. 1 The Elements of an Argument p. 1 Deduction and Induction p. 5 Deductive Argument Forms p. 7 Truth and Validity p. 8 Soundness p. 11 Consistency p. 12 Consistency and Validity

More information

1 Look at the pictures and read about three families from around the world. Underline the family words.

1 Look at the pictures and read about three families from around the world. Underline the family words. UNIT 3 Them & Us Part 1 Reading & Vocabulary 1000 Families Pronunciation Linking words Speaking Describing a family Possessive adjectives (2) Writing Describing a family These people are from 1000 families

More information

READING Introducing Will Smith!

READING Introducing Will Smith! N A M E : Introducing Will Smith! Vocabulary Preview Match the words on the left with the meanings on the right. 1. rapper A. strong; can do many things 2. songwriter B. not afraid 3. powerful C. a kind

More information

UNIT 1. The Individual and Society. Personal Identification. 4. Complete the instructions with a verb. 1. Write the missing letters.

UNIT 1. The Individual and Society. Personal Identification. 4. Complete the instructions with a verb. 1. Write the missing letters. Smart Workbook UNIT 1 The Individual and Society Personal Identification 1. Write the missing letters. 4. Complete the instructions with a verb. a) _thletics c) c_ampion e) _ymnastics g) _entimetres b)

More information

Independent and Subordinate Clauses

Independent and Subordinate Clauses Independent and Subordinate Clauses What They Are and How to Use Them By: Kalli Bradshaw Do you remember the difference between a subject and a predicate? Identify the subject and predicate in this sentence:

More information

The high C that ends the major scale in Example 1 can also act as the beginning of its own major scale. The following example demonstrates:

The high C that ends the major scale in Example 1 can also act as the beginning of its own major scale. The following example demonstrates: Lesson UUU: The Major Scale Introduction: The major scale is a cornerstone of pitch organization and structure in tonal music. It consists of an ordered collection of seven pitch classes. (A pitch class

More information

MUSIC PRODUCTION AUDITI ON F ORM

MUSIC PRODUCTION AUDITI ON F ORM CREATING WORKING ARTISTS info@copasa.co.za MUSIC PRODUCTION AUDITI ON F ORM Bridging Course: NQF4 Further Education and Training Certificate: Music Industry: Sound Technology (SAQA ID: 67462) NQF6 Diploma

More information

ITU-T Y.4552/Y.2078 (02/2016) Application support models of the Internet of things

ITU-T Y.4552/Y.2078 (02/2016) Application support models of the Internet of things I n t e r n a t i o n a l T e l e c o m m u n i c a t i o n U n i o n ITU-T TELECOMMUNICATION STANDARDIZATION SECTOR OF ITU Y.4552/Y.2078 (02/2016) SERIES Y: GLOBAL INFORMATION INFRASTRUCTURE, INTERNET

More information

CSC384: Intro to Artificial Intelligence Knowledge Representation IV

CSC384: Intro to Artificial Intelligence Knowledge Representation IV CSC384: Intro to Artificial Intelligence Knowledge Representation IV Answer Extraction Factoring (optional, not on Test 2) Prolog (not on Test 2) Review: One more example (do it yourself) 1 Answer Extraction.

More information

Lesson 5: Using the Identity and Inverse to Write Equivalent Expressions

Lesson 5: Using the Identity and Inverse to Write Equivalent Expressions Lesson 5: Using the Identity and Inverse to Write Equivalent Expressions Classwork Opening Exercise In the morning, Harrison checked the temperature outside to find that it was. Later in the afternoon,

More information

1. Introduction. Abstract. 1.1 Logic Criteria

1. Introduction. Abstract. 1.1 Logic Criteria An Evaluation of the Minimal-MUMCUT Logic Criterion and Prime Path Coverage Garrett Kaminski, Upsorn Praphamontripong, Paul Ammann, Jeff Offutt Computer Science Department, George Mason University, Fairfax,

More information

J.t. lambert s Musical Theatre Production. ***You must have already turned in your completed Audition Form!!!*** Included in this packet:

J.t. lambert s Musical Theatre Production. ***You must have already turned in your completed Audition Form!!!*** Included in this packet: Guys and Dolls Jr. Audition Materials Packet ***You must have already turned in your completed Audition Form!!!*** Bring this packet home and to your audition! Practice these materials with the songs available

More information

Practice with PoP: How to use Publish or Perish effectively? Professor Anne-Wil Harzing Middlesex University

Practice with PoP: How to use Publish or Perish effectively? Professor Anne-Wil Harzing Middlesex University Practice with PoP: How to use Publish or Perish effectively? Professor Anne-Wil Harzing Middlesex University www.harzing.com Why citation analysis?: Proof over promise Assessment of the quality of a publication

More information

Introduction to Sentence Structures

Introduction to Sentence Structures Introduction to Sentence Structures Language is made of sounds, words, phrases, clauses, sentences, paragraphs, and even more complex pieces (such as essays, chapters, and books). GETTING STARTED Choose

More information

First Order Logic. Xiaojin Zhu Computer Sciences Department University of Wisconsin, Madison. [Based on slides from Burr Settles]

First Order Logic. Xiaojin Zhu Computer Sciences Department University of Wisconsin, Madison. [Based on slides from Burr Settles] First Order Logic Xiaojin Zhu jerryzhu@cs.wisc.edu Computer Sciences Department University of Wisconsin, Madison [Based on slides from Burr Settles] slide 1 Problems with propositional logic Consider the

More information

JUDSON. Teacher Booktalks: An Examination of Motivational Influence on Intermediate Grade Readers. Follow Us on Twitter stevenlayne and benzulau 2

JUDSON. Teacher Booktalks: An Examination of Motivational Influence on Intermediate Grade Readers. Follow Us on Twitter stevenlayne and benzulau 2 Teacher Booktalks: An Examination of Motivational Influence on Intermediate Grade Readers Follow Us on Twitter stevenlayne and benzulau 2 Dr. Steven L. Layne Benjamin Zulauf JUDSON UNIVERSITY Overview

More information

Achieving Faster Time to Tapeout with In-Design, Signoff-Quality Metal Fill

Achieving Faster Time to Tapeout with In-Design, Signoff-Quality Metal Fill White Paper Achieving Faster Time to Tapeout with In-Design, Signoff-Quality Metal Fill May 2009 Author David Pemberton- Smith Implementation Group, Synopsys, Inc. Executive Summary Many semiconductor

More information

Unit 1 People FEATURES. 1 Look at the photo and the caption. Where is the explorer? What is the photographer s name? 10 Explorers

Unit 1 People FEATURES. 1 Look at the photo and the caption. Where is the explorer? What is the photographer s name? 10 Explorers Unit 1 People An explorer in Majlis al Jinn Cave, Oman Photo by Stephen Alvarez FEATURES 10 Explorers How a husband and wife are both explorers 12 A family in East Africa The story of a famous family 14

More information

Person 2 person GRAMMAR AND READING. I m from Barcelona. and

Person 2 person GRAMMAR AND READING. I m from Barcelona. and 0 Person person Read, listen and talk about personal information; families, countries and nationalities. Practise to be, subject pronouns, possessive adjectives and possessive s. Focus on phone language;

More information

STUDY GUIDE. a midsummer night's dream William Shakespeare

STUDY GUIDE. a midsummer night's dream William Shakespeare STUDY GUIDE a midsummer night's dream William Shakespeare STUDY GUIDE Hamlet Julius Caesar King Lear Macbeth The Merchant of Venice A Midsummer Night s Dream Othello Romeo and Juliet The Tempest Twelfth

More information

S2 Homework Workbook Understanding Music. Listening & Literacy. Name: Class: Replacement Copy Cost: 50p. S2 Homework Workbook pg.

S2 Homework Workbook Understanding Music. Listening & Literacy. Name: Class: Replacement Copy Cost: 50p. S2 Homework Workbook pg. S2 Homework Workbook Understanding Music Listening & Literacy Name: Class: Replacement Copy Cost: 50p S2 Homework Workbook pg. 1 HOMEWORK DUE DATES Assignment 21 Assignment 22 Assignment 23 Assignment

More information

Essay pleasure of college life >>>CLICK HERE<<<

Essay pleasure of college life >>>CLICK HERE<<< Essay pleasure of college life >>>CLICK HERE

More information

Lecture 3: Nondeterministic Computation

Lecture 3: Nondeterministic Computation IAS/PCMI Summer Session 2000 Clay Mathematics Undergraduate Program Basic Course on Computational Complexity Lecture 3: Nondeterministic Computation David Mix Barrington and Alexis Maciel July 19, 2000

More information

Grammar. Name: 1 Underline the correct words.

Grammar. Name: 1 Underline the correct words. Grammar 1 Underline the correct words. 0 A: Have you got a laptop? B: Yes, I am / have. 1 A: Have / Has your father got a car? B: No, but he s got a bike! 2 A: What car have / has your parents got? B:

More information

GENDER EQUALITY COMMISSION Strasbourg, April Gender Equality in Eurimages

GENDER EQUALITY COMMISSION Strasbourg, April Gender Equality in Eurimages GENDER EQUALITY COMMISSION Strasbourg, April 2014 Gender Equality in Eurimages PART I The general situation in Europe in the film industry The information provided in this part is mainly taken from a study

More information

Presenting the Final report

Presenting the Final report ntroduction. Presenting the Final report Long reports are generally organized into three major divisions: (a) prefatory parts, (b) body, and (c) supplementary parts. Following is a description of the order

More information

Unit 6. of Anna s family members in the correct spaces in the family tree. Look at the box with

Unit 6. of Anna s family members in the correct spaces in the family tree. Look at the box with 88 Unit 6 Exercise 1. Filling in a Family Tree, p. 149: This is Anna s family tree. Listen carefully to the information. Write the names of Anna s family members in the correct spaces in the family tree.

More information

BBC LEARNING ENGLISH 6 Minute Vocabulary Jobs suffixes

BBC LEARNING ENGLISH 6 Minute Vocabulary Jobs suffixes BBC LEARNING ENGLISH 6 Minute Vocabulary Jobs suffixes NB: This is not a word-for-word transcript Hi! Hello!..and welcome to 6 Minute Vocabulary. My name is, and I m one of the presenters today. And I

More information

ADVERBS MODIFYING VERBS

ADVERBS MODIFYING VERBS 16.2 Adverbs as Modifiers (Modifying Verbs) Practice 1 Adverbs Modifying Verbs Adverbs modify verbs, adjectives, or other adverbs. An adverb modifying a verb will answer one of four questions about the

More information

PAGE HEADERS AND FOOTERS

PAGE HEADERS AND FOOTERS PAGE HEADERS AND FOOTERS Using Genero Report Writer GRS 3.00 2010 Four J's Development Tools After this instruction, you will be able to: Add headers and footers to a report Add an image to a report Add

More information

A BRIDGE OVER THE ATLANTIC OCEAN

A BRIDGE OVER THE ATLANTIC OCEAN A BRIDGE OVER THE ATLANTIC OCEAN http://www.youtube.com/watch?v=lapvrmdxdjk A romantic comedy about a family travelling to the French capital for business. The party includes a young engaged couple forced

More information

UNIVERSITY OF MASSACHUSETTS Department of Biostatistics and Epidemiology BioEpi 540W - Introduction to Biostatistics Fall 2002

UNIVERSITY OF MASSACHUSETTS Department of Biostatistics and Epidemiology BioEpi 540W - Introduction to Biostatistics Fall 2002 1 UNIVERSITY OF MASSACHUSETTS Department of Biostatistics and Epidemiology BioEpi 540W - Introduction to Biostatistics Fall 2002 Exercises Unit 2 Descriptive Statistics Tables and Graphs Due: Monday September

More information

CSE221- Logic Design, Spring 2003

CSE221- Logic Design, Spring 2003 EE207: Digital Systems I, Semester I 2003/2004 CHAPTER 3 -ii: Combinational Logic Design Design Procedure, Encoders/Decoders (Sections 3.4 3.6) Overview Design Procedure Code Converters Binary Decoders

More information

Fifteenth Annual University of Oregon Eugene Luks Programming Competition

Fifteenth Annual University of Oregon Eugene Luks Programming Competition Fifteenth Annual University of Oregon Eugene Luks Programming Competition Saturday, April 9, 2011 Problem Contributors Jim Allen David Atkins Gene Luks Prizes and food provided by Pipeworks A REFLECTIONS

More information

SIP Project Report Format

SIP Project Report Format SIP Project Report Format 1. Introduction This document describes the standard format for CP3200/CP3202: Student Internship Programme (SIP) project reports. Students should ensure their reports conform

More information

C overs R are B ooks. Faith Baldwin Rich Girl, Poor Girl New York: Farrar & Rinehart, Inc. (1938) $350

C overs R are B ooks. Faith Baldwin Rich Girl, Poor Girl New York: Farrar & Rinehart, Inc. (1938) $350 B etween the C overs R are B ooks 112 Nicholson Rd, Gloucester City, NJ 08030 Rich Girl, Poor Girl New York: Farrar & Rinehart, Inc. (1938) (856) 456-8008 betweenthecovers.com $350 First edition. Fine

More information

UNIT 1. The Individual and Society. Neighbours. 3. Complete the sentences with the words below. 1. Write the missing letters.

UNIT 1. The Individual and Society. Neighbours. 3. Complete the sentences with the words below. 1. Write the missing letters. Smart Workbook UNIT 1 The Individual and Society Neighbours 1. Write the missing letters. 3. Complete the sentences with the words below. a) rmy offi er b) ext-doo c) iddle- ged d) police sta io e) terra

More information

The Blonde, The Brunette & The Vengeful Redhead By arrangement with the Author

The Blonde, The Brunette & The Vengeful Redhead By arrangement with the Author Pymble Players Inc Presents The Blonde, The Brunette & The Vengeful Redhead By arrangement with the Author Written by Robert Hewett Directed by: Racquel Boyd AUDITION & INFORMATION PACK Audition Information

More information

Stars in my eyes! Name:... Date:... Class:... Find and stick pictures of your favourite stars from around the world. Then, write.

Stars in my eyes! Name:... Date:... Class:... Find and stick pictures of your favourite stars from around the world. Then, write. Stars in my eyes! Find and stick pictures of your favourite stars from around the world. Then, write. This is Penelope Cruz. She s an actress from Spain. She speaks English really well. Her favourite food

More information

UNIT 4. LOOKING GOOD SUMMIT 1 REVIEW & EXTRA PRACTICE

UNIT 4. LOOKING GOOD SUMMIT 1 REVIEW & EXTRA PRACTICE UNIT 4. LOOKING GOOD SUMMIT 1 REVIEW & EXTRA PRACTICE PROF. JENDRY BARRIOS Expressions of Quantity (Quantifiers) Quantifier Used with count nouns Used with non-count nouns Observation one each every one

More information

Product/Process Change Notice (PCN) Major change Minor change

Product/Process Change Notice (PCN) Major change Minor change Product/Process Notice (PCN) Major change Minor change PCN #: ConTBL_20150416 Product Affected: WR-TBL Pluggable series pitch 7.62mm Product Mark Date Code Packaging Others 6913074000XX, 6913094100XX,

More information

Lesson 65: Home Services (20-25 minutes)

Lesson 65: Home Services (20-25 minutes) Main Topic 11: Housing/Corporate Policy Lesson 65: Home Services (20-25 minutes) Today, you will: 1. Learn useful vocabulary related to HOME SERVICES. 2. Review Pronouns. I. VOCABULARY Exercise 1: What

More information

1 Grammar, Vocabulary, and Pronunciation A GRAMMAR 1 Underline the correct form. Example: We usually get up / get up usually early every morning. 1 Jake is taking / takes vitamins every day. 2 Clare buys

More information

to believe all evening thing to see to switch on together possibly possibility around

to believe all evening thing to see to switch on together possibly possibility around whereas absolutely American to analyze English without white god more sick larger most large to take to be in important suddenly you know century to believe all evening thing to see to switch on together

More information

Symbolization and Truth-Functional Connectives in SL

Symbolization and Truth-Functional Connectives in SL Symbolization and ruth-unctional Connectives in SL ormal vs. natural languages Simple sentences (of English) + sentential connectives (of English) = compound sentences (of English) Binary connectives:

More information

Aristotle s Metaphysics

Aristotle s Metaphysics Aristotle s Metaphysics Book Γ: the study of being qua being First Philosophy Aristotle often describes the topic of the Metaphysics as first philosophy. In Book IV.1 (Γ.1) he calls it a science that studies

More information

Adult Initial Questionnaire

Adult Initial Questionnaire Troy Psychological Services PLLC Sarah Gates, Psy.D. Adult Initial Questionnaire Please complete as fully as possible and bring it to your first session. This information will help me get to know you and

More information

Margherita. The Production. By Rurik Seven A Mage Plays Production

Margherita. The Production. By Rurik Seven A Mage Plays Production Margherita By Rurik Seven A Mage Plays Production The Production Margherita follows the story of Joey, a lowly pizza delivery boy and his struggles with memory loss and romance. A positively cheesy rom-com

More information

The following references and the references contained therein are normative.

The following references and the references contained therein are normative. MISB ST 0605.5 STANDARD Encoding and Inserting Time Stamps and KLV Metadata in Class 0 Motion Imagery 26 February 2015 1 Scope This standard defines requirements for encoding and inserting time stamps

More information

ITU-T Y Specific requirements and capabilities of the Internet of things for big data

ITU-T Y Specific requirements and capabilities of the Internet of things for big data I n t e r n a t i o n a l T e l e c o m m u n i c a t i o n U n i o n ITU-T Y.4114 TELECOMMUNICATION STANDARDIZATION SECTOR OF ITU (07/2017) SERIES Y: GLOBAL INFORMATION INFRASTRUCTURE, INTERNET PROTOCOL

More information

Title of the Project

Title of the Project A Project Report on Title of the Project Directorate of Distance Education Meerut Submitted for partial fulfillment for award of the degree in Bachelors of Computer Applications BY STUDENT Name- Enrollment

More information

In this project, we wish to create a database to store and analyze television show ratings data for the top 20 most-watched shows in a given week.

In this project, we wish to create a database to store and analyze television show ratings data for the top 20 most-watched shows in a given week. Background Information HOMEWORK ASSIGNMENT Over the course of a given week, the vast majority of Americans watch at least some amount of television. Since most television shows are paid for by the sales

More information

LIBRARY ORIENTATION. Office of Library and Information Technology

LIBRARY ORIENTATION. Office of Library and Information Technology LIBRARY ORIENTATION Office of Library and Information Technology Welcome to NTOU! Ivy Email: shangtzu@mail.ntou.edu.tw Jenny Email: jenny@mail.ntou.edu.tw If you have any questions, just ask us!! 2 Outline

More information

Introduction to APA Citation

Introduction to APA Citation A Description of APA Citation Style The American Psychological Association (APA) established a set f rules and conventions for citing outside sources, in order for readers to identify outside sources,

More information

Really Good Stuff Activity Guide Writers At Work Poster Set

Really Good Stuff Activity Guide Writers At Work Poster Set Congratulations on your purchase of the Really Good Stuff Writers At Work 8-in-1 Poster Set! Inside this Really Good Stuff set you ll find: One 19" x 24" laminated poster Eight 9 1 4" x 13" mini posters

More information

Crucible Act Two Literary Analysis Skill Builder

Crucible Act Two Literary Analysis Skill Builder Crucible Act Two Literary Skill Builder Free PDF ebook Download: Crucible Act Two Skill Builder Download or Read Online ebook crucible act two literary analysis skill builder in PDF Format From The Best

More information

ENCYCLOPEDIA DATABASE

ENCYCLOPEDIA DATABASE Step 1: Select encyclopedias and articles for digitization Encyclopedias in the database are mainly chosen from the 19th and 20th century. Currently, we include encyclopedic works in the following languages:

More information

Failure to acknowledge sources or how to plagiarise - 1. Referencing and references. Failure to acknowledge sources or how to plagiarise - 2

Failure to acknowledge sources or how to plagiarise - 1. Referencing and references. Failure to acknowledge sources or how to plagiarise - 2 Referencing and references Researchers are expected to refer to the work of others in their own written work. This is done to acknowledge intellectual debt; to support facts or claims; to enable readers

More information

Q516 HIGH RES AUDIO DELAY ORDERING OPTIONS SUPPORT OPTIONS MANAGEMENT AND CONTROL HIGH PRECISION AUDIO DELAY FOR MICRO SECOND ACCURACY

Q516 HIGH RES AUDIO DELAY ORDERING OPTIONS SUPPORT OPTIONS MANAGEMENT AND CONTROL HIGH PRECISION AUDIO DELAY FOR MICRO SECOND ACCURACY ORDERING OPTIONS Q516 AD 1 High Res Audio Delay with 1 analog / digital stereo channel (combo port) PRODUCT INFORMATION Audio Delay: The Qbit Q516 High Resolution Audio Delay utilizes the the proven Qbit

More information

CAP240 First semester 1430/1431. Sheet 4

CAP240 First semester 1430/1431. Sheet 4 King Saud University College of Computer and Information Sciences Department of Information Technology CAP240 First semester 1430/1431 Sheet 4 Multiple choice Questions 1-Unipolar, bipolar, and polar encoding

More information

London Life Hollywood star on London stage

London Life Hollywood star on London stage Hollywood star on London stage BBC Learning English Hollywood star on London stage February 1, 2006 Hello, I'm Callum Robertson and this is. One of the cultural highlights of London is the theatre. New

More information

(Class-IV) D.A.V. College Managing Committee. Publication Division. Chitra Gupta Road, New Delhi

(Class-IV) D.A.V. College Managing Committee. Publication Division. Chitra Gupta Road, New Delhi (Class-IV) Publication Division D.A.V. College Managing Committee Chitra Gupta Road, New Delhi-110055 Contents S.No Topic Page No. 1. Naming Words 1-10 2. Genders 11-17 3. Pronouns 18-24 4. Prepositions

More information

1 The structure of this exercise

1 The structure of this exercise CAS LX 522 Syntax I Fall 2013 Extra credit: Trees are easy to draw Due by Thu Dec 19 1 The structure of this exercise Sentences like (1) have had a long history of being pains in the neck. Let s see why,

More information

Subtitle Safe Crop Area SCA

Subtitle Safe Crop Area SCA Subtitle Safe Crop Area SCA BBC, 9 th June 2016 Introduction This document describes a proposal for a Safe Crop Area parameter attribute for inclusion within TTML documents to provide additional information

More information

In this paper, the issues and opportunities involved in using a PDA for a universal remote

In this paper, the issues and opportunities involved in using a PDA for a universal remote Abstract In this paper, the issues and opportunities involved in using a PDA for a universal remote control are discussed. As the number of home entertainment devices increases, the need for a better remote

More information

Formatting Instructions for Advances in Cognitive Systems

Formatting Instructions for Advances in Cognitive Systems Advances in Cognitive Systems X (20XX) 1-6 Submitted X/20XX; published X/20XX Formatting Instructions for Advances in Cognitive Systems Pat Langley Glen Hunt Computing Science and Engineering, Arizona

More information

A Pleasant Evening. Listening Comprehension Lesson Plan

A Pleasant Evening. Listening Comprehension Lesson Plan Listening Comprehension Lesson Plan Goals A. To enable the students to develop listening comprehension skills by using the basic principles of focused listening. B. To expand students academic and spoken

More information

UNIT 1: My Family and neighbor.

UNIT 1: My Family and neighbor. UNIT 1: My Family and neighbor. READING: Family Vocabulary Your family members are also called your relatives. You have an immediate or nuclear family and an extended family. Your immediate family includes

More information

Language and Mind Prof. Rajesh Kumar Department of Humanities and Social Sciences Indian Institute of Technology, Madras

Language and Mind Prof. Rajesh Kumar Department of Humanities and Social Sciences Indian Institute of Technology, Madras Language and Mind Prof. Rajesh Kumar Department of Humanities and Social Sciences Indian Institute of Technology, Madras Module - 07 Lecture - 32 Sentence CP in Subjects and Object Positions Let us look

More information

Step by Step: Format a Research Paper GET READY. Before you begin these steps, be sure to launch Microsoft Word. Third line: History 101

Step by Step: Format a Research Paper GET READY. Before you begin these steps, be sure to launch Microsoft Word. Third line: History 101 Step by Step: Format a Research Paper GET READY. Before you begin these steps, be sure to launch Microsoft Word. 1. OPEN the First Ladies document from the lesson folder. The document is unformatted. 2.

More information

67. LEVEL TRANSITION FROM LEVEL NTC TO LEVEL 1 (SYSTEM VERSION 2.Y)

67. LEVEL TRANSITION FROM LEVEL NTC TO LEVEL 1 (SYSTEM VERSION 2.Y) 123-133 Rue Froissart, 1040 Brussels, Belgium Tel: +32 (0)2 673.99.33 - TVA BE0455.935.830 Website: www.ertms.be E-mail: info@ertms.be ERTMS USERS GROUP - ENGINEERING GUIDELINE 67. LEVEL TRANSITION FROM

More information

Background Information. Instructions. Problem Statement. HOMEWORK INSTRUCTIONS Homework #5 Nielsen Television Ratings Problem

Background Information. Instructions. Problem Statement. HOMEWORK INSTRUCTIONS Homework #5 Nielsen Television Ratings Problem Background Information HOMEWORK INSTRUCTIONS Over the course of a given week, the vast majority of Americans watch at least some amount of television. Since most television shows are paid for by the sales

More information

This document describes the GUIs and menu operations of the self-service attendance terminal. Not all the devices have the function with.

This document describes the GUIs and menu operations of the self-service attendance terminal. Not all the devices have the function with. This document describes the GUIs and menu operations of the self-service attendance terminal. Not all the devices have the function with. The real product prevails. The photograph in this manual may be

More information

Tape. Tape head. Control Unit. Executes a finite set of instructions

Tape. Tape head. Control Unit. Executes a finite set of instructions Section 13.1 Turing Machines A Turing machine (TM) is a simple computer that has an infinite amount of storage in the form of cells on an infinite tape. There is a control unit that contains a finite set

More information

Calculating Attainment 8 - Answers

Calculating Attainment 8 - Answers alculating ttainment - nswers The answers to the calculating ttainment exercise are not simply about checking the correct numerical totals have been determined; they hopefully provide snapshots of what

More information

ENGINEERING COMMITTEE Interface Practices Subcommittee AMERICAN NATIONAL STANDARD ANSI/SCTE

ENGINEERING COMMITTEE Interface Practices Subcommittee AMERICAN NATIONAL STANDARD ANSI/SCTE ENGINEERING COMMITTEE Interface Practices Subcommittee AMERICAN NATIONAL STANDARD ANSI/SCTE 176 2011 Specification for 75 ohm 'MCX' Connector, Male & Female Interface NOTICE The Society of Cable Telecommunications

More information

Emergence of Cooperation Through Mutual Preference Revision

Emergence of Cooperation Through Mutual Preference Revision Emergence of Cooperation Through Mutual Pedro Santana 1 Luís Moniz Pereira 2 1 IntRoSys, S.A. 2 CENTRIA, Universidade Nova de Lisboa 19th Int. Conf. on Industrial, Engineering & Other Applications of Applied

More information

Musical Harmonization with Constraints: A Survey. Overview. Computers and Music. Tonal Music

Musical Harmonization with Constraints: A Survey. Overview. Computers and Music. Tonal Music Musical Harmonization with Constraints: A Survey by Francois Pachet presentation by Reid Swanson USC CSCI 675c / ISE 575c, Spring 2007 Overview Why tonal music with some theory and history Example Rule

More information

Subjects & Predicates. Project LA Activity

Subjects & Predicates. Project LA Activity Subjects & Predicates Project LA Activity Every complete sentence contains two parts: a subject and a predicate. The subject is what (or whom) the sentence is about, while the predicate tells something

More information

Theatre Guild, Inc. collection regarding William Saroyan's Love's Old Sweet Song

Theatre Guild, Inc. collection regarding William Saroyan's Love's Old Sweet Song Theatre Guild, Inc. collection regarding William Saroyan's Love's Old Sweet Song 1939-1940 Abstract: The Theatre Guild Inc. collection regarding William Saroyan'sLove's Old Sweet Song consists of.3 linear

More information

SCHOOL OF LAW Legal Methods & Skills Professor Murphy s Style Guide for Assessed Coursework

SCHOOL OF LAW Legal Methods & Skills Professor Murphy s Style Guide for Assessed Coursework SCHOOL OF LAW Legal Methods & Skills 2017-18 Professor Murphy s Style Guide for Assessed Coursework ASSESSED COURSEWORK: FONTS AND MARGINS The main text should be 10 point verdana. It should also be 1.5

More information

Strong african american women monologues

Strong african american women monologues Strong african american women monologues The Borg System is 100 % Strong african american women monologues 50 African American Audition Monologues. original monologues for African American men and women,

More information

Minimailer 4 OMR SPECIFICATION FOR INTELLIGENT MAILING SYSTEMS. 1. Introduction. 2. Mark function description. 3. Programming OMR Marks

Minimailer 4 OMR SPECIFICATION FOR INTELLIGENT MAILING SYSTEMS. 1. Introduction. 2. Mark function description. 3. Programming OMR Marks OMR SPECIFICATION FOR INTELLIGENT MAILING SYSTEMS Minimailer 4 1. Introduction 2. Mark function description 3. Programming OMR Marks 4. Mark layout requirements Page 1 of 7 1. INTRODUCTION This specification

More information

What are MLA, APA, and Chicago/Turabian Styles?

What are MLA, APA, and Chicago/Turabian Styles? Citing Sources 1 What are MLA, APA, and Chicago/Turabian Styles? Style, or documentation, refers to the method you use to cite your sources when writing a research-based paper. The three most common academic

More information

A. Good morning, how s life?

A. Good morning, how s life? A. Good morning, how s life? 1 Conversation: Meetings and Greetings 1. Listen and Practice Mary : Good morning, George. George: Good morning Mary. Mary :.? George: Fine, thanks. Pierre : Hello, Mrs.Garcia.

More information

Unit 7. Exercise 1. Listening Activity: Taking a Test about International Tourist Destinations, p.

Unit 7. Exercise 1. Listening Activity: Taking a Test about International Tourist Destinations, p. 105 Unit 7 Exercise 1. Listening Activity: Taking a Test about International Tourist Destinations, p. 175: Part 2. Now listen to the information that you will hear to correct your answers. How many did

More information

Terminal Time: An Ideologically-biased History Machine

Terminal Time: An Ideologically-biased History Machine Terminal Time: An Ideologically-biased History Machine Michael Mateas; Steffi Domike; Paul Vanouse Carnegie Mellon University Computer Science Department (Michael) Art Department (Steffi) Studio for Creative

More information

Privacy, Playreading, and Women s Closet Drama, (review)

Privacy, Playreading, and Women s Closet Drama, (review) Privacy, Playreading, and Women s Closet Drama, 1550 1700 (review) Reina Green ESC: English Studies in Canada, Volume 33, Issue 3, September 2007, pp. 194-197 (Review) Published by Association of Canadian

More information

Unit 1: Listening and Understanding in Greek. Thursday 16 June 2011 Afternoon Time: 45 minutes and 5 minutes reading time

Unit 1: Listening and Understanding in Greek. Thursday 16 June 2011 Afternoon Time: 45 minutes and 5 minutes reading time Write your name here Surname Other names Edexcel GCSE Centre Number Candidate Number Greek Unit 1: Listening and Understanding in Greek Thursday 16 June 2011 Afternoon Time: 45 minutes and 5 minutes reading

More information

Mallrats: Mirror Image. kathryn chinn tania choi jessica cohen john wong

Mallrats: Mirror Image. kathryn chinn tania choi jessica cohen john wong Mirror Image kathryn chinn tania choi jessica cohen john wong cs 447 6 june 2001 The Problem Project Setting and Audience: Identify potential problems that groups of 2-7 people may experience in a commercial

More information

6.034 Notes: Section 4.1

6.034 Notes: Section 4.1 6.034 Notes: Section 4.1 Slide 4.1.1 What is a logic? A logic is a formal language. And what does that mean? It has a syntax and a semantics, and a way of manipulating expressions in the language. We'll

More information

NECK WINGS TAIL HORN BACK SCALES FEATHERS

NECK WINGS TAIL HORN BACK SCALES FEATHERS 4 th FORM PRACTICE TEST 6 1-Complete with the words in the box. NECK WINGS TAIL HORN BACK SCALES FEATHERS 1 2-Look and write the name inwg getnuo iatl ceslsa 3-Read and write the names of the people in

More information

Logic Riddles. I'm where yesterday follows today and tomorrow is in the middle. What am I? Everyone has me but nobody can lose me. What am I?

Logic Riddles. I'm where yesterday follows today and tomorrow is in the middle. What am I? Everyone has me but nobody can lose me. What am I? Logic Riddles Solve these logic riddles to stimulate your brain, they require logical thinking and may involve math. Also, they can be hard and tricky. 1 2 3 4 5 6 7 8 9 10 11 I'm where yesterday follows

More information