Linkedin Data Manipulation (SQL/Python) Interview Questions
Practice the exact questions companies are asking right now.

"10 years of experience but never worked at a top company. PracHub's senior-level questions helped me break into FAANG at 35. Age is just a number."

"I was skeptical about the 'real questions' claim, so I put it to the test. I searched for the exact question I got grilled on at my last Meta onsite... and it was right there. Word for word."

"Got a Google recruiter call on Monday, interview on Friday. Crammed PracHub for 4 days. Passed every round. This platform is a miracle worker."

"I've used LC, Glassdoor, and random Discords. Nothing comes close to the accuracy here. The questions are actually current — that's what got me. Felt like I had a cheat sheet during the interview."

"The solution quality is insane. It covers approach, edge cases, time complexity, follow-ups. Nothing else comes close."

"Legit the only resource you need. TC went from 180k -> 350k. Just memorize the top 50 for your target company and you're golden."

"PracHub Premium for one month cost me the price of two coffees a week. It landed me a $280K+ starting offer."

"Literally just signed a $600k offer. I only had 2 weeks to prep, so I focused entirely on the company-tagged lists here. If you're targeting L5+, don't overthink it."

"Coaches and bootcamp prep courses cost around $200-300 but PracHub Premium is actually less than a Netflix subscription. And it landed me a $178K offer."

"I honestly don't know how you guys gather so many real interview questions. It's almost scary. I walked into my Amazon loop and recognized 3 out of 4 problems from your database."

"Discovered PracHub 10 days before my interview. By day 5, I stopped being nervous. By interview day, I was actually excited to show what I knew."

"I recently cleared Uber interviews (strong hire in the design round) and all the questions were present in prachub."
"The search is what sold me. I typed in a really niche DP problem I got asked last year and it actually came up, full breakdown and everything. These guys are clearly updating it constantly."
Write SQL for rankings, state, and aggregations
You are given several independent datasets. For each dataset, write the required SQL query (ANSI SQL is fine). Assume dates are in UTC and DATE column...
Analyze member video posting behavior by country
You are given member profile data and video posting events. Tables members - memberid INT (PK) - country VARCHAR - join_date DATE video_posts - post_d...
Compute each member’s current notification status
You have two tables describing LinkedIn members’ push notification settings. Tables status — each member’s latest setting as of 2020-01-31 - member_id...
Compute article-type diversity per user and histogram
You track article views and article metadata. Tables article_views - user_id INT - article_id INT - view_date DATE articles - article_id INT (PK) - ar...
Find top countries by population per continent
Table world_population - continent VARCHAR - country VARCHAR - population BIGINT Assume each row is a country’s latest population and (continent, coun...
Determine Final Notification Status
You are given two tables that describe LinkedIn members' push-notification settings. status(member_id INT, status VARCHAR) - Contains each member's la...
[SQL] Job Ad Metrics with Applicant Filter
Job Ad Metrics Analysis Task Table Structure Table: job_activity job_id INT candidate_id INT activity_type VARCHAR -- can be 'view' or 'apply' Requi...
Determine current notification status
You are given two tables about members' push-notification settings. Table 1: status_snapshot - member_id INT - status STRING — either 'on' or 'off' Th...
Device Status without Timestamps
Table: article_views article_id INT author_id INT viewer_id INT view_dt DATE Count authors who have never viewed any of their own articles. On 20...
Find top countries per continent
You are given a table world_population that contains one row per country for a single population snapshot. Schema: - continent STRING - country STRING...
Analyze Video Posting Activity
You are given two tables about user video uploads. video_posts(post_date DATE, member_id INT, video_length INT) - One row per uploaded video. - video_...
Analyze video posting activity
You are given two tables about members and video uploads. Table 1: video_posts - post_date DATE — UTC calendar date of the upload - member_id INT - vi...
Count viewed article types
You are given two tables about article views. Table 1: article_views - user_id INT - article_id INT - view_date DATE — UTC calendar date of the view T...
Find Top Countries per Continent
You are given a country population snapshot table: world_population(continent VARCHAR, country VARCHAR, population BIGINT) Each row represents the lat...
Count Article Types Viewed
You are given article view events and article metadata. article_views(user_id INT, article_id INT, view_date DATE) - One row per article view event. a...
Identify and Flag Bot Traffic in Online Forum
PVE +----------+-----------+ | memberId | timestamp | +----------+-----------+ | 101 | 169100123 | | 102 | 169100225 | | 101 | 16910030...
Identify Top Contributors by Recent Post Count
posts +----+---------+---------------------+ | id | user_id | created_at | +----+---------+---------------------+ | 1 | 101 | 2023-09-01...