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

Size: px
Start display at page:

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

Transcription

1 Background Information HOMEWORK ASSIGNMENT Over the course of a given week, the vast majority of Americans watch at least some amount of television. Since most television shows are paid for by the sales of advertising, both broadcasters and advertisers have a vested interest in knowing who is watching each television show. Nielsen Media Research conducts surveys on a weekly basis to calculate the ratings for television shows. The calculated ratings are used for a variety of purposes including deciding which shows to air and when to schedule them, how much advertising costs, and when to buy advertising. Problem Statement In this project, we wish to create a database to store and analyze television show ratings data for the top 20 most-watched shows in a given week. Project Instructions IMPORTANT: Complete the below steps in the order they are given. Completing the steps out of order may complicate the project or result in an incorrect result. 1. Begin by creating a new Microsoft Access database named lastname_firstname_ntrp.accdb. 2. We would like to begin by making a table to store the television networks. a. Create a table named Networks to store the names of the television networks and their abbreviations. Designate the abbreviation as primary key. b. Enter records for all networks below. HINT: The Networks table will contain 6 records. Network Name National Broadcasting Company American Broadcasting Company Columbia Broadcasting System Fox Broadcasting Company CW Television Network Public Broadcasting Service Network Abbreviation NBC ABC CBS FOX CW PBS 3. We need to store information on various television show genres. a. Create a table named Genres to store the show genres. Include a separate field (other than the genre) to serve as primary key. Page 1 of 7 Version 14.3

2 b. Enter records into the Genres table corresponding to the below genres. HINT: The Genres table will contain 6 records. Comedy Drama Sports Reality Action News 4. There is nothing to do for this step. Please proceed to the next step. 5. To finish adding our dataset, we must store information about the shows. a. Create a table named Shows to store information on each of our shows (listed below under Step 5b). Some requirements for this table appear below. IMPORTANT: Completely define the Shows table before entering records. i. For the primary key, use an AutoNumber-type field to store an ID number. ii. Create a text field to store the abbreviation for the show s network (e.g., FOX for the show Family Guy). iii. iv. For the network abbreviation, create a relationship to the primary key of the Networks table to indicate which network airs each show. Enforce referential integrity and enable cascade updates, but do not enable cascade deletes. Provide a field to store the name of the television show. Using a lookup field to the Genres table, allow the user to specify the show genre. The user should be able to select the full name of the genre (e.g., Drama ) from the lookup field dropdown list. The Lookup Wizard will create a relationship automatically to the Genres table. Edit this relationship to enforce referential integrity and enable cascade updates, but do not enable cascade deletes. v. Provide a fixed-type number field with 1 decimal place to store the show s rating. vi. vii. Provide a field formatted as a percentage with 1 decimal place to store the show s viewer share. Include a field to store the number of viewers. Page 2 of 7 Version 14.3

3 viii. Create a lookup field that will allow us to specify the day that the show aired. You must provide the possible values shown below: ix. Sunday Monday Tuesday Wednesday Thursday Friday Saturday Create a date/time field to store the start time of the show. Represent the time in the medium time format (e.g., 10:22 PM ). Page 3 of 7 Version 14.3

4 b. Enter the below show data into your Shows table as appropriate. The below information is from the week of February 6-12, HINT: The Shows table will contain 20 records. Ntwk Show Genre Rtng Share Viewers Day Time CBS Grammy Awards Reality % 39,909,000 Sun 8:00pm CBS NCIS Drama % 20,976,000 Tue 8:00pm FOX American Idol- Reality % 19,325,000 Wed 8:00pm Wednesday FOX American Idol- Reality % 18,132,000 Thu 8:00pm Thursday NBC Voice Reality % 17,844,000 Mon 8:00pm CBS NCIS:Los Angeles Drama % 16,266,000 Tue 9:00pm CBS The Big Bang Theory Comedy % 16,206,000 Thu 8:00pm CBS Person of Interest Drama % 15,138,000 Thu 9:00pm CBS The Mentalist Drama % 14,678,000 Thu 10:00pm CBS 60 Minutes News % 14,254,000 Sun 7:00pm CBS Criminal Minds Drama % 13,306,000 Wed 9:00pm CBS Two and a Half Men Comedy % 13,000,000 Mon 9:00pm ABC Modern Family Comedy % 12,899,000 Wed 9:00pm CBS Unforgettable Drama % 11,863,000 Tue 10:00pm CBS Blue Bloods Drama % 11,822,000 Fri 10:00pm CBS 2 Broke Girls Comedy % 11,467,000 Mon 8:30pm NBC Smash Drama % 11,443,000 Mon 10:00pm CBS Mike & Molly Comedy % 10,954,000 Mon 9:31pm CBS CSI Drama % 10,884,000 Wed 10:00pm CBS ROB Comedy % 10,742,000 Wed 8:31pm 6. Create separate queries to provide the information requested below. Name each query after the step in which it appears (e.g., name the query in Step 6a as Query6A ). HINT: Run your queries to test them. Make sure that they display all and only the records that you would expect to appear. a. Create a query that lists all show names, their full network name, full genre name, ratings, viewer shares, number of viewers, air day and air time. Sort by ratings and then by viewer share, both in descending order. HINT: This query returns 20 records. Page 4 of 7 Version 14.3

