PracHub
QuestionsPremiumLearningGuidesInterview PrepNEWCoaches

Quick Overview

This question evaluates competency in data manipulation and product analytics, focusing on transforming event-level call records into user-level engagement metrics using SQL or Python; the category is Data Manipulation (SQL/Python).

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

Analyze Recent User Engagement in Video Calls

Company: Meta

Role: Data Scientist

Category: Data Manipulation (SQL/Python)

Difficulty: Medium

Interview Round: Technical Screen

calls +-----------+-----------+---------------------+---------+---------+ | caller_id | callee_id | call_start_timestamp| country | call_id | +-----------+-----------+---------------------+---------+---------+ | 1 | 2 | 2023-03-10 14:05:00 | France | 101 | | 1 | 3 | 2023-03-12 09:20:00 | France | 102 | | 1 | 4 | 2023-03-13 18:40:00 | France | 103 | | 2 | 5 | 2023-03-13 12:10:00 | Germany | 104 | | 3 | 1 | 2023-03-14 07:55:00 | France | 105 | ##### Scenario Video-call product analytics team wants quick health checks on recent engagement. ##### Question How many users started a call with more than three different people in the last seven days? What percentage of yesterday’s DAUs located in France were on at least one video call? ##### Hints Think window functions, DISTINCT callee counts, filtering by DATE(call_start_timestamp).

Quick Answer: This question evaluates competency in data manipulation and product analytics, focusing on transforming event-level call records into user-level engagement metrics using SQL or Python; the category is Data Manipulation (SQL/Python).

Last updated: Mar 29, 2026

Loading coding console...

PracHub

Master your tech interviews with 7,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
  • 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

  • Compute ad impression conversion rates - Meta (medium)
  • Count unconnected posts and reactions - Meta (medium)
  • Count heavy callers in 7 days - Meta (medium)
  • Write SQL for call metrics - Meta (medium)
  • Write SQL for multi-account metrics - Meta (medium)