Consider this program with three procedures:

Size: px
Start display at page:

Download "Consider this program with three procedures:"

Transcription

1 Outline PA Page 1 Outlining Activation 9:43 AM Consider this program with three procedures:

2 Outline PA Page 2 PAC Here is the PAC for executing the previous program: #100 z 2 #200 y 7 x 19 #300 x 9 18 main #100 #400 x 6 12 ret #500 y 2 x 9 #600 x 4 8 ret 9 grampus stamble 7 #200 9 # #400 2 #500 4 # #700 #700 x 6 12 ret Console 19 9

3 Outline PA Page 3 Outlining PA 10: AM The rest of this lesson will explain a more compact way of paper checking the very same program. The call downs and return ups of the PAC will become the call indents and return outdents of an OUTLINE structure. The Local Contexts will be written directly in this OUTLINE instead of being in a separate column. The PAC line will become the outlines left margin line. The call commands will be written IN the outline - just above the indent that represents calling the callee.

4 Outline PA Page 4 Completed outline x = 19 out 19 stamble(6) x = 6 x = 12 ret x = out grampus(2) y = 2 stamble(4) x = 4 x = 8 ret 9 out 9 stamble(6) x = 6 x = 12 Ret x = out Console To the left is the completed Outline for executing the same program: The detailed construction of this outline is on the following pages. 19 9

5 Outline PA Page 5 main entry Entry to main procedure.

6 Outline PA Page 6 Init main's x Initialize the local variable z belonging to the main procedure's Local Context

7 Outline PA Page 7 Enter grampus Call and entry into procedure grampus Parameter VALUE is shown in parenthesies of call

8 Outline PA Page 8 Pass parameter Main's Local Context continues to exist but CANNOT be seen from inside the procedure grampus Initialize grampus parameter variable y with the value 7 passed from main.

9 Outline PA Page 9 Enter stamble Call and entry into procedure stamble Parameter VALUE is shown in parenthesies of call

10 Outline PA Page 10 Pass parameter Initialize stamble parameter variable x with the value 9 passed from grampus.

11 Outline PA Page 11 Update stamble's x Update local variable x in Local Context of stamble Hide previous value of x

12 Outline PA Page 12 Return from stamble Return from stamble back to grampus Destruction of Local Context belonging to stamble Function value returned from stamble - survives destruction of stamble Local Context

13 Outline PA Page Init grampus x x = 19 Initialization of grampus Local Context's working variable x - using value returned from call to the stamble function. Note that stamble had to be called BEFORE x could be initialized.

14 Outline PA Page 14 Output x = 19 out 19 Console 19

15 Outline PA Page 15 Re-enter stamble x = 19 out 19 stamble(6) x = 6 x = 12 Several Steps at Once: (1) Enter stamble passing parameter value 6 (2) initialize parameter variable x (3) update local variable x Console 19

16 Outline PA Page 16 More Steps x = 19 out 19 stamble(6) x = 6 x = 12 ret x = out updated below Console 19 Several steps at once: (1) return value from call to stamble (2) update grampus variable x (3) output

17 Outline PA Page 17 Return from grampus x = 19 out 19 stamble(6) x = 6 x = 12 ret x = out ALL GONE Console 19 Back in main procedure Just BEFORE next call to grampus.

18 Outline PA Page 18 Entry and init grampus x = 19 out 19 stamble(6) x = 6 x = 12 ret x = out grampus(2) y = 2 (1) Call grampus Passing value 2, Since main's variable z was 2. (2) Enter grampus (3) init parameter Console 19

19 Outline PA Page 19 Lots of steps x = 19 out 19 stamble(6) x = 6 x = 12 ret x = out grampus(2) y = 2 stamble(4) x = 4 x = 8 ret 9 out 9 stamble(6) x = 6 x = 12 Ret x = out Console 19 9 (1) call stamble with y+2 = 4 as param. value (2) stamble returns 9 (3) init grampus x from stamble's return value (4) output to console (5) call stamble again with 6 as param. value (6) stamble returns (7) update grampus's x from stamble's ret. value (8) output to console (9) grampus returns

20 Outline PA Page 20 Completed outline x = 19 out 19 stamble(6) x = 6 x = 12 ret x = out grampus(2) y = 2 stamble(4) x = 4 x = 8 ret 9 out 9 stamble(6) x = 6 x = 12 Ret x = out Console 19 9

Logic Model. When do you create a Logic Model? Create your LM at the beginning of an evaluation and review and update it periodically.

Logic Model. When do you create a Logic Model? Create your LM at the beginning of an evaluation and review and update it periodically. RRC Evaluation Tool Basket: Logic Model 1 Logic Model What is a Logic Model? A logic model is a series of if-then statements that outlines what you expect to happen in your program. For example, If these

More information

MUSIC 208 Homework 7-8

MUSIC 208 Homework 7-8 MUSIC 208 Homework 7-8 This project has four steps. 1. metronom.ck Create a metronome class using the Impulse with the BiQuad filter from Lab 8 to create the clicks. Beat one in every measure will be louder

More information

Introduction to SPSS: Defining Variables and Data Entry

Introduction to SPSS: Defining Variables and Data Entry Introduction to SPSS: Defining Variables and Data Entry You will be on this page after SPSS is started Click Cancel Choose variable view by clicking this button Type the name of the variable here Lets

