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

      Jump Trading

      Engaged employer

      About
      Reviews
      Pay and benefits
      Jobs
      Interviews
      Interviews
      Related searches: Jump Trading reviews | Jump Trading jobs | Jump Trading salaries | Jump Trading benefits
      Jump Trading interviewsJump Trading C++ Software Engineer interviewsJump Trading 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
      Allianz
      3.6★Compensation and benefits
      avatar
      Raiffeisen Bank International
      3.9★Compensation and benefits
      avatar
      ING
      3.9★Compensation and benefits
      avatar
      Banco do Brasil
      4.2★Compensation and benefits

      C++ Software Engineer Interview

      28 Feb 2020
      Anonymous interview candidate
      New York, NY

      Other C++ Software Engineer interview reviews for Jump Trading

      C++ Software Engineer Interview

      2 Sept 2016
      Anonymous interview candidate
      No offer
      Negative experience
      Average interview

      Application

      I applied online. I interviewed at Jump Trading in Jun 2016

      No offer
      Negative experience
      Average interview

      Application

      I applied online. The process took 2 weeks. I interviewed at Jump Trading (New York, NY) in Jan 2020

      Interview

      The HR person called and said she would send me an assignment to complete. An hour later I get that assignment, took me 2 nights to write, not super complicated but long. I submitted the code and emailed the HR person that the code was submitted, didn't get a response for 3 days, so I email the HR person again, still nothing. After emailing the HR for the 3rd time, I finally receive an answer saying it's still needs to be reviewed. Another week goes by and I ping her again, nothing, after the 2nd time she finally says that they decided to pass on me. I honestly never met such a disrespectful HR person, didn't even get upset about not passing because I would not want to work for such a company

      Interview questions [1]

      Question 1

      Write a complete stock exchange
      Answer question
      3

      Interview

      In 1 day after I submitted my resume on their site, I got a link from HR to some testing site with 2 task to do. I did one of them, second one, regarding DP was not completely solved by me. I did not get any feedback from them after that.

      Interview questions [1]

      Question 1

      Task 1. You are given a string containing just numbers and mathematical operator + and *. You have to read from the string characters, one by one. If it is a digit, then push it in stack. If it is an operator, pop 2 elements from the stack, apply the operator to those elements, and push the result in stack. If you there is not enough elements in stack, or no operator to apply, return -1. For example "12+4*7*" You have to calculate a result like this: 1-> push in stack 2 -> push in stack + -> pop 1 from stack, pop 2 from stack, perform 1 + 2 and push 3 in stack 4 -> push in stack * -> pop 4, pop 3, multiply them and put 12 in stack. 7 -> push in stack * -> push 7 and 12 from stack and multiply them. Return 84. Task 2. It was about dynamic programming/ greedy algorithms. 1 day ticket costs 2 dollars, 7 day ticket costs 7 dollars (valid for sequence of 7 days), one month ticket costs 25. You are given list of increasing dates you gonna travel. You have to return minimum possible amount of money you spend on tickets. For example 1,2,3,4,5,11,12,25 Return 13.
      1 Answer
      6