PracHub
QuestionsCoachesLearningGuidesInterview Prep

Quick Overview

This question evaluates data manipulation and metrics-definition skills, emphasizing SQL and Python proficiency for aggregating user activity and joining app metadata within analytics workflows.

  • medium
  • Meta
  • Data Manipulation (SQL/Python)
  • Data Scientist

Find the most-used app

Company: Meta

Role: Data Scientist

Category: Data Manipulation (SQL/Python)

Difficulty: medium

Interview Round: Onsite

You work on Oculus app engagement analytics. ## Tables ### `user_activity` - `user_id` (BIGINT) - `date` (DATE) — day of activity (assume UTC unless otherwise specified) - `app_id` (INT) - `session_id` (VARCHAR) - `duration` (INT) — session duration in seconds ### `apps` - `app_id` (INT, PK) - `app_name` (VARCHAR) - `app_category` (VARCHAR) Relationship: `user_activity.app_id` → `apps.app_id`. ## Task For the **last 7 days** (inclusive) relative to a provided `:as_of_date`, identify the **“most used app.”** 1) Write a SQL query that returns the most-used app using **one clear definition** of “most used” (e.g., **number of sessions** or **total time spent**). 2) In 2–3 sentences, explain the pros/cons of at least **two** plausible definitions (e.g., sessions vs. total time vs. unique users). ### Output Return exactly one row with at least: - `app_id` - `app_name` - your chosen usage metric (e.g., `session_cnt` or `total_duration_seconds`) Assume ties do **not** need a deterministic tie-breaker unless you choose to add one.

Quick Answer: This question evaluates data manipulation and metrics-definition skills, emphasizing SQL and Python proficiency for aggregating user activity and joining app metadata within analytics workflows.

Last updated: Mar 29, 2026

Loading coding console...

PracHub

Master your tech interviews with 8,500+ real questions from top companies.

Product

  • Questions
  • Learning Tracks
  • Interview Guides
  • Resources
  • Premium
  • For Universities
  • Student Access

Browse

  • By Company
  • By Role
  • By Category
  • Topic Hubs
  • SQL Questions
  • AI Coding Questions
  • Compare Platforms
  • Discord Community

Support

  • support@prachub.com
  • (916) 541-4762

Legal

  • Privacy Policy
  • Terms of Service
  • About Us

© 2026 PracHub. All rights reserved.

Related Coding Questions

  • Calculate Daily Survey Response Rates by Country - Meta (medium)
  • Compare Survey Satisfaction for New and Established Users - Meta (medium)
  • Find A Low-Quality Annotator From Label Data - Meta (hard)
  • Compute ad impression conversion rates - Meta (medium)
  • Count unconnected posts and reactions - Meta (medium)