More information

AUDIT OUTLINE INFORMATION SUMMARY

AUDIT OUTLINE INFORMATION SUMMARY AUDIT OUTLINE INFORMATION SUMMARY 1. External QA Each DAFNE centre will undergo an external audit visit every 3 years. The external audit visit will take place during a week that the centre being audited

More information

How HIV Works in Your Body

How HIV Works in Your Body How HIV Works in Your Body It helps to know what s going on with your virus What is HIV and how do people get it? The initials HIV stand for Human Immunodeficiency Virus meaning a virus that causes the

More information

Practical Performance and Personal Exercise Programme (PEP)

Practical Performance and Personal Exercise Programme (PEP) 7 Practical Performance and Personal Exercise Programme (PEP) When you have worked through this chapter, you will have developed knowledge and understanding of: what is required for the practical performance

More information

Hour 2: lm (regression), plot (scatterplots), cooks.distance and resid (diagnostics) Stat 302, Winter 2016 SFU, Week 3, Hour 1, Page 1

Hour 2: lm (regression), plot (scatterplots), cooks.distance and resid (diagnostics) Stat 302, Winter 2016 SFU, Week 3, Hour 1, Page 1 Agenda for Week 3, Hr 1 (Tuesday, Jan 19) Hour 1: - Installing R and inputting data. - Different tools for R: Notepad++ and RStudio. - Basic commands:?,??, mean(), sd(), t.test(), lm(), plot() - t.test()

More information

Intro to R. Professor Clayton Nall h/t Thomas Leeper, Ph.D. (University of Aarhus) and Teppei Yamamoto, Ph.D. (MIT) June 26, 2014

Intro to R. Professor Clayton Nall h/t Thomas Leeper, Ph.D. (University of Aarhus) and Teppei Yamamoto, Ph.D. (MIT) June 26, 2014 Intro to R Professor Clayton Nall h/t Thomas Leeper, Ph.D. (University of Aarhus) and Teppei Yamamoto, Ph.D. (MIT) June 26, 2014 Nall Intro to R 1 / 44 Nall Intro to R 2 / 44 1 Opportunities 2 Challenges

More information

Routine Quality Assurance Cookbook

Routine Quality Assurance Cookbook This Cookbook is a companion guide to the AIUM Routine Quality Assurance (QA) for Diagnostic Ultrasound Equipment document, which outlines the basic QA requirements for AIUM-accredited practices. The Guide

More information

[3]... [2]... [1]

[3]... [2]... [1] 1 Malaria is a disease that is estimated to kill around 80 people every hour worldwide. (a) The symptoms of malaria are caused by a single-celled organism belonging to the genus Plasmodium. (i) Plasmodium

More information

How_Scientific_Teams_Develop_New_Anti- Cancer_Drugs English mp4_ [00:00:00.00]

How_Scientific_Teams_Develop_New_Anti- Cancer_Drugs English mp4_ [00:00:00.00] How_Scientific_Teams_Develop_New_Anti- Cancer_Drugs English mp4_ [00:00:00.00] [00:00:20.09] KRISTINA MASSON: Welcome to our lesson on drug development and cancer. My name is Kristina, and I work here

More information

LESSON 4.6 WORKBOOK. Designing an antiviral drug The challenge of HIV

LESSON 4.6 WORKBOOK. Designing an antiviral drug The challenge of HIV LESSON 4.6 WORKBOOK Designing an antiviral drug The challenge of HIV In the last two lessons we discussed the how the viral life cycle causes host cell damage. But is there anything we can do to prevent

More information

Lesson: A Ten Minute Course in Epidemiology

Lesson: A Ten Minute Course in Epidemiology Lesson: A Ten Minute Course in Epidemiology This lesson investigates whether childhood circumcision reduces the risk of acquiring genital herpes in men. 1. To open the data we click on File>Example Data

More information

Updates to BridgeIT Reports (2017 UDS Reporting) RCHC Data Group Webinar By Ben Fouts, MPH July 11, 2017

Updates to BridgeIT Reports (2017 UDS Reporting) RCHC Data Group Webinar By Ben Fouts, MPH July 11, 2017 Updates to BridgeIT Reports (2017 UDS Reporting) RCHC Data Group Webinar By Ben Fouts, MPH July 11, 2017 Agenda 1. Introduction 2. Depression Screening and Follow-up 3. Cervical Cancer Screening 4. Blood

More information

Exercise: Practice inserting sample video clips and adjusting settings

Exercise: Practice inserting sample video clips and adjusting settings VISUAL LANGUAGE 2-day Condensed Workshop Training Agenda Pre-training Learning This workshop is a condensed version of the usual 3-day visual language experience to reduce registration costs and lessen

More information

Physical Education PHED1 (JAN11PHED101) General Certificate of Education Advanced Subsidiary Examination January 2011

Physical Education PHED1 (JAN11PHED101) General Certificate of Education Advanced Subsidiary Examination January 2011 Centre Number Surname Candidate Number For Examiner s Use Other Names Candidate Signature Examiner s Initials Physical Education General Certificate of Education Advanced Subsidiary Examination January

More information

Lesson Assessment Tool for Show Me Nutrition: Grade 3 Lesson 1: Getting to Know the Food Groups. Educator(s) Name (s): Sub-Contractor:

