Event Tracking and Virtual Pages Flashcards

1
Q

Which of the following allow more accurate time reporting for sites which make extensive use of Flash, Ajax or other interactive technologies?

A
  1. Virtual Pageviews
  2. Event Tracking

Virtual page views and event tracking are the two ways in which websites that make extensive use of Flash, Ajax or other interactive technologies can more accurately track time spent on pages and the site. Virtual pageviews and events are generated with timestamps, which Google Analytics can compare with the timestamp of the original page load to calculate time on page, at least partially.

Without virtual pageviews or events, time on page would be calculated only when another page is accessed, which may not happen frequently if the page is designed to allow rich user interaction without additional page loads.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Which of the following is the method that you can use to create a virtual pageview?

A

_trackPageview or ga(‘send’,’pageview’)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Where can you find virtual pageviews in Google Analytics reporting?

A

Behavior > Pages

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Which of the following are best practices when creating virtual pageviews?

A
  1. Adopt a consistent naming convention
  2. If you need to separate virtual and actual pageviews, you can create duplicate views and apply Include or Exclude filters based on request URI
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What are the Values for Event Tracking?:

And which are required

A

Category - Required
Action - Required
Label
Value

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Which of the following is NOT an argument of the _trackEvent or ga(‘send’,’event’) method?

Label
Value
Action
Format

A

Format

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Of the arguments to _trackEvent or ga(‘send’,’event’), which are optional?

A

Value

Label

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

How do you assign a value to an event?

A

Use the optional Value argument for _trackEvent or ga(‘send’,’event’)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What is the maximum number of events that Google Analytics can track per visit?

A

500

Google Analytics tracks a maximum of 500 events per session (so it’s best to avoid tracking highly repetitive events such as mouse movements).

This limitation on events is part of the general limit of 500 overall requests, or “hits”, to Google Analytics per session. Hits include pageviews, events, Ecommerce transactions, and social actions.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Which of the following elements are included in the Google Analytics event tracking model?

A

value, category, action

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What is the purpose of creating a virtual pageview?

A

To track a visitor activity that does not generate a regular pageview

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

During your checkout process, the request URI of the page does not change for the last 3 steps. Which of the following is the recommended way to distinguish between these 3 steps in Google Analytics?

A

On each step, call _gaq.push([‘_trackPageview’, ‘/checkout/step-x’]) or ga(‘send’,’pageview’,’/checkout/step-x’)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

If the three separate screens of your checkout process don’t correspond with separate URLs (that is, the screen changes but the page URL does not), which method could you call with each screen update to enable a funnel and goal for the checkout?

A

_trackPageview or ga(‘send’,’pageview’)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Which Google Analytics method would be most suitable for determining which of two buttons on a page receives more clicks?

A

_trackEvent or ga(‘send’,’event’)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Which of the following is required for event tracking in Google Analytics?

  1. Enable event tracking within your view settings
  2. modify the tracking code on each page
  3. add event tracking code to each action
  4. all of the above
A
  1. add event tracking code to each action

To generate event data in Google Analytics, you must add special code to the actions that you want to track as events.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly