PracHub
QuestionsPremiumLearningGuidesCheatsheetNEWCoaches

Quick Overview

This question evaluates SQL data-manipulation and analytical skills, including aggregation, conditional counting, distinct counts, date-based grouping, and percentage calculations on event logs.

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

Analyze Group Call Adoption Using SQL Queries

Company: Meta

Role: Data Scientist

Category: Data Manipulation (SQL/Python)

Difficulty: Medium

Interview Round: Technical Screen

CALL_LOGS | call_id | user_id | call_start | call_end | is_group_call | participant_cnt | | 101 | 12 | 2023-08-01 10:00:00 | 2023-08-01 10:15:00 | 0 | 2 | | 102 | 34 | 2023-08-01 10:05:00 | 2023-08-01 10:30:00 | 1 | 4 | | 103 | 56 | 2023-08-01 11:00:00 | 2023-08-01 11:20:00 | 1 | 3 | | 104 | 12 | 2023-08-02 09:00:00 | 2023-08-02 09:10:00 | 0 | 2 | | 105 | 78 | 2023-08-02 09:15:00 | 2023-08-02 09:40:00 | 1 | 5 | ##### Scenario A messaging app is launching a new "group call" feature. You have access to historical call data and need to quantify early adoption of the feature. ##### Question Using the call_logs table, write SQL to: For each calendar day, return (a) total calls, (b) total group calls, (c) unique callers who initiated a group call, and (d) percentage of calls that are group calls. List all days where group-call percentage is below 10%. ##### Hints DATE(call_start), COUNT(*), SUM(is_group_call), COUNT(DISTINCT CASE WHEN is_group_call=1 THEN user_id END)

Quick Answer: This question evaluates SQL data-manipulation and analytical skills, including aggregation, conditional counting, distinct counts, date-based grouping, and percentage calculations on event logs.

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)