Lesson Assessment Tool for Show Me Nutrition: Grade 3 Lesson 1: Getting to Know the Food Groups. Educator(s) Name (s): Sub-Contractor: Washington State Snap-Ed Curriculum Fidelity for Continuous Improvement Lesson Assessment Tool for Show Me Nutrition: Grade 3 Lesson 1: Getting to Know the Food Groups Educator Self-Assessment Supervisor

More information

Anatomy and Physiology

Anatomy and Physiology Anatomy and Physiology: Page 1 of 31 Differing Abilities Anatomy and Physiology Supplementary Resources Handout 1: Male Reproductive System Handout 2: Male Anatomy Diagram Handout 3: Female Reproductive

More information

Transcript of the Perry Family Bible

Transcript of the Perry Family Bible Transcript of the Perry Family Bible (Note: No header at the top of this page) The age of Children Born To Thomas Curry and Rebecah his Wife Milo C Curry was born October the 18 th 1813 Barkley P Curry

More information

ISR Process for Internal Service Providers

ISR Process for Internal Service Providers ISR Process for Internal Service Providers Course Outline 1) Internal Service Request Process Overview Internal Service Requests (ISR) are created by the end user via the BUworks Central Portal Procurement

More information

GST: Step by step Build Diary page

GST: Step by step Build Diary page GST: At A Glance The home page has a brief overview of the GST app. Navigate through the app using either the buttons on the left side of the screen, or the forward/back arrows at the bottom right. There

More information

One-Way Independent ANOVA

One-Way Independent ANOVA One-Way Independent ANOVA Analysis of Variance (ANOVA) is a common and robust statistical test that you can use to compare the mean scores collected from different conditions or groups in an experiment.

More information

Monitoring gender equality and empowerment of women and girls: From MDGs to SDGs PAPA A. SECK, UN WOMEN

Monitoring gender equality and empowerment of women and girls: From MDGs to SDGs PAPA A. SECK, UN WOMEN Monitoring gender equality and empowerment of women and girls: From MDGs to SDGs PAPA A. SECK, UN WOMEN Outline 2 I. Difference between SDGs and MDGs II. Advances and remaining challenges in gender statistics

More information

Digital mammography imaging from Carestream Health solutions for great workflow, productivity, and patient care.

Digital mammography imaging from Carestream Health solutions for great workflow, productivity, and patient care. Digital Mammography Imaging on KODAK CR Systems Digital mammography imaging from Carestream Health solutions for great workflow, productivity, and patient care. Commercial distribution of the CR Mammography

More information

Installing and Testing JMonkeyEngine (jme)

Installing and Testing JMonkeyEngine (jme) Installing and Testing JMonkeyEngine (jme) Andrew Davison, ad@fivedots.coe.psu.ac.th July 31st 2014 This document is to help students in 242-515 Animation and Game Development (AGD) install the jmonkeyengine

More information

Winter Newsletter. President: Mr David Scott-Coombes University Hospital of Wales Cardiff

Winter Newsletter. President: Mr David Scott-Coombes University Hospital of Wales Cardiff President: Mr David Scott-Coombes University Hospital of Wales Cardiff Winter Newsletter Secretary: Mr Ashu Gandhi University Hospital of South Manchester President s Report Thank you to John Watkinson

More information

Mgr. Tetiana Korovchenko, Mgr. Jan Mandys, Ph.D. University of Pardubice

Mgr. Tetiana Korovchenko, Mgr. Jan Mandys, Ph.D. University of Pardubice Mgr. Tetiana Korovchenko, Mgr. Jan Mandys, Ph.D. University of Pardubice The article aims to outline the possibilities for measuring quality of life with regard to the practical use of this construct for

More information

Management Growth Strategies

Management Growth Strategies Management Growth Strategies The Critical Factors of Success Introduction The past is over, forget it. The future holds out hope, reach for it. (Charles R. Swindoll) Why are some people more successful

More information

DEMYSTIFYING THE SINGLE CENTRAL GONE IN METHODS A NEW APPROACH DENTAVANTGART DR. JON GURREA & AUGUST BRUGUERA

DEMYSTIFYING THE SINGLE CENTRAL GONE IN METHODS A NEW APPROACH DENTAVANTGART DR. JON GURREA & AUGUST BRUGUERA DENTAVANTGART VOLUME III, ISSUE #02 PIETRO VENEZIA MD, DDS & PASQUALE LACASELLA, ODT A NEW APPROACH JOSHUA POLANSKY DR. JON GURREA & AUGUST BRUGUERA DEMYSTIFYING THE SINGLE CENTRAL GONE IN METHODS 48 HOURS

More information

A quality control program for MR-guided focused ultrasound ablation therapy

A quality control program for MR-guided focused ultrasound ablation therapy JOURNAL OF APPLIED CLINICAL MEDICAL PHYSICS, VOLUME 3, NUMBER 2, SPRING 2002 A quality control program for MR-guided focused ultrasound ablation therapy Tao Wu* and Joel P. Felmlee Department of Radiology,

More information

Sergeant Joanne Archambault (Ret.) Kimberly A. Lonsway, PhD Patrick O Donnell, PhD Special Agent Lauren Ware, MFS. July 2017

