Skip to contentSkip to footer
  • Community
  • Jobs
  • Companies
  • Salaries
  • For employers
      Notifications

      Loading...

      Elevate your career

      Discover your earning potential, land dream jobs, and share work-life insights anonymously.

      employer cover photo
      employer logo
      employer logo

      PriceLabs

      Engaged employer

      About
      Reviews
      Pay and benefits
      Jobs
      Interviews
      Interviews
      Related searches: PriceLabs reviews | PriceLabs jobs | PriceLabs salaries | PriceLabs benefits
      PriceLabs interviewsPriceLabs Senior Data Scientist interviewsPriceLabs interview


      Glassdoor

      • About / Press
      • Awards
      • Blog
      • Research
      • Contact Us
      • Guides

      Employers

      • Free Employer Account
      • Employer Centre
      • Employers Blog

      Information

      • Help
      • Guidelines
      • Terms of Use
      • Privacy and Ad Choices
      • Do Not Sell Or Share My Information
      • Cookie Consent Tool
      • Security

      Work With Us

      • Advertisers
      • Careers
      Download the App

      • Browse by:
      • Companies
      • Jobs
      • Locations
      • Communities
      • Recent posts

      Copyright © 2008-2026. Glassdoor LLC. "Glassdoor," "Worklife Pro," "Bowls" and logo are proprietary trademarks of Glassdoor LLC.

      Company Bowl sample

      Want the inside scoop on your own company?

      Check out your Company Bowl for anonymous work chats.

      Bowls

      Get actionable career advice tailored to you by joining more bowls.

      Followed companies

      Stay ahead in opportunities and insider tips by following your dream companies.

      Job searches

      Get personalised job recommendations and updates by starting your searches.

      Senior Data Scientist Interview

      22 Jul 2023
      Anonymous interview candidate
      No offer
      Negative experience
      Average interview

      Application

      I applied online. The process took 2 months. I interviewed at PriceLabs

      Interview

      Gave an preliminary assignment on 1st round. It was pseudocode and we had to reply what is does. Followed by a technical round to check coding ability. Then there was a gap of almost 2 weeks which was frustrating to be honest. I lost interest in the job/ process. After that, there was an assignment on Time series data . The recruiter on on the mail informed me to not give more than 4 hours to the assignment. I did that and revert back. After 5 days, received a mail that the model is rejected as i had not worked on more improving the forecast, even though my model performed with an MSE of 9% on my test set. The team should either set their expectations straight about what they want, and be mindful of the delays in the process. It was exhausting to say the least.

      Interview questions [1]

      Question 1

      There was an assignment on Time series data of hotel prices from 2012 to 2016 and we had to forecast values for Feb 2020
      Answer question
      avatar
      PriceLabs response
      2y
      Hi, We value your feedback and appreciate the time you took to provide it. Indeed, our interview process is thorough, allowing both, us and the candidate to interact and gain a better understanding. This is crucial before we make any hiring decisions because we would love our team to have long tenures rather than a hire-and-fire approach. We request a person not to spend too many hours solving a problem in the interest of time and effort. The time is calculated based on the amount it would take to complete the assignment. With that being said, we look for the closest answer, if not something that’s 100% accurate. 
 We would also incorporate learnings to ensure that we are communicating clearly and setting better expectations.
If you'd like to set up some time 1:1 to chat about where we could have streamlined and the assignment better - we'd love to hear.
 Once again, we thank you for your time and feedback. Regards, The Talent Team PriceLabs

      Other Senior Data Scientist interview reviews for PriceLabs

      Senior Data Scientist Interview

      15 Dec 2023
      Anonymous interview candidate
      Bengaluru
      No offer
      Negative experience
      Average interview

      Application

      I applied through a recruiter. I interviewed at PriceLabs (Bengaluru) in Dec 2023

      Interview

      Assignment (20 minutes): This assignment helps us understand your math and logic. Since our product is data heavy, we need to get a sense of your comfort levels. Introduction call (30 mins): This will be an initial discussion to learn about your background, and interests and share about the role. Technical Discussion (45 mins): This conversation will be scheduled with someone from the Data Science team. This will be an overall discussion to understand if we meet mid-way. This call will also test your coding skills. Based on this discussion, we'll proceed with the next step. Assignment (3-4 hours): As a part of the next stage of the process, we will send an assignment your way. This problem would be based on Data Science. It won't take you more than 4 hours to complete it, but we will give you about 3 days to work on it. We will reach out to you before scheduling this round. Assignment Discussion (1 hour): We will set up an hour's discussion with the team to go over your assignment with you. Through this discussion, you will get to interact with and know the team and it will help us understand your thought process and approach Culture fit (30 mins): You'll meet with our founding team. They'd want to understand what drives you. This is also a good opportunity to get the inside scoop on PriceLabs.

      Interview questions [1]

      Question 1

      Can you explain what the pseudo-code below is trying to do? array[N] # array of N integers, indexed 0 to N-1; # assume it’s populated with [1,4,2,-2,-9,10,2,12,2,-4,-4,-4,-4,2,6,7] peak = array[0] index = 0 output = [] # array of tuples For x in 1..N-1 if (array[x]*array[x-1] > 0) if peak < 0 and array[x] < peak peak = array[x] index = x if peak >= 0 and array[x] > peak peak = array[x] index = x else output.insert( (index, peak) ) peak = array[x] index = x end if end for return output
      1 Answer
      avatar
      PriceLabs response
      2y
      Hi, Thank you for your feedback. Please could you help us understand what part of the experience wasn't positive for you? It'll help us come back to you with a better response and accordingly look into our interview process(es). If you'd like to get on a call to discuss this 1:1, please feel free to reach out to anyone from the Recruitment team at PriceLabs. Thanks again for your feedback Regards, The Talent Team PriceLabs

      Sr. Data Scientist Interview

      9 Jul 2023
      Anonymous interview candidate
      No offer
      Negative experience
      Easy interview

      Application

      I applied online. I interviewed at PriceLabs in Jul 2023

      Interview

      The HR gave me a damn 10 line pseudo-code in a take home assignment and asked me a short description on what the code is trying to do. I gave the entire description of the code in detail along with the output. The description and the output were both accurate. Received a mail that description is not "succinct" enough. Seriously? I had asked very clearly on what is expected. Was given no clear instructions and finally a vague feedback that description is not 'succinct'. This is the worst way to have a pre-screening. Why not just give an aptitude/coding test and shortlist only the top performers. Stop wasting a candidate's time with such exercises.

      Interview questions [1]

      Question 1

      Explain what the below pseudo-code is trying to do. array[N] # array of N integers, indexed 0 to N-1; # assume it’s populated with [1,4,2,-2,-9,10,2,12,2,-4,-4,-4,-4,2,6,7] peak = array[0] index = 0 output = [] # array of tuples For x in 1..N-1 if (array[x]*array[x-1] > 0) if peak < 0 and array[x] < peak peak = array[x] index = x if peak >= 0 and array[x] > peak peak = array[x] index = x else output.insert( (index, peak) ) peak = array[x] index = x end if end for return output
      Answer question
      5
      avatar
      PriceLabs response
      2y
      Hi, We value your feedback and appreciate the time you took to provide it. As a part of the process, a set of instructions are shared with each individual along with the assignment to ensure both, them and us don't miss out on the opportunity of being able to work together. Unfortunately, we are unable to share the exact answer for this assignment but we would be happy to discuss the feedback with you over a call to help you understand better. Please feel free to contact anyone from the Recruitment team for the same. Once again, we thank you for your time and feedback. Regards, The Talent Team PriceLabs