Skip to main content

Media Interview Questions

Media Interview Questions


VAST, or “Video Ad Serving Template,” is a script that gives video players information about which ad to play, how the ad should show up, how long it should last, and whether users are able to skip it.

VPAID (“Video Player Ad-Serving Interface Definition”) is just code that runs within video players. It’s what jazzes up a run-of-the-mill car ad and makes it an interactive one with features like overlays that let viewers click to read more. Advertisers like ads that trigger a response from viewers so they can measure their effectiveness.

MRAID, (Mobile Rich Media Ad Interface Definitions), a standard for rich-media ads that run in mobile apps.

IDFA is the abbreviation for identifier for advertisers on iPhones. An IDFA is somewhat analogous to an advertising cookie, in that it enables an advertiser to understand that a user of a phone has taken an action like a click or an app install. That is called ad tracking. IDFAs take the place of cookies in mobile advertising delivered to iOS devices because cookies are problematic in the mobile world.
Advertisers are naturally interested in understanding the anonymized individuals that take advertising actions. IDFAs (and their Android siblings, Android Advertising IDs) help an advertiser identify the specific phone where the ad action takes place.
UDID: Before IDFA, advertisers could track actions on iPhones using a permanent device identifier called UDID, or universal device ID

IDFA v. IDFV

You may also occasionally hear about an ID called IDFV. This stands for identifier for vendors. An IDFV is assigned and shared by all apps from the same company. Sometimes companies with multiple apps base their marketing efforts and analyses on IDFV, because they only change if a user uninstalls all apps from a particular vendor.
COPPA imposes certain requirements on operators of websites or online services directed to children under 13 years of age, and on operators of other websites or online services that have actual knowledge that they are collecting personal information online from a child under 13 years of age.
UUID: universally unique identifier (UUID) is a 128-bit number used to identify information in computer systems. The term globally unique identifier (GUID) is also used, typically in software created by Microsoft.




Comments

Popular posts from this blog

Learn GitHub

Learn GitHub git init git add file.txt git commit -m "my first commit" git remote add origin https://github.com/dansullivanma/devlops_data_sci.git git clone https://github.com/dansullivanma/devlops_data_sci.git

Garbage collection in Databricks

Clean up snapshots Delta Lake provides snapshot isolation for reads, which means that it is safe to run  OPTIMIZE  even while other users or jobs are querying the table. Eventually however, you should clean up old snapshots. You can do this by running the  VACUUM  command: VACUUM events You control the age of the latest retained snapshot by using the  RETAIN   <N>   HOURS  option: VACUUM events RETAIN 24 HOURS Test the garbage collection You can specify  DRY   RUN  to test the garbage collection and return a list of files to be deleted: VACUUM events DRY RUN Configure the retention threshold The  VACUUM  command removes any files that are no longer in the latest state of the transaction log for the table and are older than a retention threshold. The default threshold is 7 days, but you can specify an alternate retention interval. For example, to delete all stale files older t...

Z-Ordering

Z-Ordering in Databricks Z-Ordering is a technique to colocate related information in the same set of files. This co-locality is automatically used by Delta Lake on Databricks data-skipping algorithms to dramatically reduce the amount of data that needs to be read. To Z-Order data, you specify the columns to order on in the  ZORDER   BY  clause: OPTIMIZE events WHERE date >= current_timestamp () - INTERVAL 1 day ZORDER BY ( eventType ) You can specify multiple columns for  ZORDER   BY  as a comma-separated list. However, the effectiveness of the locality drops with each additional column. Z-Ordering on columns that do not have statistics collected on them would be ineffective and a waste of resources as data skipping requires column-local stats such as min, max, and count. You can configure statistics collection on certain columns by re-ordering columns in the schema and/or increasing the number of columns to collect s...