PracHub
QuestionsPremiumLearningGuidesCheatsheetNEWCareers

Quick Overview

This question evaluates proficiency in data manipulation, specifically aggregation and deduplication of user activity, time-based filtering of recent events, and computation of proportions using SQL or Python.

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

Identify Unique Callers and French Customer Call Percentage

Company: Meta

Role: Data Scientist

Category: Data Manipulation (SQL/Python)

Difficulty: Medium

Interview Round: Technical Screen

video_calls +---------+-----------+--------------+---------------------+---------------+ | call_id | caller_id | recipient_id | start_ts | caller_country| +---------+-----------+--------------+---------------------+---------------+ | 1 | 101 | 202 | 2023-05-01 10:00:00 | US | | 2 | 101 | 303 | 2023-05-02 11:15:10 | US | | 3 | 202 | 101 | 2023-05-02 12:00:00 | FR | | 4 | 202 | 404 | 2023-05-03 09:55:00 | FR | | 5 | 303 | 101 | 2023-05-04 14:00:00 | GB | +---------+-----------+--------------+---------------------+---------------+ ##### Scenario Querying the video_calls table to answer recent usage questions. ##### Question How many unique callers have called more than three distinct people in the last seven days? What percentage of customers from France made at least one video call yesterday? ##### Hints Use COUNT DISTINCT, GROUP BY caller_id, HAVING clauses, date filters, and ratio calculations with CASE.

Quick Answer: This question evaluates proficiency in data manipulation, specifically aggregation and deduplication of user activity, time-based filtering of recent events, and computation of proportions using SQL or 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
  • Careers
  • 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)