5 b. Create a query that lists show names, their full network name, ratings and the number of viewers. Only display shows with a rating of at least 3.0 but not more than 6.0. Sort by network and then by rating, both in ascending order. HINT: This query returns 12 records. c. Create a query that lists each genre name, the number of shows within that genre, and the total number of viewers for that genre. Your results must include all genres, even if they have no shows. Sort by the total number of viewers in descending order. HINT: This query returns 6 records. d. Create a query that displays each full network name and the average of the ratings for that network s shows. Format the average as a fixed-type number with 2 decimal places. Sort by the full network name in ascending order. HINT: This query returns 4 records. e. Create a query that lists all shows with their names, ratings, viewer shares, and number of viewers. You must also create a calculated field that estimates the total number of households watching, which can be determined from the rating value. You can calculate the number of households watching using the formula: ([Shows. Rating] ) Sort the results by the number of viewers and then the number of households, both in descending order. HINT: This query returns 20 records. 7. Using the Form Wizard, create a form with subform. The main form should display the full network name. The subform must display a datasheet with all Shows table fields. Name the main form NetworkData and the subform NetworkDataSubform. Page 5 of 7 Version 14.3

6 8. Using the Report Wizard, create a report to show the results of Query6A. Display all fields from the query. View by genre and sort by show name in ascending order. Use a stepped layout and landscape page orientation. Name the report ShowSummary. NOTE: Several columns on the generated report might be too narrow to display the full text. You should manually adjust the column widths if needed. 9. Create a table named AnalysisQuestions. This table will need to be able to store which question is being answered and your answer to that question in each record. Answer four of the five below questions, one question per record. Specifically indicate the question you are answering for each record. a. How does Nielsen select the participants who track their viewing so that the ratings can be generated? Do you think the method used gives accurate results for the number of viewers for the shows? b. In looking at the top 20 shows listed, only one of the shows aired on a Friday or Saturday. Why do you think this might be the case? c. In addition to overall viewer figures, Nielsen tracks viewers by various demographics including age and gender. Why might one want to use this demographic information? For example, why might it matter if a show has many female teenage viewers but few male viewers in their forties? d. Four times a year, advertising rates are set based on ratings recorded during sweeps periods. Do you think that measuring viewers just at certain times of the year like this gives accurate overall results? Why or why not? e. Average television show ratings have been decreasing over time. What are some possible causes for this? 10. Run the Compact and Repair Database utility on your database. Page 6 of 7 Version 14.3

7 Curriculum Information Project Type Microsoft Access database Relationship to GEC Objective 2 In addition to providing basic research and data analysis skills, this assignment allows students to explore the economics of mass media and how changing technologies can have a financial impact on advertising. Relationship to GEC Objective 4 Most individuals watch at least some amount of television each week. This assignment helps expose students to how networks determine which shows remain on the air and how advertisers choose when to purchase advertising. Grading Rubric This project will be worth 60 points and will be graded based upon the following components. The instructor may adjust the below values as he or she feels appropriate: Steps 2a-b 4.5 points total Steps 6a-e 4.5 points each Steps 3a-b 4.5 points total Step 7 3 points Step 5a 6 points Step 8 3 points Step 5b 4.5 points Steps 9a-e (pick 4 of 5) 3 points each Acknowledgments Nielsen ratings information was taken from weekly,00.html and is used under fair-use provisions of copyright law. Page 7 of 7 Version 14.3

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

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

More information

/ 1 3 B r o a d c a s t S e a s o n : Weeks One through Four 9/24/12 10/21/12

/ 1 3 B r o a d c a s t S e a s o n : Weeks One through Four 9/24/12 10/21/12 2 0 1 2 / 1 3 B r o a d c a s t S e a s o n : Weeks One through Four 9/24/12 10/21/12 0 Strategic Intelligence National Television Report A combination of eroding audiences for returning shows and the

More information

Television Audience 2010 & 2011

Television Audience 2010 & 2011 Television Audience 2010 & 2011 Overview The 51 st edition of Television Audience continues your collection of TV Audience reports. This report continues to include annual trends of population and television

More information

myevnts SYNDICATION QUICK START GUIDE AUGUST 2013

myevnts SYNDICATION QUICK START GUIDE AUGUST 2013 myevnts SYNDICATION QUICK START GUIDE AUGUST 2013 myevnts myevnts is The Nielsen Company s names collection tool. Clients can use this web-based product to enter, maintain, and release program lineup information

More information

STOCK MARKET DOWN, NEW MEDIA UP

STOCK MARKET DOWN, NEW MEDIA UP FOR RELEASE: SUNDAY, NOVEMBER 9, 1997, 4:00 P.M. STOCK MARKET DOWN, NEW MEDIA UP FOR FURTHER INFORMATION CONTACT: Andrew Kohut, Director Beth Donovan, Editor Greg Flemming, Survey Director Pew Research

More information

- Seven is number 1 for total viewers in primetime on primary channels across the current television season.

- Seven is number 1 for total viewers in primetime on primary channels across the current television season. 16 November 2015 Seven Network Ratings Report Week 46: 8 November 14 November 2015 Seven is number 1 in 2015 - Seven is number 1 for total viewers in primetime on primary channels across the current television

More information

CABLE NATION: Video Advertising Update

CABLE NATION: Video Advertising Update RATINGS CABLE NATION: Video Advertising Update INTERNET INTERNET GENRES welcome Your ask was simple In recent meetings with agencies and advertisers the request of Cable was to Give me a simple, comprehensive

More information

- Seven is number 1 for total viewers in primetime across the current television season.

- Seven is number 1 for total viewers in primetime across the current television season. 22 July 2013 Seven Network Ratings Report Week 29: 14 July 20 July 2013 Seven is number 1 in 2013. - Seven is number 1 for total viewers in primetime across the current television season. - 7TWO is number

More information

Welcome from Mickey. It s no secret that video is a go-to strategy for consumer marketers.

Welcome from Mickey. It s no secret that video is a go-to strategy for consumer marketers. TV Buying Basics Welcome from Mickey It s no secret that video is a go-to strategy for consumer marketers. It s obvious why. Sight, sound, and motion create a powerful brand experience, while digital targeting

