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

      Nimbuspost

      Engaged employer

      About
      Reviews
      Pay and benefits
      Jobs
      Interviews
      Interviews
      Related searches: Nimbuspost reviews | Nimbuspost jobs | Nimbuspost salaries | Nimbuspost benefits
      Nimbuspost interviewsNimbuspost Tech Intern interviewsNimbuspost 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.

      Top companies for "Compensation and Benefits" near you

      avatar
      C.A.T.
      3.6★Compensation and benefits

      Tech Intern Interview

      21 Oct 2024
      Anonymous interview candidate
      Gurgaon, Haryana
      No offer
      Positive experience
      Average interview

      Application

      I applied online. The process took 2 days. I interviewed at Nimbuspost (Gurgaon, Haryana) in Oct 2024

      Interview

      I got a call for the interview from the company. Before interview process you have to pass a written assessment, it includes easy to medium level DSA questions, and patterns to solve.

      Interview questions [2]

      Question 1

      Given an array of integers nums containing n + 1 integers where each integer is in the range [1, n] inclusive. There is only one repeated number in nums, return this repeated number. You must solve the problem without modifying the array nums and using only constant extra space. Constraints: -> 1 <= n <= 10^5 -> nums.length == n + 1 -> 1 <= nums[i] <= n -> All the integers in nums appear only once except for precisely one integer which appears two or more times. Follow up: ->How can we prove that at least one duplicate number must exist in nums? ->Can you solve the problem in linear runtime complexity?
      Answer question

      Question 2

      Given an array nums with n objects colored red, white, or blue, sort them in-place so that objects of the same color are adjacent, with the colors in the order red, white, and blue. We will use the integers 0, 1, and 2 to represent the color red, white, and blue, respectively. You must solve this problem without using the library's sort function. Constraints: -> n == nums.length -> 1 <= n <= 300 -> nums[i] is either 0, 1, or 2. Follow up: Could you come up with a one-pass algorithm using only constant extra space?
      Answer question