INFO 1103 Homework Project 2

Size: px
Start display at page:

Download "INFO 1103 Homework Project 2"

Transcription

1 INFO 1103 Homework Project 2 February 15, 2018 Due March 14, 2018, at the end of the lecture period. 1 Introduction In this project, you will design and create the appropriate tables for a version of the system used in Homework 1. Although your ERD solution for Homework 1 might be as good or better than the one in the diagram below, please use the provided one. insert some data into each table. write SQL queries against this data. Remember, this is to be individual work, unlike the labs. 1

2 Figure 1: Starting ERD 2 Details Details follow about table creation, data insertion and the required queries. 2.1 Table Creation Refer to Figure 1. To keep the amount of work manageable, you only need to handle entities Competition, Dog, Breed, Judge, Prize and the relationships between them. In the given design, Competition is a weak entity, with an identifying owner of Show, itself a weak entity with an identifying owner of Event. Since you cannot have Competition be a weak entity with no identifying owner, make Competition become strong give it CompetitionID as a unique identifier. Dog and Judge are supposed to have more attributes than are shown, but what are shown can be enough for this homework. I found it handy to assume that dogid ranges between 1 and ; you might too. new since draft 2

3 For the derived attributes in Dog for the number of points (top dog and championship), do not have an attribute in your table. (You will later make a view that has these attributes.) You should give a default value of 1 championship point and 2 top-dog points for Prize. Since I have not provided metadata definitions for entities, relationships and attributes, you will have to rely on your own best guesses based on attribute names as to the appropriate types. Use some form of whole numbers for unique identifiers. Ask me questions if you wish. Create a.sql script in the Oracle tool that contains the commands necessary to build the tables. Include all appropriate constraints for domain values, foreign keys and primary keys. Follow the steps for generating tables from ER models (in Chapter 4). 2.2 Data Creation Continue your.sql script to contain the necessary SQL INSERT commands to add several rows to each table. If you wish (and you should wish), you can let place and reported by be null, and the prizes can all win the default number of points. Some of the rows will be of your own choosing, but you need to make sure that the rows added also include the following: 1. at least 4 dogs 2. at least 4 judges. 3. at least 4 competitions and at least 2 dogs per competition. 4. at least one competition where prizes for first place and second place (going to different dogs, of course) were awarded. The first place prize should be worth one more championship and one more top-dog points than the second-place prize. 5. at least two dog breeds, Rottweilers and Golden Retrievers. More breeds are allowed and the grader might add them to see whether anything breaks 6. dogs with ids 25 and 26, but no dog with id a dog who has never competed and who is a loser, in that it has never won a prize. 8. judges with ids 25, 26 and 27 and possibly others. Judges 25 and 26 are qualified for both Golden Retrievers and Rottweilers. Judge 27 is qualified only for Rottweilers. 9. a competition judged by Judge 27 where Golden Retrievers were allowed, although only Rottweilers actually were in the competition. This is the only case where an unqualified judge was illegally at a competition. 3

4 10. no competition where a dog competed even though its breed was not allowed. 11. at least one competition that is for both Rottweilers and Golden Retrievers. 12. at least one competition that is just for Rottweiler and at least one competition that is just for Golden Retrievers. 13. two dogs who are losers and have actually competed. 14. a dog who has competed 5 times and won once. 2.3 Queries Continue your.sql script with some SELECT and CREATE VIEW commands. Some of the queries can be answered from a single table, although many of them require joining tables. Don t take advantage of the fact that you know what is in each of your tables. The grader should be free to add additional rows into your tables, if he wishes. Give SQL statements for the following (maximum points 46 out of 40) points added 1. determine the total number of dogs. (4 pts) since draft 2. determine the total enrolment of dogs in all competitions. (4 pts) 3. find names of all judges who have the same id number as some dog. (4 pts) 4. find the name of one judge qualified for the most breeds. (4 pts) 5. attempt to verify that no dog has won a prize for which it did not compete. Since it is easy to write an incorrect query that returns no results, your tables must have a dog that actually did win a prize that it did not compete for. (4 pts) 6. make a view called DogPoints V that has the attributes for Dog, including the derived attributes that contains the championship points and top-dog points. These derived attributes should be calculated by totalling up the points from prizes. Do a SELECT * from DogPoints V to show your view. (4 pts) 7. show, for each breed name, the maximum top-dog points for any dog of that breed. Use DogPoints V for this. (4 pts) 8. show a report similar to the previous, except that it adds the id for the dog of each breed that has that maximum number of points for the breed. In the event of a tie for some breed, show just one dog of the breed. For partial credit, show all of the dogs that tie for a breed. Make sure that your tables actually do result in a tie for Golden Retrievers. (This query wording change 4

5 and the ones after it are tougher than most of the earlier queries. They don t necessarily just get harder as they go on, though.) (3 pts) 9. find the names of all judges who judged a contest illegally: a dog breed was eligible for that competition, but the judge was not qualified to judge that breed. It should detect the situation even if all the dogs that actually competed in the competition belonged to breeds for which the judge was eligible. (I found EXISTS and MINUS useful for this query.) (3 pts) 10. show dog id, breed, judge name and total championship points received (if > 3) in those competitions where Golden Retrievers were permitted. (3 pts) the > 3 had 11. determine the dog who has the most losing competitions (one in which it competes and doesn t win a prize). If there is a tie, you can either choose one or show all. (3 pts) been determine all dogs that have competed at least as many times as any other dog. Arrange for your data to result in a 2-way tie. (3 pts) 13. find a dog who is the biggest loser (has never won a prize, and, considering all dogs who have never won a prize, has competed in the most competitions). In there is a tie, you can choose to show just one or all. (3 pts) The queries are not necessarily in order of difficulty; if one is stumping you, go on and try the next. However, your script should have the queries in the given order. Please use SQL comments (eg -- query 3) in the script to indicate which query you are giving. 3 Grading Submit your.sql script that creates the tables, populates them, and then answers the queries. It should be possible for whoever grades the assignment to run your script in Oracle SQL Developer and get results, without errors. Submit this on paper and in D2L. The table creations are worth 40%, the insert commands are worth 20%, and the queries (and view creation) are worth 40%. Also, submit (paper and D2L) the transcript of what happens if you play the script (i.e., the contents of the output window in Oracle SQL Developer). 5