Sergeant Joanne Archambault (Ret.) Kimberly A. Lonsway, PhD Patrick O Donnell, PhD Special Agent Lauren Ware, MFS. July 2017 Course Description Sergeant Joanne Archambault (Ret.) Kimberly A. Lonsway, PhD Patrick O Donnell, PhD Special Agent Lauren Ware, MFS July 2017 This comprehensive module explores the complex role of DNA

More information

Chapter 11 DEFINING AND ASSESSING LEARNING. Chapter 11 1

Chapter 11 DEFINING AND ASSESSING LEARNING. Chapter 11 1 Chapter 11 DEFINING AND ASSESSING LEARNING Chapter 11 1 THIS CHAPTER S CONCEPT PEOPLE WHO ASSESS LEARNING MUST MAKE INFERENCES FROM OBSERVING PERFORMANCE DURING PRACTICE AND TESTS Chapter 11 2 SESSION

More information

Unit 1: Introduction to the Operating System, Computer Systems, and Networks 1.1 Define terminology Prepare a list of terms with definitions

Unit 1: Introduction to the Operating System, Computer Systems, and Networks 1.1 Define terminology Prepare a list of terms with definitions AR Computer Applications I Correlated to Benchmark Microsoft Office 2010 (492490) Unit 1: Introduction to the Operating System, Computer Systems, and Networks 1.1 Define terminology 1.1.1 Prepare a list

More information

Two Factor Analysis of Variance

Two Factor Analysis of Variance BIOL 310 Two Factor Analysis of Variance In the previous discussions of analysis of variance (ANOVA), only one factor was involved. For example, in Chapter 7 the variable of interest in the sample problem

More information

Using Multi-Curve in Real-Ear Measurements on the 6500-CX Hearing Aid Analyzer

Using Multi-Curve in Real-Ear Measurements on the 6500-CX Hearing Aid Analyzer Using Multi-Curve in Real-Ear Measurements on the 6500-CX Hearing Aid Analyzer FRYE FRYE ELECTRONICS, INC. P.O. Box 23391 Tigard, OR 97281-3391 (503) 620-2722 (800) 547-8209 Fax: (503) 639-0128 www.frye.com

More information

CATCH Physical Activity to Positively Address Neurologically Based Behavioral Problems

CATCH Physical Activity to Positively Address Neurologically Based Behavioral Problems CATCH Physical Activity to Positively Address Neurologically Based Behavioral Problems Today s Moderator Peter Cribb, MEd National CATCH Director Michael & Susan Dell Center for Healthy Living The University

More information

Using SPSS for Correlation

Using SPSS for Correlation Using SPSS for Correlation This tutorial will show you how to use SPSS version 12.0 to perform bivariate correlations. You will use SPSS to calculate Pearson's r. This tutorial assumes that you have: Downloaded

More information

Major Functions of the Skeletal System

Major Functions of the Skeletal System Skeletal System Major Functions of the Skeletal System 1. Provide shape and support. 2. Enables you to move 3. Protects your organs 4. Produces blood cells 5. stores minerals and other materials until

More information

PERFECTIONISM Inwardly-Focused Outwardly-Focused

PERFECTIONISM Inwardly-Focused Outwardly-Focused PERFECTIONISM People who are perfectionistic have unrealistically high standards for themselves and/or other people, and therefore end up feeling like they or other people are never good enough. Since

More information

Journée industrielle PRIMES, 12 juin Nicolas Guillen, EDAP TMS France

Journée industrielle PRIMES, 12 juin Nicolas Guillen, EDAP TMS France Multi modality imaging for prostate cancer targeting and treatment Journée industrielle PRIMES, 12 juin 2014 Nicolas Guillen, EDAP TMS France Focal One device Focal One is the first device dedicated to

More information

Fruit or Vegetable? Focus Lesson: Fruit vs. Vegetable Facts

Fruit or Vegetable? Focus Lesson: Fruit vs. Vegetable Facts Focus Lesson: Fruit vs. Vegetable Facts Fruit or Vegetable? Materials: Lunch by Denise Fleming Fruits versus veggies video One orange (will be cut in half) Celery sticks Images of orange and celery growing

More information

Psychology Research Methods Lab Session Week 10. Survey Design. Due at the Start of Lab: Lab Assignment 3. Rationale for Today s Lab Session

Psychology Research Methods Lab Session Week 10. Survey Design. Due at the Start of Lab: Lab Assignment 3. Rationale for Today s Lab Session Psychology Research Methods Lab Session Week 10 Due at the Start of Lab: Lab Assignment 3 Rationale for Today s Lab Session Survey Design This tutorial supplements your lecture notes on Measurement by

More information

Exercise Verify that the term on the left of the equation showing the decomposition of "total" deviation in a two-factor experiment.

