Introduction
I’m thrilled to share my experiences during the 2024 Internship season and the valuable lessons I’ve learned along the way. I’ll be discussing my preparation, experiences, and advice for both Quant Roles and SWE roles at different companies.
Quant Roles
will be my main focus since they were my top priority, but I’ll also share how I prepared for SWE roles
, as the tests for both overlap quite a bit. We’ll break down our discussion into three main parts:
Let’s get started!
Preparation
Quant Roles
The following are the resources which I completed for Quant Roles:
Zetamac
or Trading Interview
.I think these resources should cover all the questions you might have on the tests and in the interview. They’re pretty comprehensive, so you could almost take a whole summer to finish them (with SWE Preparation, of course). But make sure to at least get through the basics.
Here are the resources. I’d recommend them only to those who have already done the above quickly or have done them before while preparing for things like Jane SEE Program or Jane Street 2nd Year Internship test or whatever.
Additional Resources (if you’ve completed the above)
:
Mathematical Puzzles
: Small number of problems, good for practicing at the end.Fifty Challenging Problems in Probability
: Good problems.Martin Gardner
: Contains some errors but decent.Aniruddha Deb
: The OG repo for CS students, covering almost every resource.Quantitative Primer
: Less known but good for post-standard books.Dice Problems
: Simply worded problems with excellent solutions.Market Making
: Very few companies like Optiver, Jane Street and Quantbox asked about market making. Companies usually provide some material for understanding about it.For this part of preparation, I mostly solved LeetCode problems and occasionally participated in CF contests. This is the easiest part, as most of the questions follow a very common pattern. We’ll discuss these patterns in the next section soon. By the way, many (most) of the quant roles also have a CP test in their first round and ask CP questions in interviews.
For SWE preparation, I mostly solved LeetCode problems and occasionally participated in CF contests.
CSES
:
In my opinion, these resources should be more than enough to prepare well for the tests. You can do a few practice tests on HackerRank or similar platforms that companies often use for their tests to get used to the platform. I personally find these platforms a bit confusing, though.
Key Topics
Dynamic Programming (DP)
Knapsack
or its variations.Binary Search
Erichto Video
.Tree/Graph Algorithms
Now we will be discussing the questions asked in the MCQ section of the test. This mostly covers OOPS. Questions usually involve being given a piece of code, and ask what will be the output for this. As a side note, remember that a few tests allow navigation between CP Problems and these MCQs. One may use this loophole to run the MCQ codes in the CP questions area, to see what the outcome is.
MCQ Section in Tests
Now we will be discussing the questions asked in the MCQ section of the test. This mostly covers OOPS. Questions usually involve being given a piece of code, and ask what will be the output for this. As a side note, remember that a few tests allow navigation between CP Problems and these MCQs. One may use this loophole to run the MCQ codes in the CP questions area, to see what the outcome is.
Inheritance Concepts
Most OOPs questions revolve around Inheritance
, particularly in:
Typical Question Format:
constructor
with unique cout
statements.destructor
with unique cout
statements.foo
) with unique cout
statements.foo
method.Learn which class’s constructor, method, and destructor are invoked.
Buggy Code and Error Identification
Structs and Padding
struct
with several attributes is provided, and the size of the struct
is queried.struct
is usually the sum of the sizes of its attributes.
struct
contains 2 int
variables, its size is 8 bytes.struct
includes data types such as strings
or char
, padding might be added to align memory.
struct
with:
struct Example {
int a; // 4 bytes
char b; // 1 byte
float c; // 4 bytes
};
b
to align c
, making the total size 12 bytes instead of 9 bytes.structs
.Additional Topics (Very few companies)
I mostly didn’t have much knowledge of these topics. So I guessed/left most of them. Although companies expect better from dual degree students. They may ask some senior for this.
ML and Statistics
Mostly covers statistics and ML questions.
Common topics include:
Asks questions like, which test is used when and so on. Like T-test, Chi-square test, etc.
Learn basics of mean, quartiles, standard deviation, and hypothesis tests.
Tests
Timing and Duration:
Shortlisting and Frustrations:
Scholarship Programs
Interviews
Personal Experience
Conclusion
Internship season is undoubtedly a challenging yet transformative experience. It pushes you to your limits, helps you identify your strengths, and teaches you how to adapt under pressure. From preparation to tests and interviews, every stage is a learning journey.
The key takeaway is that preparation and persistence are your best allies. Use the right resources, stay consistent, and approach each step with confidence and determination. Even if things don’t go as planned initially, remember that perseverance often leads to success. Be open to feedback, learn from your mistakes, and never shy away from seeking help or advice from peers and seniors.
Most importantly, stay optimistic. The internship season is not just about securing a role; it’s also about growth and discovering what excites you professionally. Celebrate your efforts, regardless of the outcomes, because the experience itself is invaluable. Remember, opportunities will always come if you stay prepared and motivated.
Wishing you all the very best for your internship journey! You’ve got this! 🚀