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

      Squarepoint Capital

      Engaged employer

      About
      Reviews
      Pay and benefits
      Jobs
      Interviews
      Interviews
      Related searches: Squarepoint Capital reviews | Squarepoint Capital jobs | Squarepoint Capital salaries | Squarepoint Capital benefits
      Squarepoint Capital interviewsSquarepoint Capital Python Developer Intern interviewsSquarepoint Capital 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
      BMO Financial Group
      3.5★Compensation and benefits
      avatar
      Citi
      3.6★Compensation and benefits
      avatar
      Morgan Stanley
      3.6★Compensation and benefits
      avatar
      Manulife
      3.8★Compensation and benefits

      Python Developer Intern Interview

      Nov 26, 2025
      Anonymous employee
      Montreal, QC

      Other Python Developer Intern interview reviews for Squarepoint Capital

      Python Developer Intern Interview

      Oct 21, 2025
      Anonymous interview candidate
      Montreal, QC
      No offer
      Accepted offer
      Positive experience
      Average interview

      Application

      I interviewed at Squarepoint Capital (Montreal, QC)

      Interview

      3 rounds of onsite (back in May 2023) 2 coding rounds which include trivia. 1 behavioural but they dive into your previous experiences on your resume pretty in depth. There was a technical OA before all this.

      Interview questions [1]

      Question 1

      A question to iterate through a complex dictionary object (kind of like a json object) and collect certain items and group them in a time efficient manner
      Answer question
      1
      Positive experience
      Difficult interview

      Application

      I interviewed at Squarepoint Capital (Montreal, QC)

      Interview

      [SECOND ROUND INTERVIEW] 60-minute live coding session on HackerRank One engineer observing and interacting with you throughout You get a file-like string input that simulates a messy CSV (not just an array or list) First, you need to write code to robustly parse and clean the data You'll clarify weird formatting and ask questions as needed—the interviewer will give details if you ask Must process the data as a stream, not reading the whole thing into a DataFrame by default After parsing, you’ll answer a set of concrete business queries based on the cleaned data At the end, there are a few minutes for your own questions

      Interview questions [1]

      Question 1

      Interview Questions: Count how many employees have a salary strictly over 30,000 Identify which employee has held their job the longest (using start and end dates—treat missing end dates as “today” and missing start dates as “skip”) Find the employee with the second-highest salary You may need to decide how to handle missing names (recommended: use a placeholder like “(unknown)” so the row isn’t dropped for the other queries) Clarify how to deal with rows that are malformed, have extra or missing fields, or contain blank lines Explain your data structures and approach as you go (especially performance and edge cases) Option to use native Python types and modules; pandas probably not available You don’t have to provide a tie-breaking rule unless asked, but if you do, picking the lexicographically smallest name is reasonable Overall, strong candidates can: Parse and clean up messy, inconsistent tabular input Make and explain reasonable real-world assumptions Use Python constructs like csv.reader, datetime.fromisoformat, and simple lists/dicts Communicate their approach and edge-case handling out loud
      Answer question
      2