More information

NETWORK PRIMETIME & OTT PROGRAMMING Flash #5-15 November 2017

NETWORK PRIMETIME & OTT PROGRAMMING Flash #5-15 November 2017 NETWORK PRIMETIME & OTT PROGRAMMING Flash #5-15 November 2017 The 2017-18 primetime season has reached a point where the networks have solidified their winning nights, where the strongest established programs

More information

- Seven wins Wednesday, Thursday, Friday and Saturday in primetime on primary channels.

- Seven wins Wednesday, Thursday, Friday and Saturday in primetime on primary channels. 4 August 2014 Seven Network Ratings Report Week 31: 27 July 2 August 2014 Seven wins in primetime. - Seven delivers in primetime in a week of major events. - Seven is number 1 for total viewers on primary

More information

UCLA School of Film, Television and Digital Media FTV 183a. Producing 1: Film and Television Development

UCLA School of Film, Television and Digital Media FTV 183a. Producing 1: Film and Television Development 1 UCLA School of Film, Television and Digital Media FTV 183a. Producing 1: Film and Television Development Instructor: Alex Franklin Title: Lecturer in Film and Television Email: alexfranklin@ucla.edu

More information

TV Today. Lose Small, Win Smaller. Rating Change Distribution Percent of TV Shows vs , Broadcast Upfronts 1

TV Today. Lose Small, Win Smaller. Rating Change Distribution Percent of TV Shows vs , Broadcast Upfronts 1 Rating Change Distribution Percent of TV Shows 27-28 vs. -, Broadcast Upfronts 1 TV Today Figure 1 27-28 18% 18% 29% 24% 11% Lose Small, Win Smaller 3 out of 4 weekly broadcast shows lost up to 1% of their

More information

Are You There, Chelsea?

Are You There, Chelsea? DIANA JACOBSON 321 SE 3 rd Street, Apt. E4 Phone: 561-901-6633 Gainesville, FL 32601 diana.m.jacobson@ufl.edu Are You There, Chelsea? Source: http://images.zap2it.com/images/tv-ep01419091/are-you-there-chelsea.jpg

More information

Syndication April 2006

Syndication April 2006 1 Syndication 2006 April 2006 Syndicated Network Television Association 2 Syndication 2006 Strong Growth Clutter Advantage Improving Brand ROI Year-long Consistency Delivering Younger Viewers 3 Syndication

More information

- Seven is number 1 for total viewers in primetime on primary channels across the current television season.

- Seven is number 1 for total viewers in primetime on primary channels across the current television season. 30 November 2015 Seven Network Ratings Report Week 48: 22 November 28 November 2015 Seven is number 1 in 2015 - Seven is number 1 for total viewers in primetime on primary channels across the current television

More information

MULTIPLE- SCREEN VIEWING: SPORT: THE WORLD CUP AND SPORTS VIEWING 1 ENGLAND V CROATIA (ITV) - WEDNESDAY JULY 11TH 2018

MULTIPLE- SCREEN VIEWING: SPORT: THE WORLD CUP AND SPORTS VIEWING 1 ENGLAND V CROATIA (ITV) - WEDNESDAY JULY 11TH 2018 1 MULTIPLE- SCREEN VIEWING: AN INTRODUCTION TO HOW PEOPLE WATCH TELEVISION ACROSS FOUR SCREENS September 2018 UNDER EMBARGO UNTIL 00.01, SEPTEMBER 25TH 2018 A train journey across the UK is enough to hint

More information

AUSTRALIAN MULTI-SCREEN REPORT QUARTER

AUSTRALIAN MULTI-SCREEN REPORT QUARTER AUSTRALIAN MULTI-SCREEN REPORT QUARTER 02 Australian viewing trends across multiple screens Since its introduction in Q4 2011, The Australian Multi- Screen Report has tracked the impact of digital technologies,

More information

Deep Inlet Schedule 2016

Deep Inlet Schedule 2016 Deep Inlet Schedule 2016 2016 Deep Inlet Forecast: 1,782,000 chum Range (892,000 2,664,000) Note: This document reflects pre season planning. Always refer to Note: This document reflects pre season planning.

More information

- Seven is number 1 for total viewers in primetime on primary channels across the current television season.

- Seven is number 1 for total viewers in primetime on primary channels across the current television season. 24 November 2014 Seven Network Ratings Report Week 47: 16 November 22 November 2014 Seven is number 1 in 2014 - Seven is number 1 for total viewers in primetime on primary channels across the current television

More information

BBC RADIO 5 LIVE: AN AUDIENCE PERSPECTIVE

BBC RADIO 5 LIVE: AN AUDIENCE PERSPECTIVE This WordCloud was established in response to the question: What is the first word that comes to mind when you think of BBC Radio 5 Live? BBC RADIO 5 LIVE: AN AUDIENCE PERSPECTIVE BRITAINTHINKS OPINION

More information

POV: Making Sense of Current Local TV Market Measurement

POV: Making Sense of Current Local TV Market Measurement March 7, 2012 # 7379 To media agency executives, media directors and all media committees. POV: Making Sense of Current Local TV Market Measurement This document is intended to raise awareness around the

More information

India Peoplemeter Update VII

India Peoplemeter Update VII India Peoplemeter Update VII TAM - India Peoplemeter Update, v 1.1 August, 2008 Page 0 of 11 I. Introduction It may surprise many when we say that this is the third year of digital television data for

More information

Where Are They Now? A Follow-up To Our Breaking News Story. August 2015