INFO 1103 Homework Project 1

INFO 1103 Homework Project 1 INFO 1103 Homework Project 1 January 22, 2018 Due February 7, at the end of the lecture period. 1 Introduction Many people enjoy dog shows. In this homework, you will focus on modelling the data represented

More information

Grade 6 / Scored Student Samples ITEM #3 SMARTER BALANCED PERFORMANCE TASK

Grade 6 / Scored Student Samples ITEM #3 SMARTER BALANCED PERFORMANCE TASK Grade 6 / Scored Student Samples ITEM #3 SMARTER BALANCED PERFORMANCE TASK Focus Standards and Claim Stimulus Claim 4 4.OA.A Picking a Pet Your class is trying to decide what type of animal to get for

More information

b. vulnerablebreeds.csv Statistics on vulnerable breeds for the years 2003 through 2015 [1].

b. vulnerablebreeds.csv Statistics on vulnerable breeds for the years 2003 through 2015 [1]. Background Information The Kennel Club is the United Kingdom s largest organization dedicated to the health and welfare of dogs. The group recognizes 211 breeds of dogs divided into seven groups: hounds,

More information

LIGRC Incentive Awards and Challenge Trophies

LIGRC Incentive Awards and Challenge Trophies LIGRC Incentive Awards and Challenge Trophies The Long Island Golden Retriever Club, Inc. incentive and challenge trophies are awarded annually to members in good standing whose dogs earned titles in conformation,

More information

2 Copyright 2010 Jerry Post with additions & narration by M. E. Kabay. All rights reserved. SaleAnimal SaleID AnimalID SalePrice. Customer.

2 Copyright 2010 Jerry Post with additions & narration by M. E. Kabay. All rights reserved. SaleAnimal SaleID AnimalID SalePrice. Customer. Advanced Queries IS240 DBMS Lecture # 8 2010-03-08 M. E. Kabay, PhD, CISSP-ISSMP Assoc. Prof. Information Assurance Division of Business & Management, Norwich University mailto:mkabay@norwich.edu V: 802.479.7937

More information

Mile-Hi Golden Retriever Club Trophies and Awards Updated December 2010

Mile-Hi Golden Retriever Club Trophies and Awards Updated December 2010 Mile-Hi Golden Retriever Club Trophies and Awards Updated December 2010 I. General Guidelines for Trophies and Awards II. Awards A. The eligibility year is January through December; it will be referred

More information

AGILITY REGULATIONS OF THE

AGILITY REGULATIONS OF THE AGILITY REGULATIONS OF THE British Agility Championships 2017 Content Jump Heights, Equipment Heights, Course design & Requirements... 3 Collecting ring & Equipment Requirements.. 4 Judging.. 5 & 6 Classes

More information

Enter Online:

Enter Online: The British Agility Championships The British Novice Stakes October 20 th - 22 nd The College Equestrian Centre Church Road Keysoe,Bedford MK44 2JP Entries Open: 21 st June 2017 Entries Close: 1 st October

More information

Proposal for revisions to the KC Agility Grading Structure Background. Rationale for proposals

Proposal for revisions to the KC Agility Grading Structure Background. Rationale for proposals Proposal for revisions to the KC Agility Grading Structure Background Agility Liaison Council 12 July 2018 Item 7.a Annex D 1. At the meeting of the Agility Liaison Council on 18th January 2018, two options

More information

Ottawa Valley Golden Retriever Club

Ottawa Valley Golden Retriever Club OFFICIAL PREMIUM LIST Ottawa Valley Golden Retriever Club 1 ALL BREED OBEDIENCE TRIAL FRIDAY EVENING FEBRUARY 9 TH, 2018 2 ALL BREED OBEDIENCE TRIALS Saturday February 10, 2018 2 ALL BREED RALLY TRIALS

More information

Sydney School of Veterinary Science

Sydney School of Veterinary Science Sydney School of Veterinary Science Application for Doctor of Veterinary Medicine Supplementary application form Please read the Doctor of Veterinary Medicine Admission Guide before completing your application.

More information

Doberman Pinscher Club of Canada

Doberman Pinscher Club of Canada Doberman Pinscher Club of Canada Hosted by OFFICIAL PREMIUM LIST FOUR ALL BREED OBEDIENCE TRIALS - MIXED BREEDS ACCEPTED FOUR ALL BREED RALLY OBEDIENCE TRIALS - MIXED BREEDS ACCEPTED October 14 & 15 2017

More information

AUSTRALIAN YARD DOG ASSOCIATION Inc. Competition Rules 2018

AUSTRALIAN YARD DOG ASSOCIATION Inc. Competition Rules 2018 AUSTRALIAN YARD DOG ASSOCIATION Inc Competition Rules 2018 Part I: Definitions (a): Yard dog competition A competition, in which a dog and its handler must negotiate sheep through a predetermined course,

More information

SATS. An Explanation of Working Trials Exercises. Plus how to get started/ What to expect for Newcomers to the sport of Working Trials

SATS. An Explanation of Working Trials Exercises. Plus how to get started/ What to expect for Newcomers to the sport of Working Trials SATS An Explanation of Working Trials Exercises Plus how to get started/ What to expect for Newcomers to the sport of Working Trials What are Working Trials? Working Trials tests were originally based

More information

PUPPY MANNERS WEEK 1

PUPPY MANNERS WEEK 1 OVERVIEW & HOMEWORK Email: puppygames@aol.com Website: www.lomitadogtraining.org CONTACT INFO CLASS CANCELLATION POLICY Phone: (310) 326-3266 Home (310) 530-4814 LOTC Participants will be notified of class

