ZipRecruiter Interview Questions

ZipRecruiter Interview Guides

Click or hover over a slice to explore questions for that topic.
Data Structures & Algorithms
(71)
SQL
(56)
Machine Learning
(48)
Probability
(30)
Statistics
(20)

ZipRecruiter Interview Questions

Practice for the ZipRecruiter interview with these recently asked interview questions.

QuestionTopicDifficulty
Data Structures & Algorithms
Easy

Given a list of numbers nums and an integer window_size, write a function moving_window to find the moving window average.

Example 1:

Input:

nums = [1,2,3,4,5,6]
window_size = 3

Output:

def moving_window(input, window_size) -> [1, 1.5, 2, 3, 4, 5]

Example 2:

Input:

nums = [1,2,3,4,5,6]
window_size = 4

Output:

def moving_window(input, window_size) -> [1, 1.5, 2, 2.5, 3.5, 4.5]
Data Structures & Algorithms
Easy
Analytics
Medium
Loading pricing options

View all Ziprecruiter questions

Challenge

Check your skills...
How prepared are you for working at Ziprecruiter?

ZipRecruiter Salaries by Position

$154K
$213K
Product Manager
Median: $191K
Mean (Average): $185K
Data points: 3
$129K
$240K
Software Engineer
Median: $145K
Mean (Average): $164K
Data points: 21
$113K
$180K
Data Scientist
Median: $180K
Mean (Average): $159K
Data points: 5
Data Analyst*
$86K
$107K
Data Analyst
Median: $97K
Mean (Average): $97K
Data points: 2

Most data science positions fall under different position titles depending on the actual role.

From the graph we can see that on average the Product Manager role pays the most with a $185,333 base salary while the Data Analyst role on average pays the least with a $96,500 base salary.

Discussion & Interview Experiences

?
There are no comments yet. Start the conversation by leaving a comment.