Where Are They Now? A Follow-up To Our Breaking News Story. August 2015 Where Are They Now? A Follow-up To Our Breaking News Story August 2015 Where Are They Now? Two years ago we developed an analysis that revealed the older-skewing, overly-cluttered, hyper-competitive environment

More information

Digital Timer. 1 About your Slimline Digital Timer. 2 Mechanism Dimensions. Cat No. D817SLIMDP Instruction Manual

Digital Timer. 1 About your Slimline Digital Timer. 2 Mechanism Dimensions. Cat No. D817SLIMDP Instruction Manual Digital Timer Cat No. D817SLIMDP Instruction Manual 1 About your Slimline Digital Timer This 7 day digital timer can be set with up to 16 programs. Each of these can be set to repeat daily, weekly, daily

More information

Digital Ad. Maximizing TV Stations' Revenues. The Digital Opportunity. A Special Report from Media Group Online, Inc.

Digital Ad. Maximizing TV Stations' Revenues. The Digital Opportunity. A Special Report from Media Group Online, Inc. Maximizing TV Stations' Digital Ad The Digital Opportunity TV is an enviable position compared to almost all other traditional media in the digital age: an increasing number of TV households, a 96.5% penetration

More information

NPR Weekend Programs

NPR Weekend Programs NPR Weekend Programs Spring 2011 Reality has a way of eventually getting your attention In This Report Weekend programming is critical to NPR stations. In fact, the level of radio listening on Saturday

More information

Video over the Internet Can we break the Net? CBS Interactive

Video over the Internet Can we break the Net? CBS Interactive Video over the Internet Can we break the Net? Mark Kortekaas CTO CBS Interactive mkortekaas@cbs.com IP Television From Wikipedia: IPTV (Internet Protocol Television) is a system where a digital television

More information

Syndicated Television: The Daytime Leader

Syndicated Television: The Daytime Leader Syndicated Television: The Daytime Leader Is Growing +2.5% Syndication Day Network Day -5.1% while network day is declining Source: Nielsen W25-54 AA/GAA (000) October-March 2004/05 vs. 2003/04 The Majority

More information

- Seven is number 1 for total viewers in primetime on primary channels across the current television season.

- Seven is number 1 for total viewers in primetime on primary channels across the current television season. 23 November 2015 Seven Network Ratings Report Week 47: 15 November 21 November 2015 Seven is number 1 in 2015 - Seven is number 1 for total viewers in primetime on primary channels across the current television

More information

Sunrise leads in breakfast television and The Morning Show leads in morning television across the current television year. - Seven News 1.

Sunrise leads in breakfast television and The Morning Show leads in morning television across the current television year. - Seven News 1. 9 October 2017 Seven Network Ratings Report Week 40: 1 October 7 October 2017 Seven is number one in 2017 Seven is number 1 in primetime in the current television year. Seven + 7TWO + 7mate + 7flix combine

More information

The Shepherd s Life by James Rebanks adapted by Chris Monks

The Shepherd s Life by James Rebanks adapted by Chris Monks The Shepherd s Life by James Rebanks adapted by Chris Monks Fri 25 March Sat 23 April 2016 THE SHEPHERD S LIFE COMMUNITY CAST We re looking for 26 local performers to join us in creating the world premiere

More information

Contents Penetration of Technology Television is ubiquitous Slide 4 Australians love their TV

Contents Penetration of Technology Television is ubiquitous Slide 4 Australians love their TV Free TV Today Contents Penetration of Technology Television is ubiquitous Slide 4 Australians love their TV Slide 5 Time Spent with Media Time spent watching TV unchanged Slide 6 The TV set dominates our

More information

- Seven is number 1 for total viewers in primetime across the current television season.

- Seven is number 1 for total viewers in primetime across the current television season. 1 July 2013 Seven Network Ratings Report Week 26: 23 June 29 June 2013 Seven is number 1 in 2013. - Seven is number 1 for total viewers in primetime across the current television season. Seven + 7TWO +

More information

MMS Golden Rules Official calculation methodology - technical approach Including time shift viewing and new format RV3 Version

MMS Golden Rules Official calculation methodology - technical approach Including time shift viewing and new format RV3 Version MMS Golden Rules Official calculation methodology - technical approach Including time shift viewing and new format RV3 Version 2012-06-25 MMS Golden Rules are intended for - Heavy users of people meter

More information

Jackson High School Band Syllabus Mrs. Michele M. Monigold

Jackson High School Band Syllabus Mrs. Michele M. Monigold 2018-19 Jackson High School Band Syllabus Mrs. Michele M. Monigold mnm2jc@jackson.sparcc.org 330-834-4553 I. Course Description, Objectives and Fees Band (marching and concert) is a full-year educational

More information

australian multi-screen report QUARTER 2, 2012 trends in video viewership beyond conventional television sets

australian multi-screen report QUARTER 2, 2012 trends in video viewership beyond conventional television sets australian multi-screen report QUARTER 2, trends in video viewership beyond conventional television sets VIDEO CONTENT ACROSS MULTIPLE SCREENS Australians watched more than 104 hours of video per month

More information

http://waterheatertimer.org/woods-timers-and-manuals-old.html#hpm 1 About your Slimline Digital Timer This 7 day digital timer can be set with up to 16 programs. Each of these can be set to repeat daily,

More information

UNIVERSITY OF CAMBRIDGE INTERNATIONAL EXAMINATIONS General Certificate of Education Ordinary Level

UNIVERSITY OF CAMBRIDGE INTERNATIONAL EXAMINATIONS General Certificate of Education Ordinary Level UNIVERSITY OF CAMBRIDGE INTERNATIONAL EXAMINATIONS General Certificate of Education Ordinary Level *0192736882* STATISTICS 4040/12 Paper 1 October/November 2013 Candidates answer on the question paper.