Exercise Verify that the term on the left of the equation showing the decomposition of total deviation in a two-factor experiment. Exercise 2.2.1 Verify that the term on the left of the equation showing the decomposition of "total" deviation in a two-factor experiment y ijk y = ( y i y ) + ( y j y ) + [( y ij y ) ( y i y ) ( y j y

More information

Managing Anger. More Practice With Bugs and I STOP'D 3 Cs F. Preparation. Vocabulary adrenaline

Managing Anger. More Practice With Bugs and I STOP'D 3 Cs F. Preparation. Vocabulary adrenaline Managing Anger More Practice With Bugs and I STOP'D 3 Cs F I care about myself. F I care about my community. Help students to understand and invite them to state clearly: I have the right to care about

More information

When/How to Update a ClinicalTrials.gov Record

When/How to Update a ClinicalTrials.gov Record When/How to Update a ClinicalTrials.gov Record When to Update a ClinicalTrials.gov Record? 1) Within 30 days of a change in: Locations Recruitment Status at any participating site (Opened, Suspended, Closed)

More information

Introduction to SPSS S0

Introduction to SPSS S0 Basic medical statistics for clinical and experimental research Introduction to SPSS S0 Katarzyna Jóźwiak k.jozwiak@nki.nl November 10, 2017 1/55 Introduction SPSS = Statistical Package for the Social

More information

Benchmark Dose Modeling Cancer Models. Allen Davis, MSPH Jeff Gift, Ph.D. Jay Zhao, Ph.D. National Center for Environmental Assessment, U.S.

Benchmark Dose Modeling Cancer Models. Allen Davis, MSPH Jeff Gift, Ph.D. Jay Zhao, Ph.D. National Center for Environmental Assessment, U.S. Benchmark Dose Modeling Cancer Models Allen Davis, MSPH Jeff Gift, Ph.D. Jay Zhao, Ph.D. National Center for Environmental Assessment, U.S. EPA Disclaimer The views expressed in this presentation are those

More information

ANOVA. Thomas Elliott. January 29, 2013

ANOVA. Thomas Elliott. January 29, 2013 ANOVA Thomas Elliott January 29, 2013 ANOVA stands for analysis of variance and is one of the basic statistical tests we can use to find relationships between two or more variables. ANOVA compares the

More information

LaPorte Graphic Standards

LaPorte Graphic Standards LAPORTE LOGO LAPORTE LOGO VARIATIONS Full Color Grayscale Black White CPAs & BUSINESS ADVISORS LOGO USE GUIDELINES: In no instance should LaPorte appear without mark In no instance should mark appear without

More information

TUM. Biocompounds II Concentration of Flavonols and Anthocyanidins in apple skin: Relation between Multiplex and HPLC values. Prof. Dr.

TUM. Biocompounds II Concentration of Flavonols and Anthocyanidins in apple skin: Relation between Multiplex and HPLC values. Prof. Dr. TUM Biocompounds II Concentration of Flavonols and Anthocyanidins in apple skin: Relation between Multiplex and HPLC values Prof. Dr. Treutter Dr. Rühmann Michele Lomonaco Flavonols Are derived from dihydroflavonols

More information

A Mentoring Program for Men Recovering from Life-Controlling Issues

A Mentoring Program for Men Recovering from Life-Controlling Issues A Mentoring Program for Men Recovering from Life-Controlling Issues And I will bring the blind by a way that they knew not; I will lead them in paths that they have not known: I will make darkness light

More information

Collateral Damage Estimation Course Syllabus. October 2015

Collateral Damage Estimation Course Syllabus. October 2015 Collateral Damage Estimation Course Syllabus October 2015 Joint Targeting School Joint Staff, J7 The Joint Staff Joint Targeting School 2088 Regulus Avenue Virginia Beach, VA 23461-2099 Joint Training

More information

Hashimoto's is an Autoimmune Disease, So What Is Going On With My Immune System?

Hashimoto's is an Autoimmune Disease, So What Is Going On With My Immune System? Hashimoto's is an Autoimmune Disease, So What Is Going On With My Immune System? Hashimoto's is the most common autoimmune disease in the United States, but very few doctors, alternative practitioners

More information

QUESTION PACK ASM 34. Administer Medication to Individuals and Monitor the Effects

QUESTION PACK ASM 34. Administer Medication to Individuals and Monitor the Effects 33 QUESTION PACK ASM 34 Administer Medication to Individuals and Monitor the Effects This pack is for individuals who are working towards a Health and Social Care Diploma at Level 2 & 3 Name:.. Date:.

More information

m r SUBMISSION CATEGORIES: SUICIDE PREVENTION MENTAL HEALTH MATTERS THROUGH THE LENS OF CULTURE ANIMATED SHORT SANAMENTE

m r SUBMISSION CATEGORIES: SUICIDE PREVENTION MENTAL HEALTH MATTERS THROUGH THE LENS OF CULTURE ANIMATED SHORT SANAMENTE l a u n n A h t x i The S e g n a h ng C t s i e t t n c o Dire a n d F i l m C m a r g o r P To keep up with the latest updates, visit: www.facebook.com/directingchangeca CALLING ALL YOUNG FILMMAKERS

More information

Chapter 1: Exploring Data

Chapter 1: Exploring Data Chapter 1: Exploring Data Key Vocabulary:! individual! variable! frequency table! relative frequency table! distribution! pie chart! bar graph! two-way table! marginal distributions! conditional distributions!

More information

CHAPTER 8 Estimating with Confidence

CHAPTER 8 Estimating with Confidence CHAPTER 8 Estimating with Confidence 8.1 Confidence Intervals: The Basics The Practice of Statistics, 5th Edition Starnes, Tabor, Yates, Moore Bedford Freeman Worth Publishers Confidence Intervals: The

More information

DATA SHEET LLINK TM -08 for IPG YLP series NEWSON NV Copyright Newson NV, A2G_LLink TM -08_03 page 1

DATA SHEET LLINK TM -08 for IPG YLP series NEWSON NV Copyright Newson NV, A2G_LLink TM -08_03 page 1 DATA SHEET LLINK TM -08 for IPG YLP series NEWSON NV Copyright Newson NV, 2000-2018 A2G_LLink TM -08_03 page 1 Table of Contents 1 CONNECTIONS LLINK TM... 3 1.1 COMPATIBILITY... 3 1.2 DIMENSIONS... 3 1.3

More information

SAMPLING ERROI~ IN THE INTEGRATED sysrem FOR SURVEY ANALYSIS (ISSA)

SAMPLING ERROI~ IN THE INTEGRATED sysrem FOR SURVEY ANALYSIS (ISSA) SAMPLING ERROI~ IN THE INTEGRATED sysrem FOR SURVEY ANALYSIS (ISSA) Guillermo Rojas, Alfredo Aliaga, Macro International 8850 Stanford Boulevard Suite 4000, Columbia, MD 21045 I-INTRODUCTION. This paper

More information

Binary Diagnostic Tests Paired Samples

Binary Diagnostic Tests Paired Samples Chapter 536 Binary Diagnostic Tests Paired Samples Introduction An important task in diagnostic medicine is to measure the accuracy of two diagnostic tests. This can be done by comparing summary measures

More information

Training Pull Down Menu

Training Pull Down Menu EXERCISE 10 Training Pull Down Menu PATRAN eferences Tools Training Help Properties Load Cases Exercise Fields 1 Analysis Results Insight XY Plot Exercise 2 Exercise 3 s)... 95 03:36:58 PM 5-Dec-95 03:38:15

