Recursion with Turtles

Size: px
Start display at page:

Download "Recursion with Turtles"

Transcription

1 Turtle Graphics Recursin with Turtles Pythn has a built-in mdule named turtle. See the Pythn turtle mdule API fr details. Use frm turtle imprt * t use these cmmands: CS111 Cmputer Prgramming Department f Cmputer Science Wellesley Cllege fd(dist) bk(dist) rt(angle) pu() pd() pensize(width) penclr(clr) shape(shp) hme() clear() reset() setup(width,height) turtle mves frward by dist turtle mves backward by dist turtle turns left angle degrees turtle turns right angle degrees (pen up) turtle raises pen in belly (pen dwn) turtle lwer pen in belly sets the thickness f turtle's pen t width sets the clr f turtle's pen t clr sets the turtle's shape t shp turtle returns t (0,0) (center f screen) delete turtle drawings; n change t turtle's state delete turtle drawings; reset turtle's state create a turtle windw f given width and height 10-2 A Simple Example with Turtles frm turtle imprt * setup(,) fd(100) lt(60) shape('turtle') penclr('red') fd(150) rt(15) penclr('blue') bk(100) pu() bk(50) pd() pensize(5) bk(250) pensize(1) hme() 10-3 Lping Turtles Lps can be used in cnjunctin with turtles t make interesting designs. plygn(3,100) # Draws a plygn with the specified number # f sides, each with the specified length def plygn(numsides, sidelength): plygn(4,100) plygn(6,60) plygn(100,3) plygn(5,75) plygn(7,50) 10-4

2 Lping Turtles Spiraling Turtles: A Recursin Example # Draws "flwers" with numpetals arranged arund # a center pint. Each petal is a plygn with # petalsides sides f length petallen. def plyflw(numpetals, petalsides, petallen): plyflw(7,4,80) plyflw(10,5,75) plyflw(11,6,60) spiral(200,90,0.9,10) spiral(200,72,0.97,10) spiral(200,80,0.95,10) 10-5 spiral(200,121,0.95,15) spiral(200,95,0.93,10) 10-6 spiral(sidelen, angle, sidelen is the length f the current side angle is the amunt the turtle turns left t draw the next side scalefactr is the multiplicative factr by which t scale the next side (it is between 0.0 and 1.0) minlength is the smallest side length that the turtle will draw Spiraling Turtles: A Recursin Example def spiral(sidelen, angle, : spiral(, 90,