More information

CLASSIFIED ADVERTISING RATE CARD #71

CLASSIFIED ADVERTISING RATE CARD #71 YOUR CITY YOUR REGION YOUR WORLD 15 Kearney Square P.O. Box 1477 Lowell, Massachusetts 01853 Telephone: 978-458-7100 Fax: 978-970-4723 lowellsun.com The Lowell Sun covers an area that is on a major economic

More information

The RTDNA/Hofstra University Annual Survey found that 2009 meant another year of TV

The RTDNA/Hofstra University Annual Survey found that 2009 meant another year of TV TV Staffing and News... 2010 by Bob Papper The RTDNA/Hofstra University Annual Survey found that 2009 meant another year of TV news doing more with less. All told, 400 people in local TV news lost their

More information

Nielsen Local Monthlies API Release 1.0 Documentation

Nielsen Local Monthlies API Release 1.0 Documentation Nielsen Local Monthlies API Release 1.0 Documentation Endpoint Details: https://api.developer.nielsen.com/watchapi/local/monthlies/api/v1 Rate limit: 3 calls per second Authentication Instructions: To

More information

Modeling television viewership

Modeling television viewership Modeling television viewership The Nielsen ratings are the best known measures of viewership of television shows. These ratings form the basis for the setting of advertising rates, and are thus crucial

More information

TEAMWORK MAKES THE DREAM WORK BATTER UP!!!

TEAMWORK MAKES THE DREAM WORK BATTER UP!!! RAYMOND J LOCKHART ELEMENTARY SCHOOL WELCOMES YOU TO PARP (Parents As Reading Partners) Raymond J. Lockhart PTA is proud to introduce this year s PARP program TEAMWORK MAKES THE DREAM WORK PARP is a statewide

More information

NETWORK PRIMETIME & OTT PROGRAMMING Flash #6-2 May 2018

NETWORK PRIMETIME & OTT PROGRAMMING Flash #6-2 May 2018 NETWORK PRIMETIME & OTT PROGRAMMING Flash #6-2 May 2018 With the May sweep, the 2018 Fall Upfronts and the end of the 2017-18 season upon us, here is a look at where the new Winter/Spring series fit into

More information

Nielsen National TV Analytics API Beta Technical Reference

Nielsen National TV Analytics API Beta Technical Reference Nielsen National TV Analytics API Beta Technical Reference Authorization API POST Request URL: https://api.developer.nielsen.com/watchapi/oauth/token Header Name Authorization (required) string Base64

More information

Cool Off With Premium Video Content: How Viewers are Beating The Heat During Summer Months

Cool Off With Premium Video Content: How Viewers are Beating The Heat During Summer Months Cool Off With Premium Video Content: How Viewers are Beating The Heat During Summer Months Contents Summer Video Viewing 4 Reach 5-7 Days tuned-in 8 Summer Streaming 9-11 Summer Binging 12 Time spent by

More information

AUSTRALIAN MULTI-SCREEN REPORT QUARTER

AUSTRALIAN MULTI-SCREEN REPORT QUARTER AUSTRALIAN MULTI-SCREEN REPORT QUARTER 02 Australian viewing trends across multiple screens The edition of the Australian Multi-Screen Report provides the latest estimates of technologies present in Australian

More information

Community Choirs in Australia

Community Choirs in Australia Introduction The Music in Communities Network s research agenda includes filling some statistical gaps in our understanding of the community music sector. We know that there are an enormous number of community-based

More information

Sunday Maximum All TV News Big Four Average Saturday

Sunday Maximum All TV News Big Four Average Saturday RTNDA/Ball State University Survey 2004 Additional Data: Newsroom Staffing and Amount of News Television Hours of Local TV News Per Day TV News Budgets: Up, Down or Same? TV News Profitability by Size

More information

How Young Children Are Watching TV: From the June 2011 Rating Survey on Young Children s TV Viewing

How Young Children Are Watching TV: From the June 2011 Rating Survey on Young Children s TV Viewing How Young Children Are Watching TV: From the June 2011 Rating Survey on Young Children s TV Viewing March,2012 By Kyoko Tsukamoto Introduction This paper reports on the results from the Rating Survey on

More information

2017 Fall Conservatory Audition Form

2017 Fall Conservatory Audition Form Thank you for your interest in Conservatory Florida Rep. We are thrilled that you will be auditioning. In order to come prepared for your audition please read all material included in this audition packet.

More information

ECE302H1S Probability and Applications (Updated January 10, 2017)

ECE302H1S Probability and Applications (Updated January 10, 2017) ECE302H1S 2017 - Probability and Applications (Updated January 10, 2017) Description: Engineers and scientists deal with systems, devices, and environments that contain unavoidable elements of randomness.

More information

MEMBER APPRECIATION WEEK MAY SCHEDULE OF EVENTS

MEMBER APPRECIATION WEEK MAY SCHEDULE OF EVENTS MAY 15-21 SCHEDULE OF EVENTS MON TUES WED THURS FRI SAT SUN Pirate Themed Craft Superhero Themed Craft Animal Themed Craft Beach Themed Craft Spring Themed Craft 8AM-5PM : KidZone Animal Themed Craft 8AM-5PM

More information

Northern Dakota County Cable Communications Commission ~

Northern Dakota County Cable Communications Commission ~ Northern Dakota County Cable Communications Commission ~ Cable Subscriber Survey April 2014 This document presents data, analysis and interpretation of study findings by Group W Communications, L.L.C.

More information

Local content is a key driver of sales