More information

Investigating the Interaction of Organ Systems

Investigating the Interaction of Organ Systems Chapter Body Systems Chapter Science Investigation Investigating the Interaction of Organ Systems sheets of colored paper scissors tape Find Out Do this activity to find out how the body s systems interact

More information

ISEMIR An IAEA Tool for Radiation Protection Optimization in Interventional Cardiology and Industrial Radiography

ISEMIR An IAEA Tool for Radiation Protection Optimization in Interventional Cardiology and Industrial Radiography An IAEA Tool for Radiation Protection Optimization in Interventional Cardiology and Industrial Radiography Information System on Occupational Exposure in Medicine, Industry and Research What is? is an

More information

UNIT 2: LESSON #2 WARNING SIGNS OF USING/ABUSING SUBSTANCES

UNIT 2: LESSON #2 WARNING SIGNS OF USING/ABUSING SUBSTANCES UNIT 2: LESSON #2 WARNING SIGNS OF USING/ABUSING SUBSTANCES SPECIFIC EXPECTATIONS By the end of grade 8, students will: MATERIALS Healthy Living - C1.3 Identify and describe the warning signs of substance

More information

NEWS RELEASE. More than $1.2 million to bolster youth services in DTES

NEWS RELEASE. More than $1.2 million to bolster youth services in DTES For Immediate Release 2016CFD0022-000750 May 10, 2016 NEWS RELEASE More than $1.2 million to bolster youth services in DTES VANCOUVER Government is adding more than $1.2 million to enhance staffing and

More information

Lecture 10: Chapter 5, Section 2 Relationships (Two Categorical Variables)

Lecture 10: Chapter 5, Section 2 Relationships (Two Categorical Variables) Lecture 10: Chapter 5, Section 2 Relationships (Two Categorical Variables) Two-Way Tables Summarizing and Displaying Comparing Proportions or Counts Confounding Variables Cengage Learning Elementary Statistics:

More information

UNEQUAL CELL SIZES DO MATTER

UNEQUAL CELL SIZES DO MATTER 1 of 7 1/12/2010 11:26 AM UNEQUAL CELL SIZES DO MATTER David C. Howell Most textbooks dealing with factorial analysis of variance will tell you that unequal cell sizes alter the analysis in some way. I

More information

SRT-100 Skin cancer TReaTmenT Simplified

SRT-100 Skin cancer TReaTmenT Simplified SRT-100 Skin cancer treatment simplified More Patients, Few Choices Cases of skin cancer have been on the rise for decades, and are dramatically escalating as the population ages. According to the Centers

More information

APs & Synapses. Review & outline. Thought experiment. Inside. Outside

APs & Synapses. Review & outline. Thought experiment. Inside. Outside Review & outline APs & Synapses Chapters 2 & 3 Cells of the nervous system The blood brain barrier Membrane potential (at rest = -70mV) Sodium potassium pump Concentration Electrical Action potentials

More information

Motion Control for Social Behaviours

Motion Control for Social Behaviours Motion Control for Social Behaviours Aryel Beck a.beck@ntu.edu.sg Supervisor: Nadia Magnenat-Thalmann Collaborators: Zhang Zhijun, Rubha Shri Narayanan, Neetha Das 10-03-2015 INTRODUCTION In order for

More information

We will be following the USA W rules of performance to go along with the weightlifting portion of the competition.

We will be following the USA W rules of performance to go along with the weightlifting portion of the competition. Weightlifting rules: We will be following the USA W rules of performance to go along with the weightlifting portion of the competition. 2 THE TWO LIFTS 2.1 GENERAL In the sport of weightlifting the IWF

More information

Education and Training Committee 15 November 2012