3 spiral(, 90, spiral(, 90, spiral(, 90, if sidelen >= minlength: spiral(, 90, spiral(, 90, spiral(, 90, spiral(, 90, fd()

4 spiral(, 90, spiral(, 90, spiral(, 90, fd() spiral(, 90, fd() if sidelen >= minlength: spiral(, 90, spiral(, 90, spiral(, 90, fd() spiral(, 90, fd() fd()

5 spiral(, 90, spiral(, 90, spiral(, 90, fd() spiral(, 90, fd() fd() fd() if sidelen >= minlength: spiral(, 90, spiral(, 90, spiral(, 90, fd() spiral(, 90, fd() fd() fd()

6 spiral(, 90, spiral(, 90, spiral(, 90, fd() spiral(, 90, fd() fd() fd() spiral(, 90, spiral(, 90, if sidelen >= minlength: spiral(, 90, spiral(, 90, spiral(, 90, fd() spiral(, 90, fd() fd() fd() spiral(, 90, spiral(, 90, spiral(, 90, spiral(, 90, fd() 10-24

7 spiral(, 90, spiral(, 90, spiral(, 90, fd() spiral(, 90, fd() fd() fd() spiral(, 90, if sidelen >= minlength: spiral(, 90, spiral(, 90, fd() spiral(, 90, spiral(, 90, fd() spiral(, 90, spiral(, 90, spiral(, 90, spiral(, 90, fd() spiral(, 90, fd() fd() spiral(, 90, fd() spiral(, 90, fd() spiral(, 90, spiral(, 90, fd() spiral(, 90, spiral(, 90, spiral(, 90, fd() spiral(, 90, 10-28

8 spiral(, 90, spiral(, 90, spiral(, 90, fd() spiral(, 90, fd() spiral(204.8, 90, if sidelen >= minlength: fd() spiral(, 90, fd() fd() spiral(, 90, fd() spiral(204.8, 90, spiral(, 90, spiral(, 90, fd() spiral(, 90, spiral(, 90, spiral(, 90, fd() spiral(, 90, spiral(, 90, spiral(, 90, spiral(, 90, fd() spiral(204.8, 90, if False: spiral(, 90, fd() fd() spiral(, 90, fd() spiral(204.8, 90, fd() spiral(, 90, fd() spiral(204.8, 90, spiral(, 90, spiral(, 90, fd() spiral(, 90, spiral(, 90, spiral(, 90, fd() spiral(, 90, 10-32

9 spiral(, 90, spiral(, 90, spiral(, 90, fd() spiral(, 90, fd() fd() fd() spiral(, 90, spiral(, 90, fd() spiral(, 90, spiral(, 90, spiral(, 90, spiral(, 90, spiral(, 90, fd() spiral(, 90, fd() fd()

10 spiral(, 90, Invariant Spiraling A functin is invariant relative t an bject s state if the state f the bject is the same befre and after the functin is invked. # Draws a spiral. The state f the turtle (psitin, # clr, heading, etc.) after drawing the spiral is the # same as befre drawing the spiral. def spiralback(sidelen, angle, : Zigzags zigzag(1, 10) Trees zigzag(4, 10) # Draws the specified number f zigzags with the specified # length. def zigzag(num, length): if num>0: lt(45) fd(length) rt(90) fd(2*length) fd(length) zigzag(num-1, length) tree(7, 75, 30, 0.8) tree(7, 75, 15, 0.8) Exercise: mdify zigzag t make the turtle s state invariant tree(10, 80, 45, 0.7) tree(10, 100, 90, 0.68) 10-40

11 Hw t make a 4 level tree: tree(4, 100, 45, 0.6) Hw t make a 3 level tree: tree(3, 60, 45, 0.6) and tw level 3 trees with 60% trunks set at 45 angles and tw level 2 trees with 60% trunks set at 45 angles Make a trunk f size 60 Make a trunk f size Hw t make a 2 level tree: tree(2, 36, 45, 0.6) Hw t make a 1 level tree: tree(1, 21.6, 45, 0.6) and tw level 1 trees With 60% trunks set at 45 angles and tw level 0 trees set at 45 angles Make a trunk f size 36 Make a trunk f size

12 Hw t make a 1 level tree: tree(0, 12.96, 45, 0.6) tree(levels, trunklen, angle, shrinkfactr) D nthing! levels is the number f branches n any path frm the rt t a leaf trunklen is the length f the base trunk f the tree angle is the angle frm the trunk fr each subtree shrinkfactr is the shrinking factr fr each subtree Trees Tracing the invcatin f tree(3, 60, 45, 0.6) def tree(levels, trunklen, angle, shrinkfactr):

13 Draw trunk and turn t draw level 2 tree Begin recursive invcatin t draw level 2 tree Draw trunk and turn t draw level 1 tree Begin recursive invcatin t draw level 1 tree

14 Draw trunk and turn t draw level 0 tree Begin recursive invcatin t draw level 0 tree Cmplete level 0 tree and turn t draw anther level 0 tree Begin recursive invcatin t draw level 0 tree

15 Cmplete level 0 tree and return t starting psitin f level 1 tree Cmplete level 1 tree and turn t draw anther level 1 tree Begin recursive invcatin t draw level 1 tree Draw trunk and turn t draw level 0 tree

16 Cmplete tw level 0 trees and return t starting psitin f level 1 tree Cmplete level 1 tree and return t starting psitin f level 2 tree Cmplete level 2 tree and turn t draw anther level 2 tree Draw trunk and turn t draw level 1 tree

17 Draw trunk and turn t draw level 0 tree Cmplete tw level 0 trees and return t starting psitin f level 1 tree Cmplete level 1 tree and turn t draw anther level 1 tree Draw trunk and turn t draw level 0 tree

18 Cmplete tw level 0 trees and return t starting psitin f level 1 tree Cmplete level 1 tree and return t starting psitin f level 2 tree Cmplete level 2 tree and return t starting psitin f level 3 tree bk(60) The squirrels aren't fled 10-72

19 Randm Trees Turtle Ancestry def treerandm(length, minlength, thickness, minthickness, minangle, maxangle, minshrink, maxshrink): if (length < minlength) r (thickness < minthickness): # Base case pass # D nthing else: angle1 = randm.unifrm(minangle, maxangle) angle2 = randm.unifrm(minangle, maxangle) shrink1 = randm.unifrm(minshrink, maxshrink) shrink2 = randm.unifrm(minshrink, maxshrink) pensize(thickness) fd(length) rt(angle1) treerandm(length*shrink1, minlength, thickness*shrink1, minthickness, minangle, maxangle, minshrink, maxshrink) lt(angle1 + angle2) treerandm(length*shrink2, minlength, thickness*shrink2, minthickness, minangle, maxangle, minshrink, maxshrink) rt(angle2) pensize(thickness) bk(length) Flr turtles used t teach children prblem slving in late 1960s. Cntrlled by LOGO prgramming language created by Wally Feurzeig (BBN), Daniel Bbrw (BBN), and Seymur Papert (MIT). Lg-based turtles intrduced arund 1971 by Papert s MIT Lg Labratry. Turtles play a key rle in cnstructinist learning philsphy espused by Papert in Mindstrms (1980) Turtle Ancestry (cnt d) Turtles, Buggles, & Friends At Wellesley Richard Pattis s Karel the Rbt (1981) teaches prblem-slving using Pascal rbts that manipulate beepers in a grid wrld. Turtle Gemetry bk by Andrea disessa and Hal Abelsn (1986). LEGO/Lg prject at MIT (Mitchel Resnick and Steve Ock, 1988); evlves int Handybards (Fred Martin and Brian Silverman), Crickets (Rbbie Wellesley), and LEGO Mindstrms StarLg prgramming with thusands f turtles in Resnick s Turtles, Termites, and Traffic Jams (1997) In mid-1980s, Eric Rberts teaches prgramming using sftware-based turtles. In 1996, Rbbie Berg and Lyn Turbak start teaching Rbtic Design Studi with Scibrgs. In 1996, Randy Shull and Takis Metaxas use turtles t teach prblem slving in CS110. In 1997, BuggleWrld intrduced by Lyn Turbak when CS111 switches frm Pascal t Java. Turtles are als used in the curse In 2006, Rbbie Berg and thers intrduce PICO Crickets: In 2011, Lyn Turbak and the TinkerBlcks grup intrduce TurtleBlcks, a blcks-based turtle language whse designs can be turned int physical artifacts with laser and vinyl cutters

20 Laser Cutting a Tree regular mde bundary mde laser cutting TurtleWrld 10-77

Recursion with Turtles

Recursion with Turtles Recursion with Turtles Turtle Graphics Concepts in this slide: A list of all useful functions from the turtle module. Python has a built-in module named turtle. See the Python turtle module API for details.

More information

Fractal. Fractals. L- Systems 1/17/12

Fractal. Fractals. L- Systems 1/17/12 1/17/12 Fractal Fractal refers to objects which appear to be geometrically complex with certain characteris6cs They have a rough or complicated shape They are self- similar at different scales Fractals

More information

Python 3 Turtle graphics. Lecture 24 COMPSCI111/111G SS 2017

Python 3 Turtle graphics. Lecture 24 COMPSCI111/111G SS 2017 Python 3 Turtle graphics Lecture 24 COMPSCI111/111G SS 2017 Today s lecture The Turtle graphics package Brief history Basic commands Drawing shapes on screen Logo and Turtle graphics In 1967, Seymour Papert

More information

Code, Draw, and 3D-Print with Turtle Tina

Code, Draw, and 3D-Print with Turtle Tina Code, Draw, and 3D-Print with Turtle Tina Code, Draw, and 3D-Print with Turtle Tina Pavel Solin Revision July 14, 2016 About the Author Dr. Pavel Solin is Professor of Applied and Computational Mathematics

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

Centennial Museum Lesson Plan

Centennial Museum Lesson Plan Centennial Museum Lessn Plan UTEP Curse: MSED 4311- Teaching Science in Intermediate and Middle Grades Designers: Jsephine Talamantes, Gabriel Brunda, Mayra Cruz 1. Lessn Title: El Pas Ecsystem & Fd Chain

More information

BEGINNER NOVICE OBEDIENCE. Beginner Novice Class ---replacing the old Sub Novice A, B, and C1 & C2.

BEGINNER NOVICE OBEDIENCE. Beginner Novice Class ---replacing the old Sub Novice A, B, and C1 & C2. BEGINNER NOVICE OBEDIENCE Beginner Nvice Class ---replacing the ld Sub Nvice A, B, and C1 & C2. Reasns: T make the first divisin f class mre accessible t all members in their first year f training. T remve

More information

Agriculture: Animal Health Technology. o Work Experience, General. o Open Entry/Exit. Distance (Hybrid Online) for online supported courses

Agriculture: Animal Health Technology. o Work Experience, General. o Open Entry/Exit. Distance (Hybrid Online) for online supported courses SECTION A - Curse Infrmatin 1. Curse ID: 2. Curse Title: 3. Divisin: 4. Department: 5. Subject: 6. Shrt Curse Title: 7. Effective Term:: AGHE 65 Veterinary Radigraphy Natural Sciences Divisin Agricultural

More information

PRACTICE MANAGEMENT. Steven D. Garner, DVM, DABVP

PRACTICE MANAGEMENT. Steven D. Garner, DVM, DABVP PRACTICE MANAGEMENT Evaluatin f the effectiveness f VetPlan sftware implementatin in the facilitatin f prcess change and prductivity within the veterinary practice Steven D. Garner, DVM, DABVP Objective

More information

Revolution is an easy-to-administer, all-in-one flea treatment for cats and dogs that simply works inside and out for a full month.

Revolution is an easy-to-administer, all-in-one flea treatment for cats and dogs that simply works inside and out for a full month. What is Revlutin? FOR CATS: Revlutin is an easy-t-administer, all-in-ne flea treatment fr cats and dgs that simply wrks inside and ut fr a full mnth. Revlutin is extremely effective in keeping cats safe

More information

Agriculture: Animal Health Technology. o Work Experience, General. o Open Entry/Exit. Distance (Hybrid Online) for online supported courses

Agriculture: Animal Health Technology. o Work Experience, General. o Open Entry/Exit. Distance (Hybrid Online) for online supported courses SECTION A - Curse Infrmatin 1. Curse ID: 2. Curse Title: 3. Divisin: 4. Department: 5. Subject: 6. Shrt Curse Title: 7. Effective Term:: AGHE 54 Veterinary Office Prcedures Natural Sciences Divisin Agricultural

More information

The Effect of Various Types of Brooding on Growth and Feed Consumption of Chickens During the First 18 Days After Hatch

The Effect of Various Types of Brooding on Growth and Feed Consumption of Chickens During the First 18 Days After Hatch The Effect f Varius Types f Brding n Grwth and Feed Cnsumptin f Chickens During the First 18 Days After Hatch H. G. BAEOTT AND EMMA M. PRINGLE Animal Husbandry Divisin, Bureau f Animal Industry, Agricultural

More information

Package TurtleGraphics

Package TurtleGraphics Version 1.0-7 Date 2017-10-23 Title Turtle Graphics Suggests knitr VignetteBuilder knitr Depends R (>= 3.0), grid Package TurtleGraphics October 23, 2017 An implementation of turtle graphics .

More information

Why talk about this now?

Why talk about this now? Why talk abut this nw? Imprved animal safety means: Reduced stress n cattle Imprved grwth rates Imprved reprductive perfrmance Better able t fight disease Imprved chute safety means: Faster t get the jb

More information

GUIDE TO THE PROFESSIONAL PRACTICE STANDARD

GUIDE TO THE PROFESSIONAL PRACTICE STANDARD GUIDE TO THE PROFESSIONAL PRACTICE STANDARD Veterinarian-Client-Patient Relatinship (VCPR) Published: July 2016 Revised: April 2017; Nvember 2017 Intrductin The Cllege s Prfessinal Practice Standard: Veterinarian-Client-Patient

More information

Lesson 11. Lesson Outline: Form and Function of the Axial Skeleton o o o

Lesson 11. Lesson Outline: Form and Function of the Axial Skeleton o o o Lessn 11 Lessn Outline: Frm and Functin f the Axial Skeletn Reginalizatin f the Vertebral Clumn Bridging Design f Vertebrae Angle f the Neural Spines Height f Neural Spines Ribs and their Derivatives Sternum

More information

Writing Simple Procedures Drawing a Pentagon Copying a Procedure Commanding PenUp and PenDown Drawing a Broken Line...

Writing Simple Procedures Drawing a Pentagon Copying a Procedure Commanding PenUp and PenDown Drawing a Broken Line... Turtle Guide Contents Introduction... 1 What is Turtle Used For?... 1 The Turtle Toolbar... 2 Do I Have Turtle?... 3 Reviewing Your Licence Agreement... 3 Starting Turtle... 3 Key Features... 4 Placing

More information

MANAGEMENT PRACTICES (Handling)

MANAGEMENT PRACTICES (Handling) MANAGEMENT PRACTICES (Handling) Handling: Sheep & gats at Shne Farm are t be handled quietly, calmly and humanely in rder t prevent stress and fr handlers t gain desired results. It is best fr a handler

More information

~~ Always check PAWS for the most current due dates & times! ~~

~~ Always check PAWS for the most current due dates & times! ~~ BUSN1300: Persnal Finance (nline) 2017 Spring Schedule Page 1 f 5 Spring 2017 BUSN 1300 Sectin L01 Schedule Ntes: Althugh this nline class *NEVER* meets in the classrm, studies have shwn that students

More information

IELTS SPEAKING: SAMPLE ANSWERS Part 2 & 3

IELTS SPEAKING: SAMPLE ANSWERS Part 2 & 3 IELTS SPEKING: SMPLE NSWERS Part 2 & 3 (Individual lng turn & tw-way discussin) Q 11. Describe yur favrite animal. Yu shuld say, What kind f animal it is Brief descriptin f it Why yu like the animal My

More information

The Rookery FIRST EDITION! Inside

The Rookery FIRST EDITION! Inside FIRST EDITION! Winter 2016-17 The Rkery Activity Bk fr Seattle Audubn Yuth Members Jkes and Puzzle Answers Make smene laugh tday! Puzzle Answers (dn t peek!) Inside Dear Adults...2 Let s G Birding!...3

More information

Stress-free Stockmanship

Stress-free Stockmanship Stress-free Stckmanship Autr: Jep Driessen Date: June 2017 Bergharen, the Netherlands Inspired by Bud Williams, Texas. Prbably the best cattle stckman ever. Online training n Stress-free stckmanship Sign

More information

TESTING APPLICATION CHANGES WITH IMPRIVATA ONESIGN

TESTING APPLICATION CHANGES WITH IMPRIVATA ONESIGN TESTING APPLICATION CHANGES WITH IMPRIVATA ONESIGN This dcument describes a suggested apprach t testing applicatin changes with Imprivata OneSign befre incrprating them int yur prductin envirnment. The

More information

Turtle Ballet: Simulating Parallel Turtles in a Nonparallel LOGO Version. Erich Neuwirth

Turtle Ballet: Simulating Parallel Turtles in a Nonparallel LOGO Version. Erich Neuwirth Turtle Ballet: Simulating Parallel Turtles in a Nonparallel LOGO Version Erich Neuwirth University of Vienna, Dept. of Statistics and Decision Support Systems Computer Supported Didactics Working Group

More information

5.1. What do we need to know before we start planning a canine rabies control programme?

5.1. What do we need to know before we start planning a canine rabies control programme? 5.1. What d we need t knw befre we start planning a canine rabies cntrl prgramme? Yu need t knw abut: The epidemilgy f rabies in yur area The reservir species in yur area Hw rabies is transmitted. This

More information

Manual. Compiled by. Leslie Bergh & Tim Pauw. Copyright reserved by BenguelaSoft CC. Version

Manual. Compiled by. Leslie Bergh & Tim Pauw.   Copyright reserved by BenguelaSoft CC. Version Manual Versin 14-01-2019 Cmpiled by Leslie Bergh & Tim Pauw www.bengufarm.c.za Cpyright reserved by BenguelaSft CC 1 CONTENTS: Page PART A GETTING STARTED: 1. Install BenguFarm 4 2. Running BenguFarm fr

More information

BACS kitten information session 4/1/13

BACS kitten information session 4/1/13 BACS kitten infrmatin sessin 4/1/13 Welcme Intr t Hpalng Intr t Hpalng/BACS partnership Hw animals get t BACS Kitten Seasn What is kitten seasn? Why d we need fsters? What is fstering abut? Time frame

More information

Manual. Compiled by. Leslie Bergh & Tim Pauw. Copyright reserved by BenguelaSoft CC. Version

Manual. Compiled by. Leslie Bergh & Tim Pauw.   Copyright reserved by BenguelaSoft CC. Version Manual Versin 01-03-2019 Cmpiled by Leslie Bergh & Tim Pauw www.bengufarm.c.za Cpyright reserved by BenguelaSft CC 1 CONTENTS: Page PART A GETTING STARTED: 1. Install BenguFarm 4 2. Running BenguFarm fr

More information

Chimera: Usability Test

Chimera: Usability Test Chimera: Usability Test Date f Reprt: Date f Test: Lcatin f Test: Octber 7, 0 Octber 5, 0 Bstn, MA Prepared fr: Timthy Bickmre Email: bickmre@ccs.neu.edu Prepared by: Email: Hudsn Klebs & Bryan Swrds klebs.h@husky.neu.edu

More information

4-H & FFA JUNIOR LIVESTOCK AUCTION Saturday, August 11, 2018, 11 a.m.

4-H & FFA JUNIOR LIVESTOCK AUCTION Saturday, August 11, 2018, 11 a.m. 2018 Clark Cunty Fair Exhibitr Guide 4-H & FFA Junir Livestck Auctin Lcatin: Beef Shw Ring Page 1 f 5 4-H & FFA JUNIOR LIVESTOCK AUCTION Saturday, August 11, 2018, 11 a.m. JLA Chairpersn: JLA Superintendent:

More information

SOME PREY PREFERENCE FACTORS FOR A L. SNYDER

SOME PREY PREFERENCE FACTORS FOR A L. SNYDER SOME PREY PREFERENCE FACTORS FOR A RED-TAILED HAWK RN L. SNYDER SEW AL studies have reprted selectin against cnspicuus prey. Dice (1947) reprted differential selectin against cnspicuus phentypes f mice

More information

Early Language and Intercultural Acquisition Studies Multilateral EU-Comenius-Project E L I A S

Early Language and Intercultural Acquisition Studies Multilateral EU-Comenius-Project   E L I A S Shannn Thmas, Suzanne Akerman Petra Burmeister, Michael Ewig, Julia Kögler Early Language and Intercultural Acquisitin Studies Multilateral EU-Cmenius-Prject www.elias.bilikita.rg Table f Cntents General

More information

CITY OF NAPERVILLE Transportation, Engineering & Development (TED) Business Group

CITY OF NAPERVILLE Transportation, Engineering & Development (TED) Business Group CITY OF NAPERVILLE Transprtatin, Engineering & Develpment (TED) Business Grup FAST TRACK CERTIFICATE OF APPROPRIATENESS (COA) APPLICATION REQUIREMENTS The Transprtatin, Engineering and Develpment (TED)

More information

Agriculture: Animal Science-General Subjects. o Work Experience, General. o Open Entry/Exit. Distance (Hybrid Online) for online supported courses

Agriculture: Animal Science-General Subjects. o Work Experience, General. o Open Entry/Exit. Distance (Hybrid Online) for online supported courses SECTION A - Curse Infrmatin 1. Curse ID: 2. Curse Title: 3. Divisin: 4. Department: 5. Subject: 6. Shrt Curse Title: 7. Effective Term:: AGAN 51 Animal Handling and Restraint Natural Sciences Divisin Agricultural

More information

Understanding Puppy Nipping Physical exercise Puppy playtime Human playtime Chew deterrents Shunning/Freezing/Yelping Techniques

Understanding Puppy Nipping Physical exercise Puppy playtime Human playtime Chew deterrents Shunning/Freezing/Yelping Techniques Understanding Puppy Nipping Physical exercise Puppy playtime Human playtime Chew deterrents Shunning/Freezing/Yelping Techniques DEFINITIONS Nipping - really quick bites with frnt teeth with a small amunt

More information

VBS 2016 Adult-2 Hour Base Conference

VBS 2016 Adult-2 Hour Base Conference VBS 2016 Adult-2 Hur Base Cnference Purpse Statement This tw-hur plan is designed t train and equip Adult VBS Leaders t cnduct LifeWay s Submerged VBS 2016. Resurces t Cllect, Prepare, & Cpy Resurces t

More information

Neonatal Phase (1-2 weeks)

Neonatal Phase (1-2 weeks) Puppy Develpment: Enrichment and Scializatin Often we hear the key wrds enrichment and scializatin, but what d they actually mean? Hw d we enrich and scialize ur puppies? Are there crrect and incrrect

More information

Reference Guide Playful Invention Company

Reference Guide Playful Invention Company Reference Guide 2016 TutleArt Interface Editor Run the main stack Tap the stack to run Save the current project and exit to the Home page Show the tools Hide the blocks Tap to select a category of programming

More information

ENGLISH HOMEWORK 2. How high can you jump? If you are like most people, you can probably jump one or two feet high.

ENGLISH HOMEWORK 2. How high can you jump? If you are like most people, you can probably jump one or two feet high. ENGLISH HOMEWORK 2 Hw high can yu jump? If yu are like mst peple, yu can prbably jump ne r tw feet high. Hw high d yu think the wrld's best jumper can jump? A man named Javier Stmayr set the wrld recrd

More information

GEOG 490/590 SPATIAL MODELING SPRING 2015 ASSIGNMENT 3: PATTERN-ORIENTED MODELING WITH AGENTS

GEOG 490/590 SPATIAL MODELING SPRING 2015 ASSIGNMENT 3: PATTERN-ORIENTED MODELING WITH AGENTS GEOG 490/590 SPATIAL MODELING SPRING 2015 ASSIGNMENT 3: PATTERN-ORIENTED MODELING WITH AGENTS Objective: To determine a process that produces a particular spatial pattern. Description: An ecologist studying

More information

Lecture 1: Turtle Graphics. the turtle and the crane and the swallow observe the time of their coming; Jeremiah 8:7

Lecture 1: Turtle Graphics. the turtle and the crane and the swallow observe the time of their coming; Jeremiah 8:7 Lecture 1: Turtle Graphics the turtle and the crane and the sallo observe the time of their coming; Jeremiah 8:7 1. Turtle Graphics The turtle is a handy paradigm for the study of geometry. Imagine a turtle

More information

VBS 2018 ADULT VBS EXTRAS CONFERENCE PLAN (1 HOUR)

VBS 2018 ADULT VBS EXTRAS CONFERENCE PLAN (1 HOUR) VBS 2018 Adult VBS Cnference Plan 1 VBS 2018 ADULT VBS EXTRAS CONFERENCE PLAN (1 HOUR) Purpse Statement This ne-hur plan is designed t equip Adult VBS leaders t engage churched and unchurched adults using

More information

Activity 7: A Journey Through Time

Activity 7: A Journey Through Time Activity 7: A Jurney Thrugh Time Summary Students explre the histry f Whping Crane restratin effrts and the imprtance f imprinting by watching a DVD, creating a timeline, and writing a fictinal stry. Objectives

More information

COAT COLOURS DESCRIPTION

COAT COLOURS DESCRIPTION COAT COLOURS DESCRIPTION There are several thusands f cat clurs amng the cats. This nmenclature is a cmprmise between lgic, which allws sme systematic, and traditin, which allws t be understd by the majrity.

More information

Defini:ons of Plagiarism

Defini:ons of Plagiarism Strategies fr Aviding Plagiarism: Paraphrasing and Summarizing Heather McWhinney, 2017 This wrk is licensed under a Creative Cmmns Attributin-NnCmmercial- ShareAlike 4.0 Internatinal License. Defini:ns

More information

APPLICATION FOR LIVE ANIMAL USE IN TEACHING AT COASTAL ALABAMA COMMUNITY COLLEGE

APPLICATION FOR LIVE ANIMAL USE IN TEACHING AT COASTAL ALABAMA COMMUNITY COLLEGE APPLICATION FOR LIVE ANIMAL USE IN TEACHING AT COASTAL ALABAMA COMMUNITY COLLEGE MARK WITH AN "X" EST THE BOX FOR ONE OF THE FOLLOWING AND TYPE YOUR CURRENT PROTOCOL NUMBER IF NEEDED: New applicatin Amendment

More information

Coordinators. or F For Mary enjoys math, for it is challenging. RESULT/CAUSE

Coordinators. or F For Mary enjoys math, for it is challenging. RESULT/CAUSE Crdinatrs As a cllege student, yu are expected t write cmplex sentences that are lgically related. We use special jining wrds crdinating and subrdinating cnjunctins t jin sentences and shw the lgical relatinship

More information

VBS FOLLOW UP CONFERENCE PLAN (1 HOUR)

VBS FOLLOW UP CONFERENCE PLAN (1 HOUR) VBS Fllw Up Cnference Plan 1 VBS FOLLOW UP CONFERENCE PLAN (1 HOUR) Purpse Statement This teaching plan is designed t intrduce VBS leaders t effective strategies fr fllwing up with individuals and families

More information

OAVT Newsletter Dedicated to promoting Veterinary Technicians and quality animal healthcare through: Education, Legislation and High Ethical Standards

OAVT Newsletter Dedicated to promoting Veterinary Technicians and quality animal healthcare through: Education, Legislation and High Ethical Standards OAVT Newsletter Dedicated t prmting Veterinary Technicians and quality animal healthcare thrugh: Educatin, Legislatin and High Ethical Standards http://www.hirvt.rg Spring 2015 President s Crner Spring

More information

Prevalence and risk factors for limb and claw lesions and lameness in young sows

Prevalence and risk factors for limb and claw lesions and lameness in young sows Prevalence and risk factrs fr limb and claw lesins and lameness in yung sws A. J. Quinn 1, 2, L. E. Green 2, A. L. Kilbride 2, L. A. Byle 1 1 Pig Develpment Department, Animal & Grassland Research & Innvatin

More information

THE HUMANE SOCIETY OF THE UNITED STATES Cape Wildlife Center 4011 Main St. (Route 6A), Barnstable, MA Phone: (508) Fax: (508)

THE HUMANE SOCIETY OF THE UNITED STATES Cape Wildlife Center 4011 Main St. (Route 6A), Barnstable, MA Phone: (508) Fax: (508) THE HUMANE SOCIETY OF THE UNITED STATES Cape Wildlife Center 4011 Main St. (Rute 6A), Barnstable, MA 02630 Phne: (508) 362-0111 Fax: (508) 362-0268 Cntact: raguilar@humanesciety.rg Prfessinal Training

More information

A Guide to the TurtleGraphics Package for R

A Guide to the TurtleGraphics Package for R A Guide to the TurtleGraphics Package for R A. Cena, M. Gagolewski, B. Żogała-Siudem, M. Kosiński, N. Potocka Contents http://www.gagolewski.com/software/turtlegraphics/ 1 The TurtleGraphics Package Introduction

More information

Pet Adoption Application

Pet Adoption Application Pet Adptin Applicatin Dg name: Gender Clr Cntact Infrmatin Street Address City / ST / ZIP Cde Hme Phne Wrk Phne Cell Phne Persnal Reference 1: Phne Prperty Type: Apartment Cnd / Twnhme Duplex Huse Mbile

More information

Hastings Grade 1 Spring 3/09. GRADE 1 SPRING NATURE WALK What Animals Need to Survive

Hastings Grade 1 Spring 3/09. GRADE 1 SPRING NATURE WALK What Animals Need to Survive 1 GRADE 1 SPRING NATURE WALK What Animals Need t Survive OBJECTIVES: Observe seasnal changes in schlyard since winter. Discver hw seasnal changes affect animals. Learn abut rbins and ther birds. Discver

More information

Half-Lives of Antibiotics

Half-Lives of Antibiotics MH-6 Team 1 Half-Lives of Antibiotics Team Members: Ethan Wright Senior ethan.wright@melroseschools.org Mackenzie Perkins Junior mackenzie.perkins@melroseschools.org Rebecca Rush Junior rebecca.rush@melroseschools.org

More information

Gulval School Pets in School Policy. June 2016

Gulval School Pets in School Policy. June 2016 Gulval Schl Pets in Schl Plicy June 2016 Cntents 1. Missin Statement... 2 2. Intrductin... 2 3. Lking after a schl pet... 3 4. Handling Animals... 3 5. Diseases, parasites and allergies.... 4 6. Animal

More information

SMALL ANIMAL ORDINANCE Ordinance Amendments Section V.V Keeping of Animals

SMALL ANIMAL ORDINANCE Ordinance Amendments Section V.V Keeping of Animals MEMO Date: Nvember 4, 2013 T: Alexandria Twn Bard Frm: Ben Olesn, Hmetwn Planning Zning Administratr, Alexandria Twnship Re: Zning Administratr s Reprt Dear Twn Bard Members: The Planning Cmmissin held

More information

Machine Learning.! A completely different way to have an. agent acquire the appropriate abilities to solve a particular goal is via machine learning.

Machine Learning.! A completely different way to have an. agent acquire the appropriate abilities to solve a particular goal is via machine learning. Machine Learning! A completely different way to have an agent acquire the appropriate abilities to solve a particular goal is via machine learning. Machine Learning! What is Machine Learning? " Programs

More information

FEDERATION CYNOLOGIQUE INTERNATIONALE (AISBL)

FEDERATION CYNOLOGIQUE INTERNATIONALE (AISBL) FEDERATION CYNOLOGIQUE INTERNATIONALE (AISBL) 13, Place Albert 1er, B - 6530 Thuin (Belgique), tel : ++32.71.59.12.38, fax :++32.71.59.22.29, interne: http://www.fci.be JUDGES GUIDELINES FOR THE INTERNATIONAL

More information

Animal ID Entry 4HOnline HelpSheet

Animal ID Entry 4HOnline HelpSheet Lg in t 4HOnline: Open a web brwser and type in: https://iwa.4hnline.cm On the Iwa 4-H Yuth Develpment Lg In page: 1. Click "I have a Prfile." 2. Enter family email address prvided t Extensin Office. 3.

More information

Infection control Training Program

Infection control Training Program Infectin cntrl Training Prgram Gals: T prvide medical graduate with the basic principles and practice f infectin preventin and cntrl. Objectives: At the cmpletin f this curse the learner will be able t:

More information

Regulating breeding and sales of dogs to minimize dog abandonment, animal abuse and over-breeding

Regulating breeding and sales of dogs to minimize dog abandonment, animal abuse and over-breeding Regulating breeding and sales f dgs t minimize dg abandnment, animal abuse and ver-breeding Animals Asia Fundatin Animal Welfare Directr David Neale Ideally a dg ppulatin shuld be regulated t meet the

More information

ANIMAL CARE PROTOCOL SUMMARY Greyhound Friends, Inc., Hopkinton, MA August, 2018

ANIMAL CARE PROTOCOL SUMMARY Greyhound Friends, Inc., Hopkinton, MA August, 2018 ANIMAL CARE PROTOCOL SUMMARY Greyhund Friends, Inc., Hpkintn, MA August, 2018 Greyhund Friends has thrughly rewrked ur existing staff and vlunteer prtcls, nt nly t ensure cmpliance with state regulatins

More information

A Pan-Canadian Framework on Antimicrobial Resistance. Presentation to the National Farmed Animal Health and Welfare Council November 30, 2016

A Pan-Canadian Framework on Antimicrobial Resistance. Presentation to the National Farmed Animal Health and Welfare Council November 30, 2016 A Pan-Canadian Framewrk n Antimicrbial Resistance Presentatin t the Natinal Farmed Animal Health and Welfare Cuncil Nvember 30, 2016 PURPOSE Purpse T prvide an update n the develpment f a Pan-Canadian

More information

PET FOOD DISTRIBUTION PROGRAM

PET FOOD DISTRIBUTION PROGRAM PET FOOD DISTRIBUTION PROGRAM MISSION The gal f this prgram is t stp the surrender f pets due t the wner s financial inability t prvide care. We particularly want t help lw-incme senirs, the disabled,

More information

2018 Sponsorship Opportunities. Humane Heroes Opportunities. Event-specific Opportunities

2018 Sponsorship Opportunities. Humane Heroes Opportunities. Event-specific Opportunities 2018 Spnsrship Opprtunities Humane Heres Opprtunities Event-specific Opprtunities January 2018 Dear Partner, Thank yu fr cnsidering Baypath Humane Sciety in yur annual dnatin selectin. Fr 2018 we have

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

Volunteer Application

Volunteer Application SILOAM SPRINGS ANIMAL SERVICES Vlunteer Applicatin Silam Springs Animal Services 1300 East Ashley Silam Springs, AR 72761 (479) 524-6535 Our gals are t: Prevent cruelty t animals Teach respnsible pet care

More information

Hind Leg Paralysis. By Suz Enyedy

Hind Leg Paralysis. By Suz Enyedy Hind Leg Paralysis By Suz Enyedy Special Thanks are given t Burbn, Teresa (Dancing), Chris (glidrz5), and Jen (Xfilefan) fr their assistance t me in cmpiling infrmatin fr this article. Als knwn as HLP,

More information

BOWMAN GRADE 1 WINTER NATURE WALK Animals and What They Need to Survive

BOWMAN GRADE 1 WINTER NATURE WALK Animals and What They Need to Survive Grade One Winter Page 1/14 BOWMAN GRADE 1 WINTER NATURE WALK Animals and What They Need t Survive OBJECTIVES: Observe seasnal changes in schlyard since fall. Learn what happens in winter t animals typically

More information

The Global Momentum for AMR Moving from Knowledge to Action

The Global Momentum for AMR Moving from Knowledge to Action The Glbal Mmentum fr AMR Mving frm Knwledge t Actin Cmbating Antimicrbial Resistance: A One Health Apprach Natinal Academy f Medicine Washingtn DC 20 June 2017 Keiji Fukuda Since 20th century t nw Intense

More information

A STUDY OF CROSSBREEDING SHEEP K. P. MILLER AND D. L. DAILEY

A STUDY OF CROSSBREEDING SHEEP K. P. MILLER AND D. L. DAILEY A STUDY OF CROSSBREEDING SHEEP K. P. MILLER AND D. L. DAILEY University ] Minnesta 1 OST crssbreeding experiments reprted have used rams f M varius breeds in matings t Rambuillet ewes. One f the earliest

More information

ANOPHELES SUNDAICUS IN SINGAPORE

ANOPHELES SUNDAICUS IN SINGAPORE Vl. 10, N. 1. SINGAPORE MEDICAL JOURNAL 57 March, 1969. A STUDY ON ANOPHELES MACULATUS AND ANOPHELES SUNDAICUS IN SINGAPORE By K. L. Chan (Entmlgist, Vectr Cntrl Unit, Ministry f Health, Singapre.) INTRODUCTION

More information

ANIMAL EMBASSY PROGRAM ANIMAL GUIDELINES

ANIMAL EMBASSY PROGRAM ANIMAL GUIDELINES MARYLAND WILDERNE ANIMAL EMBASSY Revised March 2017 Animal Department BIOSECURITY Animal Ambassadrs travel ff-site, s they must be hused separately frm the main cllectin and kept in a mdified quarantine

More information

LYME DISEASE THE BIG PICTURE

LYME DISEASE THE BIG PICTURE Lyme Disease Fact Sheet LYME DISEASE THE BIG PICTURE Lyme disease is the fastest-grwing vectr-brne disease in the nrthern hemisphere. Fr 2012, the Centers fr Disease Cntrl and Preventin (CDC) recrded 30,000

More information

Vet. Assisting 1, Semester 2 Course Review

Vet. Assisting 1, Semester 2 Course Review Vet. Assisting 1, Semester 2 Curse Review Unit 1: Human Animal Bnd Discuss the human-animal bnd and its effects n human health. Standards/Cncepts Cvered: Demnstrate apprpriate understanding and respect

More information

The Beef Herd Health Management Calendar

The Beef Herd Health Management Calendar The Beef Herd Health Management Calendar, a cmputerized publicatin authred by Flrn C. Faries, Jr., DVM and Wayne H. Thmpsn, is available fr purchase n cmpact disk (CD-ROM) by cattlemen thrugh the AgriLife

More information

All red dogs should have a training plan: READ IT BEFORE YOU TAKE OUT THE DOG.

All red dogs should have a training plan: READ IT BEFORE YOU TAKE OUT THE DOG. Whatcm Humane Sciety Pack Leader Training Trainer: Kerry Mitchell, CPDT-KA Email: kerryclairev54@gmail.cm Dgs at the shelter are here temprarily. It is ur jb t help keep them exercised, stimulated and

More information

Animal ID Entry 4HOnline HelpSheet

Animal ID Entry 4HOnline HelpSheet Lg in t 4HOnline: Open a web brwser and type in: https://iwa.4hnline.cm On the Iwa 4-H Yuth Develpment Lg In page: 1. Click "I have a Prfile." 2. Enter family email address prvided t Extensin Office. 3.

More information

VBS 2018 ADULT VBS BASE CONFERENCE PLAN (2 HOURS)

VBS 2018 ADULT VBS BASE CONFERENCE PLAN (2 HOURS) VBS 2018 Adult VBS Base Cnference Plan 1 VBS 2018 ADULT VBS BASE CONFERENCE PLAN (2 HOURS) Purpse Statement This tw-hur cnference plan is designed t train and equip leaders t cnduct LifeWay s VBS 2018

More information

Honors English: Summer Break Reading Requirement

Honors English: Summer Break Reading Requirement Hnrs English: Summer Break Reading Requirement Fr yur Hnrs Summer Reading Assignment, get a cpy f the bk fr yur grade level. Bks and resurces fr btaining them are listed belw. As yu read, yu will be asked

More information

4-H Livestock Quality Assurance Program NPQ

4-H Livestock Quality Assurance Program NPQ Survey # 4-H Livestck Quality Assurance Prgram NPQ We wuld like t ask yu sme questins abut yur experience in the 4-H prgram. This infrmatin will help us make sure future prgrams are really gd. This will

More information

MEDICAL CENTER WIDE POLICY AND PROCEDURE MANUAL Fontana & Ontario Medical Centers Policies & Procedures

MEDICAL CENTER WIDE POLICY AND PROCEDURE MANUAL Fontana & Ontario Medical Centers Policies & Procedures Sectin: Infectin Cntrl Medical Center Wide Departmental Subsectin(s): General Guidelines Title: Revisin Date: 4/85, 1/87, 2/88, 5/91, 4/92, 5/96, 5/98, 5/00, 6/02, 3/03, 11/03, 5/04, 11/04, 8/05, 10/05,

More information

Fd Micrbilgy MODULE 4 - FOODBORNE BACTERIAL PATHOGENS AND THERMAL DESTRUCTION Objective On cmpletin f this mdule, participants will be able t: Identify the primary public health cntrls fr sme bacteria

More information

Labour Providers Survey 2016 A seasonal labour monitoring tool for Horticulture and Potatoes

Labour Providers Survey 2016 A seasonal labour monitoring tool for Horticulture and Potatoes Page 1 Circulatin: NFU Hrticulture and Ptates Bard Date: 06/11/16 Ref: Labur Prviders Survey 2016 Q1-Q3 Cntact: Amy Gray Tel: 02476 858 628 Labur Prviders Survey 2016 A seasnal labur mnitring tl fr Hrticulture

More information

Austin, TX. Getting to No Kill. from the perspective of Austin Pets Alive! Ellen Jefferson, DVM Executive Director Austin Pets Alive!

Austin, TX. Getting to No Kill. from the perspective of Austin Pets Alive! Ellen Jefferson, DVM Executive Director Austin Pets Alive! Getting t N-Kill: Different Cmmunities, Different Mdels Austin, Texas Dr. Ellen Jeffersn Austin, TX Getting t N Kill frm the perspective f Austin Pets Alive! Ellen Jeffersn, DVM Executive Directr Austin

More information

Grandparents U, 2018 Part 2

Grandparents U, 2018 Part 2 Grandparents U, 2018 Part 2 Computer Programming for Beginners Filip Jagodzinski Preliminaries : Course Website All of these slides will be provided for you online... The URL for the slides are provided

More information

C.A.R.E. Pet Adoption Application & Contract

C.A.R.E. Pet Adoption Application & Contract This sectin fr C.A.R.E. Use Only Puppy Dg Kitten Cat Pet s Name: Estimated DOB (r age): Breed: Clr: Micrchip #: Male Male/Neutered Female Female/Spayed Adptin Fee: $ Ntes: Cntact Infrmatin First Name:

More information

1 '~; c\ 1.Introduction

1 '~; c\ 1.Introduction CHAPTER - H 1 '~; c\ REPRODUCTIVE BEHAVIOUR OP GERBILS V RETRIEVAL OP YOUN& 1Intrductin 'Retrieval 1 r carriage f straying r fallen yung t the nest by 1actating mthers, frms an Imprtant cmpnent f the maternal

More information

Federal Junior Duck Stamp Program Conservation Through the Arts

Federal Junior Duck Stamp Program Conservation Through the Arts Federal Junir Duck Stamp Prgram Cnservatin Thrugh the Arts Adpt-A-Duck Wd Duck Curriculum Intrductin Objectives: Describe the viewpint f a dabbling duck while dabbling underwater thrugh grup discussin,

More information

HAND HYGIENE SURVEY. Yes: If yes, has this policy been signed and approved by the CEO and/or the board of directors? Yes No

HAND HYGIENE SURVEY. Yes: If yes, has this policy been signed and approved by the CEO and/or the board of directors? Yes No HAND HYGIENE SURVEY 1. Is there a written hand hygiene plicy in yur rganizatin/facility/agency? (Hand hygiene is defined as the act f washing ne s hands with sap and water, r disinfecting them with an

More information

Implementation of the new 'Pet Regulation' Regulation (EU) No 576/2013

Implementation of the new 'Pet Regulation' Regulation (EU) No 576/2013 Implementatin f the new 'Pet Regulatin' Regulatin (EU) N 576/2013 Advisry grup n the Fd Chain, Animal Health and Plant Health- 9 March 2015 Hélène KLEIN legislative veterinary fficer Brief histry: legislative

More information

Safe Work Method Statement. Mouse Blood Collection

Safe Work Method Statement. Mouse Blood Collection Flinders University Safe Wrk Methd Statement Muse Bld Cllectin Versin 6 Cllege f Medicine and Public Health Animal Facility SWMS Number RA Number RA Scre Cntents The SOP Muse Bld Cllectin cntains the fllwing

More information

4-H Livestock Quality Assurance Program

4-H Livestock Quality Assurance Program Survey # 4-H Livestck Quality Assurance Prgram We wuld like t ask yu sme questins abut yur experience in the 4-H prgram. This infrmatin will help us make sure future prgrams are really gd. This will take

More information

Antimicrobial Stewardship Team - Pilot Proposal

Antimicrobial Stewardship Team - Pilot Proposal Antimicrbial Stewardship Team - Pilt Prpsal Summary In 2005, the adult ppulatin in the XXX Hspital accunted fr 80% f the anti-infective budget. Fifteen f the tp 20 anti-infective budget items were ID restricted

More information

Lesson Plan. Grade Level

Lesson Plan. Grade Level Lessn Plan Lessn Title Eclgy f Msquites Grade Level 5 th grade Tpic Msquites Lessn time 45-55 minutes Materials Required Digital micrscpe Eclgy f Msquites PwerPint (available here) Msquit Life Cycle Kit

More information

Key Messages & RDE Priorities

Key Messages & RDE Priorities AWI Breech Strike R&D Technical Update Maritime Museum, Sydney 20 th August 2014 Geff Lindn Prgram Manager Prductivity and Animal Welfare AWI Key Messages & RDE Pririties Key Messages Breech Strike Preventin

More information

Intravenous Gentamicin Use in Adults (HARTFORD Guidance)

Intravenous Gentamicin Use in Adults (HARTFORD Guidance) Bacrund This plicy cvers the use f intravenus (IV) gentamicin in adults using the HARTFORD dsing guidance. Evidence fr this dsing regimen is prvided belw. The plicy is fr the use f gentamicin fr the treatment

More information

PYTHON FOR KIDS A Pl ayfu l I ntrodu ctio n to Prog r am m i ng J a s o n R. B r i g g s

PYTHON FOR KIDS A Pl ayfu l I ntrodu ctio n to Prog r am m i ng J a s o n R. B r i g g s PYTHON FO R K I D S A P l ay f u l I n t r o d u c t i o n to P r o g r a m m i n g Jason R. Briggs 4 Drawing with Turtles A turtle in Python is sort of like a turtle in the real world. We know a turtle

More information

APPLICATION FOR LIVE ANIMAL USE IN TEACHING AT COASTAL ALABAMA COMMUNITY COLLEGE

APPLICATION FOR LIVE ANIMAL USE IN TEACHING AT COASTAL ALABAMA COMMUNITY COLLEGE APPLICATION FOR LIVE ANIMAL USE IN TEACHING AT COASTAL ALABAMA COMMUNITY COLLEGE MARK WITH AN X IN THE BOX FOR ONE OF THE FOLLOWING AND TYPE YOUR CURRENT PROTOCOL NUMBER IF NEEDED: New applicatin Amendment

More information