More information

CHAPTER 1 AKC RALLY REGULATIONS GENERAL REGULATIONS

CHAPTER 1 AKC RALLY REGULATIONS GENERAL REGULATIONS Page 1 of 10 Current Regulation CHAPTER 1 GENERAL REGULATIONS Section 1. Application to Hold a Rally Trial. (Paragraph 3) A licensed or member rally trial need not include all the regular rally classes,

More information

OFFICIAL PREMIUM LIST OTTAWA VALLEY GOLDEN RETRIEVER CLUB. 1 ALL BREED RALLY TRIAL FRIDAY EVENING FEBRUARY 15 TH, 2019 (limited to 4.

OFFICIAL PREMIUM LIST OTTAWA VALLEY GOLDEN RETRIEVER CLUB. 1 ALL BREED RALLY TRIAL FRIDAY EVENING FEBRUARY 15 TH, 2019 (limited to 4. OFFICIAL PREMIUM LIST OTTAWA VALLEY GOLDEN RETRIEVER CLUB 1 ALL BREED RALLY TRIAL FRIDAY EVENING FEBRUARY 15 TH, 2019 (limited to 4.5 hours) 2 ALL BREED OBEDIENCE TRIALS SATURDAY FEBRUARY 16 TH, 2019 2

More information

Puppies & Pawprints. A Roleplaying Game of Adorable Adventures. By Robert Vance

Puppies & Pawprints. A Roleplaying Game of Adorable Adventures. By Robert Vance Puppies & Pawprints A Roleplaying Game of Adorable Adventures By Robert Vance Puppies & Pawprints: The Basics Puppies & Pawprints is a roleplaying game in which characters pretend to be puppies. Adventuring

More information

Answers to Questions about Smarter Balanced 2017 Test Results. March 27, 2018

Answers to Questions about Smarter Balanced 2017 Test Results. March 27, 2018 Answers to Questions about Smarter Balanced Test Results March 27, 2018 Smarter Balanced Assessment Consortium, 2018 Table of Contents Table of Contents...1 Background...2 Jurisdictions included in Studies...2

More information

AGILITY REGULATIONS OF THE. Open Junior Agility Championships

AGILITY REGULATIONS OF THE. Open Junior Agility Championships AGILITY REGULATIONS OF THE Open Junior Agility Championships 2016-2017 Content Our Aim 3 Introduction 3 Handler Age Categories 3 Jump Height Categories 3 Courses 3 - General - Course Design - Competition

More information

My 4-H Dog Care and Training Project Record Book

My 4-H Dog Care and Training Project Record Book My 4-H Dog Care and Training Project Record Book For use by Florida 4-H Dog Care and Training project members Member name: Birth date: / / Grade: 4-H county: Address: Phone #: Years in Project: Source:

More information

Table of Contents. Awards Application... Agility Worksheet...

Table of Contents. Awards Application... Agility Worksheet... Table of Contents Instructions... 1 General Eligibility... 1 Title/Certificate Awards... 2 Obedience Awards... High CD, High CDX, High UD, High UDX... 3 Three Highest Legs (No Failures)... 3 Rookie of

More information

OBEDIENCE JUDGES ASSOCIATION SAMPLE MULTI-CHOICE QUESTIONS ANSWERS

OBEDIENCE JUDGES ASSOCIATION SAMPLE MULTI-CHOICE QUESTIONS ANSWERS OBEDIENCE JUDGES ASSOCIATION SAMPLE MULTI-CHOICE QUESTIONS ANSWERS Every care has been taken to try to ensure that the answers given are correct. However, if any user considers that the answers may be

More information

AGILITY REGULATIONS OF THE. Open Junior Agility Championships

AGILITY REGULATIONS OF THE. Open Junior Agility Championships AGILITY REGULATIONS OF THE Open Junior Agility Championships 2013 Content Our Aim 3 Introduction 3 Handler Age Categories 3 Jump Height Categories 3 Courses 3 - General - Course Design - Competition Process

More information

Chapter 18: Categorical data

Chapter 18: Categorical data Chapter 18: Categorical data Self-test answers SELF-TEST Run a multiple regression analysis using Cat Regression.sav with LnObserved as the outcome, and Training, Dance and Interaction as your three predictors.

More information

Multiclass and Multi-label Classification

Multiclass and Multi-label Classification Multiclass and Multi-label Classification INFO-4604, Applied Machine Learning University of Colorado Boulder September 21, 2017 Prof. Michael Paul Today Beyond binary classification All classifiers we

More information

Eligibility Flow Chart

Eligibility Flow Chart Eligibility Flow Chart General Eligibility... 1 Title/Certificate Awards... 2 Obedience Awards... High CD, High CDX, High UD, High UDX, High OM/OGM.3 Three Highest Legs (No Failures)... 3 Rookie of the

More information

IRISH KENNEL CLUB LIMITED RULES & REGULATIONS FOR OBEDIENCE TESTS

IRISH KENNEL CLUB LIMITED RULES & REGULATIONS FOR OBEDIENCE TESTS IRISH KENNEL CLUB LIMITED RULES & REGULATIONS FOR OBEDIENCE TESTS 2017 LICENCE APPLICATIONS Licence applications to be received by the Irish Kennel Club Limited at least sixty (60) days before the proposed

More information

Ladies Kennel Association Of Kenya 52 ND CHAMPIONSHIP DOG SHOW Saturday, 23 rd February And Sunday, 24 th February 2019

Ladies Kennel Association Of Kenya 52 ND CHAMPIONSHIP DOG SHOW Saturday, 23 rd February And Sunday, 24 th February 2019 Ladies Kennel Association Of Kenya 52 ND CHAMPIONSHIP DOG SHOW Saturday, 23 rd February And Sunday, 24 th February 2019 KINDLY SPONSORED BY PET WORLD AND ADRAGNA PETFOOD READ THIS SCHEDULE VERY CAREFULLY

More information

Scratch Lesson Plan. Part One: Structure. Part Two: Movement

Scratch Lesson Plan. Part One: Structure. Part Two: Movement Scratch Lesson Plan Scratch is a powerful tool that lets you learn the basics of coding by using easy, snap-together sections of code. It s completely free to use, and all the games made with scratch are

More information

Oklahoma Stock Dog Association Rules Updated June 5, 2012 Table of Contents I. Statement of Purpose:...2 II. Overview:...2 III. Class Definitions...

Oklahoma Stock Dog Association Rules Updated June 5, 2012 Table of Contents I. Statement of Purpose:...2 II. Overview:...2 III. Class Definitions... Oklahoma Stock Dog Association Rules Updated June 5, 2012 Table of Contents I. Statement of Purpose:...2 II. Overview:...2 III. Class Definitions...3 A. Open Class:...3 B. Open Ranch Class:...3 C. Ranch

More information

Lab 7: Experimenting with Life and Death

Lab 7: Experimenting with Life and Death Lab 7: Experimenting with Life and Death Augmented screen capture showing the required components: 2 Sliders (as shown) 2 Buttons (as shown) 1 Plot (as shown) min-pxcor = -50, max-pxcor = 50, min-pycor

More information

THE KENNEL CLUB OLYMPIA AGILITY STAKES Supported by Skinner s RULES 2019

THE KENNEL CLUB OLYMPIA AGILITY STAKES Supported by Skinner s RULES 2019 THE KENNEL CLUB OLYMPIA AGILITY STAKES RULES 2019 All events must be judged under the appropriate Kennel Club Regulations H & H(1) in force at the time of the event. Competitors entering any competition

More information

Lab 10: Color Sort Turtles not yet sorted by color

Lab 10: Color Sort Turtles not yet sorted by color Lab 10: Color Sort 4000 Turtles not yet sorted by color Model Overview: Color Sort must be a Netlogo model that creates 4000 turtles: each in a uniformly distributed, random location, with one of 14 uniformly

More information

PLEASE ATTACH A PICTURE OF YOUR PROJECT ANIMAL HERE

PLEASE ATTACH A PICTURE OF YOUR PROJECT ANIMAL HERE PLEASE ATTACH A PICTURE OF YOUR PROJECT ANIMAL HERE Name: Name of Your Animal Age (as of January 1 st ) Years in 4-H Date Project Started Date Project Closed WHY KEEP RECORDS? Good records will: Help you

More information

PNCC Dogs Online. Customer Transactions Manual

PNCC Dogs Online. Customer Transactions Manual PNCC Dogs Online Customer Transactions Manual Your registration code can be found under the Owner Number section of the Application to Register Dog/s form as shown below: Oasis ID 5535356 1 Table of Contents

More information

ANNUAL AWARDS POLICY

ANNUAL AWARDS POLICY ANNUAL AWARDS POLICY All members applying for awards must send their applications to the Awards Chairperson by the published deadline on the correct form with documentation attached. It is the responsibility

More information

Lab 6: Energizer Turtles

Lab 6: Energizer Turtles Lab 6: Energizer Turtles Screen capture showing the required components: 4 Sliders (as shown) 2 Buttons (as shown) 4 Monitors (as shown) min-pxcor = -50, max-pxcor = 50, min-pycor = -50, max-pycor = 50

More information

MKA FCI INTERNATIONAL DOG SHOWS SEPTEMBER 2017

MKA FCI INTERNATIONAL DOG SHOWS SEPTEMBER 2017 MKA FCI INTERNATIONAL DOG SHOWS SEPTEMBER 2017 8 th 10 th September 2017 Time : 9am Venue : Exhibition Hall 1, Viva Home Shopping Mall, 85, Jalan Loke Yew, 55200 Kuala Lumpur Date Name of Show Judge 08/09/17

More information

CHAPTER 1 OBEDIENCE REGULATIONS GENERAL REGULATIONS

CHAPTER 1 OBEDIENCE REGULATIONS GENERAL REGULATIONS GENERAL REGULATIONS Page 1 of 92 Section 1. Obedience Clubs. An obedience club that meets all the requirements of the American Kennel Club and wishes to hold an obedience trial must apply on the form the

More information

See the General Animal Project Guidelines section of this Exhibit Guide for a more complete listing of project requirements.

See the General Animal Project Guidelines section of this Exhibit Guide for a more complete listing of project requirements. DOG OBEDIENCE PROJECT REQUIREMENTS: See the General Animal Project Guidelines section of this Exhibit Guide for a more complete listing of project requirements. 1. Feed, train, and care for your own or

More information

Section: 101 (2pm-3pm) 102 (3pm-4pm)

Section: 101 (2pm-3pm) 102 (3pm-4pm) Stat 20 Midterm Exam Instructor: Tessa Childers-Day 12 July 2012 Please write your name and student ID below, and circle your section With your signature, you certify that you have not observed poor or

More information

ELIGIBILITY AND GUIDELINES 1. Entry Date. April 3, 2019 through 4-H Connect

ELIGIBILITY AND GUIDELINES 1. Entry Date. April 3, 2019 through 4-H Connect TEXAS 4-H & YOUTH DEVELOPMENT Big Time in D9 Veterinary Science Skill-a-thon 12-19-2018 2018 Invitational Contest Rules & Guidelines Saturday May 4, 2019-1:00 p.m. Please note. 2018 Big Time in D9 Veterinary

More information

Top Dog! By Quantum Productions

Top Dog! By Quantum Productions Top Dog! By Quantum Productions www.combo.zone You are a rising dog trainer reaching for fame. You'll buy pups from the breeder & mutts from the shelter, train them with Poise*tm shampoo then enter them

More information

LABRADOR RETRIEVER CLUB OF ALBERTA

LABRADOR RETRIEVER CLUB OF ALBERTA LABRADOR RETRIEVER CLUB OF ALBERTA OFFICIAL PREMIUM LIST FOUR ALL BREED OBEDIENCE TRIALS April 21 & 22, 2012 Canine Communications 6013 86 Street, Edmonton, AB Held under the Canadian Kennel Club Rules

More information

Mendelian Genetics Using Drosophila melanogaster Biology 12, Investigation 1

Mendelian Genetics Using Drosophila melanogaster Biology 12, Investigation 1 Mendelian Genetics Using Drosophila melanogaster Biology 12, Investigation 1 Learning the rules of inheritance is at the core of all biologists training. These rules allow geneticists to predict the patterns

More information

EAST OF ENGLAND CHAMPIONSHIP DOG SHOW SCHEDULE OF OBREEDIENCE HEAT. AT East of England Showgroud, Peterborough., PE2 6XE SATURDAY 7 TH JULY 2018

EAST OF ENGLAND CHAMPIONSHIP DOG SHOW SCHEDULE OF OBREEDIENCE HEAT. AT East of England Showgroud, Peterborough., PE2 6XE SATURDAY 7 TH JULY 2018 EAST OF ENGLAND CHAMPIONSHIP DOG SHOW SCHEDULE OF OBREEDIENCE HEAT (Held under Kennel Club Rules & Regulations G and licensed by the Kennel Club Limited) AT East of England Showgroud, Peterborough., PE2

More information

Getting Started with Java Using Alice. 1 Copyright 2013, Oracle and/or its affiliates. All rights reserved.

Getting Started with Java Using Alice. 1 Copyright 2013, Oracle and/or its affiliates. All rights reserved. Getting Started with Java Using Alice Use Functions 1 Copyright 2013, Oracle and/or its affiliates. All rights Objectives This lesson covers the following objectives: Use functions to control movement

More information

Scratch Jigsaw Method Feelings and Variables

Scratch Jigsaw Method Feelings and Variables Worksheets provide guidance throughout the program creation. Mind the following symbols that structure your work progress and show subgoals, provide help, mark and explain challenging and important notes

More information

Championship Show & Sweepstakes Saturday, September 5, 2015 Centennial Park 700 Franklin Road, (Westsyde) Kamloops BC, Canada

Championship Show & Sweepstakes Saturday, September 5, 2015 Centennial Park 700 Franklin Road, (Westsyde) Kamloops BC, Canada Official 2015 Premium List RHODESIAN RIDGEBACK CLUB OF BRITISH COLIMBIA Championship Show & Sweepstakes Saturday, September 5, 2015 Centennial Park 700 Franklin Road, (Westsyde) Kamloops BC, Canada JUDGES

More information

Modeling: Having Kittens

Modeling: Having Kittens PROBLEM SOLVING Mathematics Assessment Project CLASSROOM CHALLENGES A Formative Assessment Lesson Modeling: Having Kittens Mathematics Assessment Resource Service University of Nottingham & UC Berkeley

More information

Rabbit Activity Sheet Level 3 Grades 9 & Up

Rabbit Activity Sheet Level 3 Grades 9 & Up Rabbit Activity Sheet -2017 Level 3 Grades 9 & Up What you will do in this project: Enroll in the 4-H program by January 15. Enter rabbits to be shown at the county fair ONLINE by June 30 at https://in.4honline.com

More information

LABRADOR RETRIEVER CLUB OF ALBERTA

LABRADOR RETRIEVER CLUB OF ALBERTA LABRADOR RETRIEVER CLUB OF ALBERTA OFFICIAL PREMIUM LIST FOUR ALL BREED OBEDIENCE TRIALS April 16 & 17, 2011 Canine Communications 6013 86 Street, Edmonton, AB Held under the Canadian Kennel Club Rules

More information

WHO can participate? ANY child in 1st - 12th grade. Any state, any school. We want students from all around the country to celebrate dogs!

WHO can participate? ANY child in 1st - 12th grade. Any state, any school. We want students from all around the country to celebrate dogs! 2019 Student Art Contest Overview & FAQ WHAT is it? The Rose City Classic Student Art Contest is an annual part of the Rose City Classic Dog show. Students from ALL across the country submit art, which

More information

GENERAL RULES Validity of rules and regulations: Entry fee: Failure of the subject to show: Dogs on heat:

GENERAL RULES Validity of rules and regulations: Entry fee: Failure of the subject to show: Dogs on heat: GENERAL RULES - Validity of rules and regulations: please note: payment of the entry fee for any show whatsoever organized, either directly or indirectly, by KCSM, automatically implies unconditional acceptance

More information

Story Points: Estimating Magnitude

Story Points: Estimating Magnitude Story Points.fm Page 33 Tuesday, May 25, 2004 8:50 PM Chapter 4 Story Points: Estimating Magnitude In a good shoe, I wear a size six, but a seven feels so good, I buy a size eight. Dolly Parton in Steel

More information

Pupils work out how many descendents one female cat could produce in 18 months.

Pupils work out how many descendents one female cat could produce in 18 months. Cats and Kittens Task description Pupils work out how many descendents one female cat could produce in 18 months. Suitability National Curriculum levels 5 to 8 Time Resources 45 minutes to 1 hour Paper

More information

Subdomain Entry Vocabulary Modules Evaluation

Subdomain Entry Vocabulary Modules Evaluation Subdomain Entry Vocabulary Modules Evaluation Technical Report Vivien Petras August 11, 2000 Abstract: Subdomain entry vocabulary modules represent a way to provide a more specialized retrieval vocabulary

More information

RULES FOR THE EUROPEAN CUP FOR RETRIEVERS

RULES FOR THE EUROPEAN CUP FOR RETRIEVERS FEDERATION CYNOLOGIQUE INTERNATIONALE (FCI) (AISBL) Place Albert 1er, 13, B - 6530 Thuin (Belgique) Tél : ++32.71.59.12.38 Fax : ++32.71.59.22.29, internet: http://www.fci.be RULES FOR THE EUROPEAN CUP

More information

JUNIOR FAIR LIVESTOCK RULES

JUNIOR FAIR LIVESTOCK RULES JUNIOR FAIR LIVESTOCK RULES All market livestock to be exhibited at the Fayette County Fair must be owned by May 1 of the current year, with the exception of market steers (dairy & beef), which must be

More information

Simon Fraser University Fall Econ 302 Final Exam Solution Instructor: Songzi Du Saturday December 10, 2016, 8:30 11:30 AM

Simon Fraser University Fall Econ 302 Final Exam Solution Instructor: Songzi Du Saturday December 10, 2016, 8:30 11:30 AM Simon Fraser University Fall 2016 Econ 302 Final Exam Solution Instructor: Songzi Du Saturday December 10, 2016, 8:30 11:30 AM NE = Nash equilibrium, SPE = subgame perfect equilibrium, PBE = perfect Bayesian

More information

ABdFC VERSATILE BOUVIER PROGRAM (Revised )

ABdFC VERSATILE BOUVIER PROGRAM (Revised ) ABdFC VERSATILE BOUVIER PROGRAM (Revised 02-5-2016) The Bouvier des Flandres is a versatile dog and maintaining that characteristic contributes to the health of the breed. The breed s heritage should be

More information

What if? By Rosemary Janoch

What if? By Rosemary Janoch What if? By Rosemary Janoch I had a funny thing happen at an obedience trial two weeks ago. The judge had just finished examining my dog during the moving stand and said Call your dog. I started with Brinks

More information

WLAOTC ANNUAL AWARDS APPLICATION FORM For Awards Year January 1, 2018 through December 31, 2018

WLAOTC ANNUAL AWARDS APPLICATION FORM For Awards Year January 1, 2018 through December 31, 2018 WLAOTC ANNUAL AWARDS APPLICATION FORM For Awards Year January 1, 2018 through December 31, 2018 You MUST apply for your awards nothing comes to you automatically. APPLICATION DEADLINE The APPLICATION must

More information

Utah 4-H Dog Program. Rank Advancements. This book belongs to: And my dog:

Utah 4-H Dog Program. Rank Advancements. This book belongs to: And my dog: Utah 4-H Dog Program Rank Advancements This book belongs to: And my dog: 1 Rank Advancements The Handler/Dog Team skills must be completed with each dog. In order to compete, an exhibitor must turn in

More information

4-H Dog Showmanship. Class: Junior Intermediate Senior. 4-Her s Name Dog s Name Breed Show Location Date Judge. Smiling Friendly Confident.

4-H Dog Showmanship. Class: Junior Intermediate Senior. 4-Her s Name Dog s Name Breed Show Location Date Judge. Smiling Friendly Confident. Purple (95 100) Blue (90 94.5) Red (80 89.5) White (79.5 or less) 4-H Dog Showmanship Class: Junior Intermediate Senior (Circle one) 4-Her s Name Dog s Name Breed Show Location Date Judge STRENGTHS: WEAKNESSES:

More information

Judging Approval Process Effective March 1, Frequently Asked Questions

Judging Approval Process Effective March 1, Frequently Asked Questions Judging Approval Process Effective March 1, 2012 Frequently Asked Questions The Judging Operations Department s goal is to improve the quality of judging. We thank you for your interest in becoming a judge

More information

2018 WINTER PIG CLASSIC

2018 WINTER PIG CLASSIC 2018 WINTER PIG CLASSIC Sponsored by: Georgia Farm Credit Associations Decatur Co. Young Farmers JANUARY 12-14, 2018 GA AGRI-CENTER PERRY, GA Judges: Evan Green and Brandon Kahle Prospect/Progress Champions-$200.00

More information

4-H RECORD BOOK. Dutchess County NAME: AGE: YEARS IN 4-H (Including this year): CLUB:

4-H RECORD BOOK. Dutchess County NAME: AGE: YEARS IN 4-H (Including this year): CLUB: 4-H RECORD BOOK Dutchess County NAME: AGE: GRADE: YEARS IN 4-H (Including this year): CLUB:_ 1 CCEDC is an employer and educator recognized for valuing AA/EEO, Protected Veterans, and Individuals with

More information

AGENDA GERMAN SHEPHERD DOG COUNCIL OF AUSTRALIA INC JUDGES COMMITTEE MEETING

AGENDA GERMAN SHEPHERD DOG COUNCIL OF AUSTRALIA INC JUDGES COMMITTEE MEETING GERMAN SHEPHERD DOG COUNCIL OF AUSTRALIA INC JUDGES COMMITTEE MEETING Date: Saturday 25th July 2015 Time: 12.15pm lunch for 1.00pm start Venue: Comfort Inn Haven Marina, 6-10 Adelphi Terrace, Glenelg North

More information

Package PetfindeR. R topics documented: May 22, Type Package Title 'Petfinder' API Wrapper Version Author Aaron Schlegel

Package PetfindeR. R topics documented: May 22, Type Package Title 'Petfinder' API Wrapper Version Author Aaron Schlegel Type Package Title 'Petfinder' API Wrapper Version 1.1.3 Author Aaron Schlegel Package PetfindeR May 22, 2018 Maintainer Aaron Schlegel Wrapper of the 'Petfinder API'

More information

Obedience Regulations. Obedience Judges Guidelines

Obedience Regulations. Obedience Judges Guidelines Obedience Amended to January 1, 2016 Obedience Judges Guidelines Amended to December 1, 2015 The Steward in Obedience Amended to December 1, 2015 AMERICAN KENNEL CLUB S MISSION STATEMENT The American Kennel

More information

JUNIOR FAIR LIVESTOCK RULES

JUNIOR FAIR LIVESTOCK RULES JUNIOR FAIR LIVESTOCK RULES All market livestock to be exhibited at the Fayette County Fair must be owned by May 1 of the current year, with the exception of market steers (dairy & beef), which must be

More information

LABRADOR RETRIEVER CLUB OF ALBERTA

LABRADOR RETRIEVER CLUB OF ALBERTA LABRADOR RETRIEVER CLUB OF ALBERTA OFFICIAL PREMIUM LIST FOUR ALL BREED OBEDIENCE TRIALS FOUR ALL BREED RALLY OBEDIENCE TRIALS (Mixed Breeds and Unrecognized Breeds will be accepted) September 15 & 16,

More information

LABORATORY EXERCISE 6: CLADISTICS I

LABORATORY EXERCISE 6: CLADISTICS I Biology 4415/5415 Evolution LABORATORY EXERCISE 6: CLADISTICS I Take a group of organisms. Let s use five: a lungfish, a frog, a crocodile, a flamingo, and a human. How to reconstruct their relationships?

More information

English Setter Club of New England Annual Awards

English Setter Club of New England Annual Awards English Setter Club of New England Annual Awards ELIGIBILITY Owner of dog entered for Award must have paid dues as outlined in the ESCNE constitution. Payment must be postmarked before January 1 st. If

More information

LRCSC ANNUAL AWARDS APPLICATION

LRCSC ANNUAL AWARDS APPLICATION LRCSC ANNUAL AWARDS APPLICATION Club Member s Name Award Applied For Name of Dog AKC Registration # Name of Breeder Co-owner (if any) Male Female PLEASE READ THE RULES GOVERNING ELIGIBILITY BEFORE FILLING

More information

The Lost Treasures of Giza

The Lost Treasures of Giza The Lost Treasures of Giza *sniff* We tried our best, but they still got away! What will we do without Mitch s programming? Don t give up! There has to be a way! There s the Great Pyramid of Giza! We can

More information

Date Name of Show Judge 23/09/16 8 th MKA FCI ASIA PACIFIC CHAMPIONSHIP SHOW 2016 (APAC Champion CAC)

Date Name of Show Judge 23/09/16 8 th MKA FCI ASIA PACIFIC CHAMPIONSHIP SHOW 2016 (APAC Champion CAC) 8 th MKA FCI ASIA PACIFIC SHOW 2016 37 th MKA FCI 2016 & MYS WINNERS SHOW 4 th SOUTH EAST ASIAN SHOW 2016 38 th MKA FCI 2016 9 th MKA FCI ASIA PACIFIC SHOW 2016 23 rd 25 th September 2016 Time : 9am 39

More information

Content Delivery Network Interconnection (CDNI) Request Routing: CDNI Footprint and Capabilities Advertisement using ALTO

Content Delivery Network Interconnection (CDNI) Request Routing: CDNI Footprint and Capabilities Advertisement using ALTO Content Delivery Network Interconnection (CDNI) Request Routing: CDNI Footprint and Capabilities Advertisement using ALTO draft-alto-cdni-request-routing-alto-01 J. Seedorf, Y. Richard Yang, Kevin Ma,

More information

BEEF SHEEP SWINE DAIRY GOAT. JUNIOR (3rd-5th) INTERMEDIATE (6th-8th) SENIOR (9th-12th) NAME CLUB SCHOOL GRADE AS OF JANUARY 1 OF CURRENT YEAR AGE

BEEF SHEEP SWINE DAIRY GOAT. JUNIOR (3rd-5th) INTERMEDIATE (6th-8th) SENIOR (9th-12th) NAME CLUB SCHOOL GRADE AS OF JANUARY 1 OF CURRENT YEAR AGE CACHE COUNTY 4-H JUNIOR LIVESTOCK RECORD BOOK PROJECT: BEEF SHEEP SWINE DAIRY GOAT GRADE LEVEL: JUNIOR (3rd-5th) INTERMEDIATE (6th-8th) SENIOR (9th-12th) NAME CLUB SCHOOL GRADE AS OF JANUARY 1 OF CURRENT

More information

PNCC Dogs Online. Customer Transactions Manual

PNCC Dogs Online. Customer Transactions Manual PNCC Dogs Online Customer Transactions Manual Your registration code can be found under the Owner Number section of the Application to Register Dog/s form as shown below: Oasis ID 5535356 1 Table of Contents

More information

NICOLA VALLEY KENNEL CLUB

NICOLA VALLEY KENNEL CLUB Official Judging Schedule NICOLA VALLEY KENNEL CLUB Saturday & Sunday 4 All-Breed Championship Shows Limited To 200 Entries Per Show Junior Handling & Puppy Sweepstakes & Baby Puppy JULY 1 & 2, 2017 CELEBRATE

More information

Pedigrees: Understanding Retriever Pedigrees Part I

Pedigrees: Understanding Retriever Pedigrees Part I Pedigrees: Understanding Retriever Pedigrees Part I Written by Butch Goodwin of Northern Flight Retrievers Editor's Note -Reading and understanding pedigrees is vital to picking out a sound, healthy puppy.

More information

SARG Guide Surrey Amphibian and Reptile Group. SARG Reptile Surveyor s Guide Using SARGWEB. April 2012 Version 1.0. Steve Langham

SARG Guide Surrey Amphibian and Reptile Group. SARG Reptile Surveyor s Guide Using SARGWEB. April 2012 Version 1.0. Steve Langham SARG Guide Surrey Amphibian and Reptile Group SARG Reptile Surveyor s Guide Using SARGWEB Steve Langham April 2012 Version 1.0 Contents The SARG Reptile Surveyor s Guide to SARGWEB... 3 1. Introduction...

More information

SYTLE FORMAL : The Online Dog Trainer In-Depth Review

SYTLE FORMAL : The Online Dog Trainer In-Depth Review ***IMPORTANT DISCLAIMER*** Please DO NOT copy and paste directly to your site without changing the review considerably (Google WILL penalize duplicate content) ***END DISCLAIMER*** SYTLE FORMAL : The Online

More information

THE WEIMARANER ASSOCIATION K.C. ID 4131 FIELD TRIALS 2018/19 Held under Kennel Club Limited Rules and Regulations J

THE WEIMARANER ASSOCIATION K.C. ID 4131 FIELD TRIALS 2018/19 Held under Kennel Club Limited Rules and Regulations J THE WEIMARANER ASSOCIATION K.C. ID 4131 FIELD TRIALS 2018/19 Held under Kennel Club Limited Rules and Regulations J NOVICE STAKE SCHEDULE OF FIELD TRIALS (ALL HPR) 2018/19 Little Pixhall, Hawkhurst, Kent

More information

DOG IDENTIFICATION AFFIDAVITS

DOG IDENTIFICATION AFFIDAVITS WRIGHT COUNTY 4 H 2017 Dog Project Information Obedience Showmanship Rally Agility DOG IDENTIFICATION AFFIDAVITS Due May 15, 2017 All dogs participating in the 4-H dog program must be up to date on vaccinations.

More information

Rabbit Activity Sheet Level 1 Grades 3-4-5

Rabbit Activity Sheet Level 1 Grades 3-4-5 Rabbit Activity Sheet -2016 Level 1 Grades 3-4-5 $1.00 Allen County 4-H Skills for Life What you will do in this project: Enroll in the 4-H program by January 15. Enter rabbits to be shown at the county

More information

ENGLISH COCKER SPANIEL FIELD TRIAL HALL OF FAME By-Laws and Operating Procedure

ENGLISH COCKER SPANIEL FIELD TRIAL HALL OF FAME By-Laws and Operating Procedure ENGLISH COCKER SPANIEL FIELD TRIAL HALL OF FAME By-Laws and Operating Procedure As adopted and approved by The English Cocker Spaniel Field Trial Hall of Fame Committee December 6, 2011 and revised January

More information

HerdMASTER 4 Tip Sheet CREATING ANIMALS AND SIRES

HerdMASTER 4 Tip Sheet CREATING ANIMALS AND SIRES HerdMASTER 4 Tip Sheet CREATING ANIMALS AND SIRES TABLE OF CONTENTS Adding a new animal... 1 The Add Animal Window... 1 The Left Side... 2 The right Side Top... 3 The Right Side Bottom... 3 Creating a

More information

SHEEP 2016 Fulton County 4H Sheep Rules (NEW)

SHEEP 2016 Fulton County 4H Sheep Rules (NEW) SHEEP ENROLLMENT ONLINE IS DUE: MAY 1 AT https://in.4honline.com SHEEP ID: MAY 8, 2015, 5:30 7:30 P.M. COUNTY FAIR CHECK-IN: SUNDAY, JULY 12, 2:00 4:00 P.M. 4H exhibitors showing sheep will be required

More information

Held under licence to the Kennel Club of Jersey - Obedience Regulations (Jersey) Limited show limited to European residents and

Held under licence to the Kennel Club of Jersey - Obedience Regulations (Jersey) Limited show limited to European residents and Schedule of: 6 Class Limited Obedience Show on Saturday 17 th September 2016 Held under licence to the Kennel Club of Jersey - Obedience Regulations (Jersey) Limited show limited to European residents

More information

Males $ 1,950 Females $ 1,650

Males $ 1,950 Females $ 1,650 Rosehall Shepherds Information Pages: (last update 2/28/17) How much do Rosehall puppies cost? All puppies are sold with Limited AKC Registration. Males $ 1,950 Females $ 1,650 There will be an occasional

More information

1 Turtle Graphics Concepts

1 Turtle Graphics Concepts Transition from Scratch to Python using to Turtle Graphics Practical Sheet Contents 1 Turtle Graphics Concepts... 1 2 First Turtle Program... 1 3 Exploring More Turtle... 2 4 Control Structures in Python

More information

Guide Dog Patch Program

Guide Dog Patch Program Guide Dog Patch Program This Guide Dog Patch Program, with its collaborative, hands-on activities, was created to teach girls in grades K-8 about the importance of guide dogs. Guide Dog GSSD Program Age

More information

PROTOCOL FOR EVALUATION OF AGILITY COURSE ACCORDING TO DIFFICULTY FOUND

PROTOCOL FOR EVALUATION OF AGILITY COURSE ACCORDING TO DIFFICULTY FOUND PROTOCOL FOR EVALUATION OF AGILITY COURSE ACCORDING TO DIFFICULTY FOUND AT THE END OF DETERMINATION OF AIA'S STANDARD LEVEL This protocol has the purpose to determine an evaluation of the difficulty level

More information

SOUTH AFRICAN QUALIFICATIONS AUTHORITY REGISTERED UNIT STANDARD: Apply advanced breeding practices for farm animals

SOUTH AFRICAN QUALIFICATIONS AUTHORITY REGISTERED UNIT STANDARD: Apply advanced breeding practices for farm animals All qualifications and part qualifications registered on the National Qualifications Framework are public property. Thus the only payment that can be made for them is for service and reproduction. It is

More information

Data Modeling and Database Design

Data Modeling and Database Design INF1343, Winter 2012 Data Modeling and Database Design Yuri Takhteyev Faculty of Information University of Toronto This presentation is licensed under Creative Commons Attribution License, v. 3.0. To view

More information

GLANDORE DOG TRAINING CLUB OF ULSTER SCHEDULE OF OPEN AGILITY SHOW

GLANDORE DOG TRAINING CLUB OF ULSTER SCHEDULE OF OPEN AGILITY SHOW GLANDORE DOG TRAINING CLUB OF ULSTER SCHEDULE OF OPEN AGILITY SHOW (Held under Kennel Club Limited Rules & Regulations H & H(1), and licenced by The Kennel Club Limited))) SHANE S CASTLE Castle Road ANTRIM

More information