Education and Training Committee 15 November 2012 Education and Training Committee 15 November 2012 Review of the process of approval of hearing aid dispenser pre-registration education and training programmes. Executive summary and recommendations Introduction

More information

Contour Diabetes app User Guide

Contour Diabetes app User Guide Contour Diabetes app User Guide Contents iii Contents Chapter 1: Introduction...5 About the CONTOUR DIABETES app...6 System and Device Requirements...6 Intended Use...6 Chapter 2: Getting Started...7

More information

INTRODUCTION TO COMBAT HUNTER B1E0795 STUDENT HANDOUT

INTRODUCTION TO COMBAT HUNTER B1E0795 STUDENT HANDOUT UNITED STATES MARINE CORPS THE BASIC SCHOOL MARINE CORPS TRAINING COMMAND CAMP BARRETT, VIRGINIA 22134-5019 INTRODUCTION TO COMBAT HUNTER B1E0795 STUDENT HANDOUT Introduction to Observation Techniques

More information

1. Laterality, Primary Site E:Lateral & Site conflict Laterality (295) = 0 _ 2 Primary Site (291) = C711 Date of Diagnosis (283) =

1. Laterality, Primary Site E:Lateral & Site conflict Laterality (295) = 0 _ 2 Primary Site (291) = C711 Date of Diagnosis (283) = Follow-up, Data Quality and Utilization Lesson 8 Page 5: Correcting the Edits Report Instructions: Use the spaces provided to fix the edit by providing the valid value for the incorrect data item. This

More information

IECEx Certificate of Conformity CESI

IECEx Certificate of Conformity CESI Description of the equipment: Luminaries (pendant lighting fixtures) series EV.., EW.., EWA.., are used in hazardous area, indoor and/or outdoor, where inflammable or explosive vapours gas or dust are

More information

IMPACT OF UNIVERSITY ADMISSION ON FRESHMEN'S EGOCENTRIC NETWORK. Yannick LEO PHD Student Team INRIA DANTE

IMPACT OF UNIVERSITY ADMISSION ON FRESHMEN'S EGOCENTRIC NETWORK. Yannick LEO PHD Student Team INRIA DANTE IMPACT OF UNIVERSITY ADMISSION ON FRESHMEN'S EGOCENTRIC NETWORK Yannick LEO PHD Student Team INRIA DANTE In collaboration with... Sami Jouaber Master Student ENS de Lyon INRIA Marton Karsai Ass. Professor

More information

Analysis of Variance: repeated measures

Analysis of Variance: repeated measures Analysis of Variance: repeated measures Tests for comparing three or more groups or conditions: (a) Nonparametric tests: Independent measures: Kruskal-Wallis. Repeated measures: Friedman s. (b) Parametric

More information

a Mud Puddles to Meteors mini-lesson

a Mud Puddles to Meteors mini-lesson spiders a Mud Puddles to Meteors mini-lesson spiders Although many people think of spiders as being a type of insect, they are actually their own animal, so to speak. In other words, despite having many

More information

CONTROLLED DRUGS ACCOUNTABLE OFFICER ANNUAL REPORT

CONTROLLED DRUGS ACCOUNTABLE OFFICER ANNUAL REPORT CONTROLLED DRUGS ACCOUNTABLE OFFICER ANNUAL REPORT 2015-16 Prepared by Anna Zamczyk GPhC 9708572 July 2016 Introduction Healthcare organisations have a responsibility to manage their controlled drugs responsibly

More information

AFTER ACTION REPORT/IMPROVEMENT PLAN

AFTER ACTION REPORT/IMPROVEMENT PLAN Measure 2.2.3 A Spokane Regional Health District H1N1 Response: October 24, 2009 AFTER ACTION REPORT/IMPROVEMENT PLAN April 9, 2010 This page is intentionally blank. HANDLING INSTRUCTIONS 1. The title

More information

Studying animal behavior

Studying animal behavior Studying animal behavior Examination of animal learning and behaviour Analyis and evaluation of the experiments ELUP students Experiment was accomplished by............ Teacher:... Date:... Goals of the

More information

WITH. The Next Step in Office MRI

WITH. The Next Step in Office MRI WITH The Next Step in Office MRI Introducing S-scan the Next Step in Office MRI Based on extensive customer feedback and years of engineering, Esaote has designed the S-scan with exp Technology, an optimized

More information

Introduction to Machine Learning. Katherine Heller Deep Learning Summer School 2018

Introduction to Machine Learning. Katherine Heller Deep Learning Summer School 2018 Introduction to Machine Learning Katherine Heller Deep Learning Summer School 2018 Outline Kinds of machine learning Linear regression Regularization Bayesian methods Logistic Regression Why we do this

More information

A SAS Macro to Present a Summary Table of the Number of Patients Having Experienced Adverse Events in a Clinical Trial

A SAS Macro to Present a Summary Table of the Number of Patients Having Experienced Adverse Events in a Clinical Trial A SAS Macro to Present a Summary Table of the Number of Patients Having Experienced Adverse Events in a Clinical Trial Christoph Gerlinger * and Ursula Franke ** * Laboratoires Fournier S.C.A. and ** biodat

More information

12/21/18. Strengths-Based Leadership for Teams. Leadership in the Professional World. Early Leadership Theory: Traits. Who is Eric Kaufman?

12/21/18. Strengths-Based Leadership for Teams. Leadership in the Professional World. Early Leadership Theory: Traits. Who is Eric Kaufman? Who is Eric Kaufman? Associate Professor & Extension Specialist in Department of Agricultural, Leadership, and Community Education Signature Themes: Analytical, Maximizer, Responsibility, Relator, Discipline

More information

A SAS sy Study of ediary Data

A SAS sy Study of ediary Data A SAS sy Study of ediary Data ABSTRACT PharmaSUG 2017 - Paper BB14 A SAS sy Study of ediary Data Amie Bissonett, inventiv Health Clinical, Minneapolis, MN Many sponsors are using electronic diaries (ediaries)

More information

Constructing a Bivariate Table:

Constructing a Bivariate Table: Introduction Bivariate Analysis: A statistical method designed to detect and describe the relationship between two nominal or ordinal variables (typically independent and dependent variables). Cross-Tabulation:

More information

I do not have any disclosures

I do not have any disclosures Alzheimer s Disease: Update on Research, Treatment & Care Clinicopathological Classifications of FTD and Related Disorders Keith A. Josephs, MST, MD, MS Associate Professor & Consultant of Neurology Mayo

More information

ASL English Interpretation Program. Study Guide. INTR 312 Intercultural Communication

ASL English Interpretation Program. Study Guide. INTR 312 Intercultural Communication ASL English Interpretation Program Study Guide INTR 312 Intercultural Communication Fall 2016 University of Northern Colorado American Sign Language English Interpretation Program Copyright 2016 by the

More information

2) The level of organization when different multiple types of tissues join together is called the

2) The level of organization when different multiple types of tissues join together is called the Package Title: Testbank Course Title: IHB10e Chapter Number: 1 Question type: Multiple Choice 1) The science dealing with body functions is called a) physiology. b) cytology. c) anatomy. d) histology.

More information

News English.com Ready-to-use ESL / EFL Lessons

News English.com Ready-to-use ESL / EFL Lessons www.breaking News English.com Ready-to-use ESL / EFL Lessons The Breaking News English.com Resource Book 1,000 Ideas & Activities For Language Teachers http://www.breakingnewsenglish.com/book.html Woman

More information

Genius File #5 - The Myth of Strengths and Weaknesses

Genius File #5 - The Myth of Strengths and Weaknesses Genius File #5 - The Myth of Strengths and Weaknesses By Jay Niblick There is a myth about strengths and weaknesses, one which states that we all naturally possess them. In reality, we don t. What we do

More information

Kimberly A. Lonsway, PhD, Heather Huhtanen and Sergeant Joanne Archambault (Ret.) July 2017

Kimberly A. Lonsway, PhD, Heather Huhtanen and Sergeant Joanne Archambault (Ret.) July 2017 Implementing VAWA Forensic Compliance Kimberly A. Lonsway, PhD, Heather Huhtanen and Sergeant Joanne Archambault (Ret.) Course Description The purpose of this module is to increase understanding of the

More information

Development Manager (Audiology and Health) 13 February March March 2018

Development Manager (Audiology and Health) 13 February March March 2018 POSITION STATEMENT: CHARGING AND INSURANCE TO COVER THE COST OF REPLACING OR REPAIRING OF ALL HEARING AND LISTENING EQUIPMENT PROVIDED BY NHS AND LOCAL AUTHORITIES Owner/s: Director Policy and Campaigns

More information

Review Questions in Introductory Knowledge... 37

Review Questions in Introductory Knowledge... 37 Table of Contents Preface..... 17 About the Authors... 19 How This Book is Organized... 20 Who Should Buy This Book?... 20 Where to Find Answers to Review Questions and Exercises... 20 How to Report Errata...

More information

Not Just Homelessness A Study of Out of Home Young People in Cork City

Not Just Homelessness A Study of Out of Home Young People in Cork City Not Just Homelessness A Study of Out of Home Young People in Cork City Paula Mayock and Nicola Carr Introduction This presents the key findings and policy and practice implications of Not Just Homelessness

More information

THIS PROBLEM HAS BEEN SOLVED BY USING THE CALCULATOR. A 90% CONFIDENCE INTERVAL IS ALSO SHOWN. ALL QUESTIONS ARE LISTED BELOW THE RESULTS.

THIS PROBLEM HAS BEEN SOLVED BY USING THE CALCULATOR. A 90% CONFIDENCE INTERVAL IS ALSO SHOWN. ALL QUESTIONS ARE LISTED BELOW THE RESULTS. Math 117 Confidence Intervals and Hypothesis Testing Interpreting Results SOLUTIONS The results are given. Interpret the results and write the conclusion within context. Clearly indicate what leads to

More information

Lesson 10: Conditional Relative Frequencies and Association

Lesson 10: Conditional Relative Frequencies and Association Exploratory Challenge 1: Interpreting Relative Frequency Data Interest in superheroes continues at Rufus King High School. The students who analyzed the data in the previous lesson decided to create a

More information

STAGES OF ADDICTION. Materials Needed: Stages of Addiction cards, Stages of Addiction handout.

STAGES OF ADDICTION. Materials Needed: Stages of Addiction cards, Stages of Addiction handout. Topic Area: Consequences of tobacco use Audience: Middle School/High School Method: Classroom Activity Time Frame: 20 minutes plus discussion STAGES OF ADDICTION Materials Needed: Stages of Addiction cards,

More information