Local content is a key driver of sales Local content is a key driver of sales About One TV in Cambodia One TV is the biggest digital terrestrial pay tv operator in Cambodia. Signal coverage area is about 75% Who is One TV subscriber? One TV

More information

CIS Pre Test. Multiple Choice Identify the choice that best completes the statement or answers the question.

CIS Pre Test. Multiple Choice Identify the choice that best completes the statement or answers the question. CIS Pre Test Multiple Choice Identify the choice that best completes the statement or answers the question. 1. The default view in Word is. a. Print Layout view c. Web Layout view b. Headline view d. Outline

More information

CABLE NATION: Summer 2014 No Vacation for Cable SOCIAL TV TIME SPENT CONTACT US

CABLE NATION: Summer 2014 No Vacation for Cable SOCIAL TV TIME SPENT CONTACT US CABLE NATION: Summer 2014 No Vacation for Cable HIGHLIGHTS MONTHLY RATINGS RATINGS TREND 2013 BROADCAST SHOWS RETURNING BROADCAST PROGRAMS 2014 CABLE PROGRAMS SOCIAL TV TIME SPENT CONTACT US HIGHLIGHTS

More information

TOP TV PROGRAMS SPRING 2018

TOP TV PROGRAMS SPRING 2018 TOP TV PROGRAMS SPRING 2018 GENERAL PRIME-TIME TV SCHEDULE MAIN CHANNELS SPRING 2018 MONDAY TUESDAY WEDNESDAY THURSDAY FRIDAY SATURDAY SUNDAY btv NOVA btv NOVA btv NOVA btv NOVA btv NOVA btv NOVA btv NOVA

More information

bwresearch.com twitter.com/bw_research facebook.com/bwresearch

bwresearch.com twitter.com/bw_research facebook.com/bwresearch 2725 JEFFERSON STREET, SUITE 13, CARLSBAD CA 92008 50 MILL POND DRIVE, WRENTHAM, MA 02093 T (760) 730-9325 F (888) 457-9598 bwresearch.com twitter.com/bw_research facebook.com/bwresearch TABLE OF CONTENTS

More information

You must have: Pen, HB pencil, eraser, calculator, ruler, protractor.

You must have: Pen, HB pencil, eraser, calculator, ruler, protractor. Write your name here Surname Other names Pearson Edexcel Award Statistical Methods Level 1 Calculator allowed Centre Number Candidate Number Wednesday 10 May 2017 Morning Time: 1 hour 30 minutes You must

More information

Installation and Operation Manual. YMP Series Signal Programmer

Installation and Operation Manual. YMP Series Signal Programmer Installation and Operation Manual YMP Series Signal Programmer February 2006 YMP Series Clock/Signal Programmer Installation and Operation Manual YMP Series Clock/Signal Programmers YMP YMP02 YMP04 YMP06

More information

How Young Children Are Watching TV: From the June 2012 Rating Survey on Young Children s TV Viewing

How Young Children Are Watching TV: From the June 2012 Rating Survey on Young Children s TV Viewing How Young Children Are Watching TV: From the June Rating Survey on Young Children s TV Viewing By Chie Sekine Introduction This paper reports on the results from the Rating Survey on Young Children s TV

More information

2015 SEPTEMBER 23 FLASH REPORT #2 THE LAUGHS BEGIN ARE THE RATINGS BROKE?

2015 SEPTEMBER 23 FLASH REPORT #2 THE LAUGHS BEGIN ARE THE RATINGS BROKE? FLASH REPORT #2 2015 SEPTEMBER 23 THE LAUGHS BEGIN As we begin the second week of syndication premieres, we are not only looking back at last week s performances, but looking ahead with anticipation at

More information

A Brief History of WJZ TV

A Brief History of WJZ TV A Brief History of WJZ TV WJZ s first day of broadcasting was on November 1, 1948 as WAAM. The station was originally owned by Radio-Television of Baltimore Inc. Channel 13 was originally an ABC affiliate,

More information

Residuals Informational Meeting. Los Angeles March 24, 2016

Residuals Informational Meeting. Los Angeles March 24, 2016 Residuals Informational Meeting Los Angeles March 24, 2016 What Are Residuals? Original Compensation Additional Compensation for Distribution and Exhibition beyond that covered by Original Compensation

More information

Finalized June 8, 2018

Finalized June 8, 2018 2018 2019 Master Schedule MONTH DAY DATE ACTIVITY TIME JUNE M,T,W 18,19,20 SUMMER WORKSHOP-ALL 8-12 / 1-5 JUNE M,T,W 18,19,20 GUARD SECTIONAL 8-12 / 5-9 JULY M,T,W 9,10,11 DRILL WORKSHOP-ALL 8-12 JULY

More information

Submission to Inquiry into subscription television broadcasting services in South Africa. From Cape Town TV

Submission to Inquiry into subscription television broadcasting services in South Africa. From Cape Town TV Submission to Inquiry into subscription television broadcasting services in South Africa From Cape Town TV 1 1. Introduction 1.1 Cape Town TV submits this document in response to the invitation by ICASA

More information

IDO World Modern & Contemporary Championships 2018

IDO World Modern & Contemporary Championships 2018 WEDNESDAY, 05.12.2018 JUDGES MEETING 9:00 10:00 WEDNEDAY, 05.12.2018 ANNUAL MODERN & CONTEMPORARY DANCE COMMITTEE MEETING AFTER THE COMPETITION WEDNESDAY, 05.12.2018 CHECK IN OFFICE 8:00-13:00 14:00-20:00

More information

Media Comparisons 2012 Persons

Media Comparisons 2012 Persons Media Comparisons 2012 Persons Television Reaches More People Each Day than Any Other Medium Television 88,3 Internet 73,1 Radio Newspaper Mobile Phone Magazines 27,8 24,8 36,1 58,8 % Reached Yesterday

