Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Rolling Averages for DAU
00:00
5 left

Rolling Averages for DAU

MediumSQL · PostgreSQL

Problem

Given a specific schema, how would you calculate rolling averages for daily active users at Roblox?

Using the supplied schema, calculate the three-calendar-day rolling average of daily active users from January 1 through January 7, 2025. Treat users with no activity as zero for that date.

Output

  1. One row per calendar date in the requested range
  2. Columns: activity_date, daily_active_users, and rolling_3_day_average
  3. Include dates with no activity, order by activity_date ascending, and round the rolling average to two decimal places.

Schema

roblox_users
ColumnTypeDescription
user_idPKINTUnique Roblox user identifier
usernameVARCHAR(100)Roblox username
activity_events
ColumnTypeDescription
event_idPKINTUnique activity event identifier
user_idINTUser associated with the activity event
occurred_atTIMESTAMPTimestamp when the activity occurred
event_typeVARCHAR(50)Type of Roblox activity
Tablesroblox_usersactivity_events
Interviewer

Your question is Rolling Averages for DAU. Start with the requirements and the two tables in the Question tab.

Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.

You need to log in / sign up to run or submit.
CodePostgreSQL
You need to log in / sign up to run or submit.Ln 1
Run your query to see results here.