More information

TV Data Report: Time Shifting. alphonso.tv

TV Data Report: Time Shifting. alphonso.tv TV Data Report: Time Shifting alphonso.tv Introduction Digital Video Recorders (DVRs) are as common as coffee makers in today's home. Mobile devices and the web have made TV content ultraaccessible for

More information

PYRAMID ( ) TERMS AND CONDITIONS OF THE OFFER FROM. Southeastern Ohio TV System (COMPANY) WHIZ-TV (STATION) Zanesville, OH (MARKET)

PYRAMID ( ) TERMS AND CONDITIONS OF THE OFFER FROM. Southeastern Ohio TV System (COMPANY) WHIZ-TV (STATION) Zanesville, OH (MARKET) TERMS AND CONDITIONS OF THE OFFER FROM Southeastern Ohio TV System (COMPANY) WHIZ-TV (STATION) Zanesville, OH (MARKET) For the Distribution Broadcast Rights to the Columbia TriStar Domestic Television

More information

AUSTRALIAN MULTI-SCREEN REPORT

AUSTRALIAN MULTI-SCREEN REPORT AUSTRALIAN MULTISCREEN REPORT TRENDS IN VIDEO VIEWERSHIP BEYOND CONVENTIONAL TELEVISION SETS QUARTER 2 VIDEO CONTENT ACROSS MULTIPLE SCREENS The latest edition of the Australian MultiScreen Report ( )

More information

2007 Canadian Chinese Media Monitor

2007 Canadian Chinese Media Monitor 2007 Canadian Chinese Media Monitor METHODOLOGY A total of 1,200 telephone interviews were conducted among Chinese Canadians who are 18 years of age or older. 600 interviews were completed in Vancouver

More information

myevnts SYNDICATION FUNDAMENTALS ATTENDEE GUIDE 2013

myevnts SYNDICATION FUNDAMENTALS ATTENDEE GUIDE 2013 myevnts SYNDICATION FUNDAMENTALS ATTENDEE GUIDE 2013 IMPORTANT INFORMATION 1.) myevnts software page link: http://en-us.nielsen.com/sitelets/cls/myevnts.html. 2.) For technical assistance, call the NIELSEN

More information

Cinderella Audition Packet

Cinderella Audition Packet Cinderella Audition Packet Thank you for auditioning for Sierra School of Performing Arts upcoming musical production of Cinderella! Below is information you will need regarding auditions, rehearsals and

More information

2007 Canadian Chinese Media Monitor

2007 Canadian Chinese Media Monitor 2007 Canadian Chinese Media Monitor METHODOLOGY A total of 1,200 telephone interviews were conducted among Chinese Canadians who are 18 years of age or older. 600 interviews were completed in Vancouver

More information

Printed Documentation

Printed Documentation Printed Documentation Table of Contents INTRODUCTION... 1 Technical Support... 1 Overview... 2 GETTING STARTED... 3 Inventory Folders for Rental Items... 3 Rental Service Folders... 4 Equipment Inventory

More information

Table of Contents. iii

Table of Contents. iii Rental Table of Contents Introduction... 1 Technical Support... 1 Overview... 2 Getting Started... 3 Inventory Folders for Rental Items... 3 Rental Service Folders... 3 Equipment Inventory Folders...

More information

CTI 310 / C C 301: Introduction to Ancient Greece Unique #33755, MWF 2:00 3:00 PM Waggener Hall, Room 308

CTI 310 / C C 301: Introduction to Ancient Greece Unique #33755, MWF 2:00 3:00 PM Waggener Hall, Room 308 CTI 310 / C C 301: Introduction to Ancient Greece Unique #33755, 32910 MWF 2:00 3:00 PM Waggener Hall, Room 308 1 Instructor: Dr. Erik Dempsey Office: Waggener 401b Office Hours: Monday 3:00-4:30, Thursday

More information

Nielsen Examines TV Viewers to the Political Conventions. September 2008

Nielsen Examines TV Viewers to the Political Conventions. September 2008 Nielsen Examines TV Viewers to the Political Conventions September 8 Nielsen Examines TV Viewers to the Political Conventions, September 8 The 8 presidential race has already proven itself an historic

More information

Eagle Business Software

Eagle Business Software Rental Table of Contents Introduction... 1 Technical Support... 1 Overview... 2 Getting Started... 5 Inventory Folders for Rental Items... 5 Rental Service Folders... 5 Equipment Inventory Folders...

More information

How To Read The New ASCAP Domestic Distribution Statement for Publishers.

How To Read The New ASCAP Domestic Distribution Statement for Publishers. How To Read The New ASCAP Domestic Distribution Statement for Publishers. March 2010 Member Royalty Breakdown: Publisher Member With No Deductions or Other Payment Instructions ASCAP Logo and address Address

More information

myevnts FREQUENTLY ASKED QUESTIONS CABLE 2014

myevnts FREQUENTLY ASKED QUESTIONS CABLE 2014 myevnts FREQUENTLY ASKED QUESTIONS CABLE 2014 COMMON QUESTIONS WHEN DO MY LINE-UPS HAVE TO BE IN? Preliminary lineups for the upcoming week must be submitted to myevnts by Friday 5:00PM ETZ Preliminary

More information

Re-Count. A Follow-up To Last Year s Political Presentation With Updated 2014 Figures. August 2015

Re-Count. A Follow-up To Last Year s Political Presentation With Updated 2014 Figures. August 2015 Re-Count A Follow-up To Last Year s Political Presentation With Updated 2014 Figures August 2015 Local Broadcast TV Has Lost Almost One-Third of It s Total Rating Points Over the Last 10 Years The cycle-over-cycle

More information

OCMA PRIVATE EVENTS ORANGE COUNTY MUSEUM OF ART PRIVATE EVENTS SPACES

OCMA PRIVATE EVENTS ORANGE COUNTY MUSEUM OF ART PRIVATE EVENTS SPACES THE PAVILION With its 20-foot soaring ceiling, dramatic columns, and large roll-up glass doors, the Pavilion offers a striking indoor space for your event. The doors open out onto the Orange Court, creating

More information

myevnts FREQUENTLY ASKED QUESTIONS BROADCAST 2014

myevnts FREQUENTLY ASKED QUESTIONS BROADCAST 2014 myevnts FREQUENTLY ASKED QUESTIONS BROADCAST 2014 COMMON QUESTIONS WHEN DO MY LINE-UPS HAVE TO BE IN? Generally, transmission of feedpoint and lineup changes for previous day s programming (for broadcast

More information

EXECUTIVE REPORT. All Media Survey 2012 (2)

EXECUTIVE REPORT. All Media Survey 2012 (2) EXECUTIVE REPORT Market Research Services Ltd. All Media Survey 2012 (2) Contact Details: Market Research Services Ltd. 16 Cargill Avenue Kingston 10. Tele: 929-6311 or 929-6349 Fax: 960-7753 Email: mrsl@flowja.com

More information

Tariffs for the Sale of Commercial Communications in BNT Programs

Tariffs for the Sale of Commercial Communications in BNT Programs Tariffs for the Sale of Commercial Communications in BNT Programs Art.1 (1) Tariff for the Sale of Commercial Communications in BNT 1 based on guaranteed ratings of broadcasts at prices for a 30-second

More information

With great expectations, Dr. Shira Katsman Director of Orchestras, Interlake High School

With great expectations, Dr. Shira Katsman Director of Orchestras, Interlake High School Interlake High School Chamber Orchestra, Sinfonia & Concert Orchestra Instructor: Dr. Shira Katsman Room # : Theater/1313 Email: katsmans@bsd405.org Phone: 425-456-7216 Integrity All members of the Interlake

More information

WINTER MUSICAL PARTICIPATION FORM KEEP THIS PAGE

WINTER MUSICAL PARTICIPATION FORM KEEP THIS PAGE KEEP THIS PAGE Thank you for considering taking part in Bell Elementary s musical production of Shakespeare Rocks. It is our goal to make this an extraordinary experience for every participant. 1. We welcome

More information

First-Time Electronic Data on Out-of-Home and Time-Shifted Television Viewing New Insights About Who, What and When

First-Time Electronic Data on Out-of-Home and Time-Shifted Television Viewing New Insights About Who, What and When First-Time Electronic Data on Out-of-Home and Time-Shifted Television Viewing New Insights About Who, What and When Bob Patchen, vice president, Research Standards and Practices Beth Webb, manager, PPM

More information

Library Hours. Question: Can I get tax forms in the library?

Library Hours. Question: Can I get tax forms in the library? Library Hours Mon-Thu Friday Saturday Sunday 7:30 am 7:30 am 10:00 am Noon 10:30 pm 5:00 pm 5:00 pm 7:00 pm Can I get tax forms in the library? 1 Can I get tax forms in the library? YES Check Government

More information

Time out. Module. Discuss: What do you usually do in your free time? What kind of music/films do you like? What s in this module?

Time out. Module. Discuss: What do you usually do in your free time? What kind of music/films do you like? What s in this module? Module Time out 3 Discuss: What do you usually do in your free time? What kind of music/films do you like? What s in this module? Free-time activities A film survey Poster: Top Star talent contest A music

More information

Week 9: April 1-7: SPRING BREAK

Week 9: April 1-7: SPRING BREAK Chicano Studies 37: Chicana and Chicano Literature. SN 0183. ONLINE Spring 2017 Los Angeles Mission College. Professor José A. Maldonado Office Hours: Wednesdays 2 pm 600 pm (at the Centro Xican@ Bungalow

More information

WINTER THE LIBRARY THURSDAY, DECEMBER 13, 2018 Open House 6 PM to 8 PM Santa will visit at 7 PM for Pictures

WINTER THE LIBRARY THURSDAY, DECEMBER 13, 2018 Open House 6 PM to 8 PM Santa will visit at 7 PM for Pictures November & December 2018 Smithton Public District Newsletter WINTER PARTY @ THE LIBRARY THURSDAY, DECEMBER 13, 2018 Open House 6 to 8 Santa will visit at 7 for Pictures Come craft a DIY sled ornament,

More information

Circular Villages by Zoltan P. Dienes

Circular Villages by Zoltan P. Dienes Circular Villages. 2003 by Zoltan P. Dienes (Some fun with the associative rule or bunching rule ). Note: An earlier version of this paper was published in the New Zealand Mathematics Magazine in two parts:

More information

Chapter 3 Answers. Problem of the Week p a)

Chapter 3 Answers. Problem of the Week p a) Chapter 3 Answers Problem of the Week p. 3 1. a) How Much Water I Drank Number of glasses 8 b) For example, the data range would go from 3 to 1, so the broken line would move up. It would start at 3 and

More information

Acrylic Paint Bulb Ornaments. Grades Thursday, Dec 13. 4:00 5:00 pm

Acrylic Paint Bulb Ornaments. Grades Thursday, Dec 13. 4:00 5:00 pm SEE WHAT S HAPPENING THIS MONTH Lodi Senior Center Dec 7th Christmas Party at The Venetian in Garfield For more info, please contact the Senior Center at 973-472-6994 LODI MEMORIAL LIBRARY One Memorial

More information