Upload Button Icon Add office photos

Filter interviews by

Arcesium Interview Questions, Process, and Tips

Updated 9 Jan 2025

Top Arcesium Interview Questions and Answers

View all 131 questions

Arcesium Interview Experiences

Popular Designations

79 interviews found

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
-

I applied via Referral and was interviewed in Aug 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Leetcode practice should be sufficient to tackle this round.

Round 2 - One-on-one 

(1 Question)

  • Q1. Trapping Rain Water problem.
  • Ans. 

    Trapping Rain Water problem involves calculating the amount of water that can be trapped between buildings given their heights.

    • Calculate the maximum height of buildings to the left and right of each building

    • Find the minimum of the two heights

    • Subtract the height of the current building to get the amount of water that can be trapped at that building

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be consistent with your practice and you should be able to crack this interview.

Skills evaluated in this interview

Top Arcesium Software Engineer Interview Questions and Answers

Q1. There's a string s1,s2 and s3. s1 and s2 are divided into n and m parts respectively. check if, after interleaving strings s1 and s2, we get s3 as one of the answers.
View answer (1)

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (169)

SDE Summer Intern Interview Questions & Answers

user image Anonymous

posted on 1 Sep 2023

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Coding Test 

45 mins; asked me two questions that were Leetcode Medium => Product of Array Except Self (Was asked to keep optimize till O(n) time & O(1) space & Generate all possible subsequences of an integer array.

Round 3 - Coding Test 

Simple DP on grids question & how to further optimize it; also a puzzle

Round 4 - Technical 

(1 Question)

  • Q1. Asked me questions based on SQL & OOP
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Approached by Company and was interviewed in Feb 2023. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Coding Test 

Hackerrank test, fairly simple coding problems

Round 3 - Technical 

(2 Questions)

  • Q1. Questions on past project and companies
  • Q2. Exposure to financial domain
  • Ans. 

    I have extensive exposure to the financial domain.

    • I have worked as a Product Manager for a financial services company for 3 years.

    • I have experience in developing and launching financial products such as credit cards, loans, and savings accounts.

    • I have a good understanding of financial regulations and compliance requirements.

    • I have collaborated with cross-functional teams including finance, legal, and compliance to ensu...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Do your best and be open to any kind of questions, questions maybe technical or non technical. Focus on presenting the experience you have

Product Manager Interview Questions asked at other Companies

Q1. You see the number of people cancelling the order increasing. Cancel window 24 hours. What would you do?
View answer (26)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Sep 2023. There was 1 interview round.

Round 1 - Coding Test 

3 coding question , leetcode easy medium and mcqs

Interview Preparation Tips

Interview preparation tips for other job seekers - practice dsa

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... read more
View answer (39)

Arcesium interview questions for popular designations

 Analyst

 (12)

 Senior Software Engineer

 (7)

 Software Engineer

 (7)

 Data Analyst

 (5)

 Software Developer Intern

 (5)

 Financial Analyst

 (3)

 Junior Analyst

 (2)

 Product Manager

 (2)

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Oct 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Coding logical thinking

Round 2 - Technical 

(2 Questions)

  • Q1. Linux, logical thinking
  • Q2. Technical related to coding - DSA
Round 3 - Technical 

(2 Questions)

  • Q1. Techincal coding
  • Q2. Past exerience based questions

Top Arcesium Senior Software Engineer Interview Questions and Answers

Q1. OOPS QuestionHow to achieve multitasking in Java ?
View answer (2)

Senior Software Engineer Interview Questions asked at other Companies

Q1. Find Nth PrimeYou are given a number 'N'. Your task is to find Nth prime number. A prime number is a number greater than 1 that is not a product of two smaller natural numbers. Prime numbers have only two factors – 1 and the number itself. ... read more
View answer (6)

Get interview-ready with Top Arcesium Interview Questions

Round 1 - Aptitude Test 

It was an on campus coding and aptitude test.

Round 2 - Technical 

(2 Questions)

  • Q1. Find nearest index of character in string for each index.
  • Ans. 

    Find the nearest index of a character in a string for each index.

    • Create an array of strings to store the results.

    • Loop through each character in the string.

    • For each character, loop through the rest of the string to find the nearest index of the same character.

    • Store the result in the array.

  • Answered by AI
  • Q2. Discussion about project.
Round 3 - Technical 

(2 Questions)

  • Q1. Minimum weight to reach bottom right corner in matrix starting from top left. You can move only down and right.
  • Ans. 

    Minimum weight to reach bottom right corner in matrix starting from top left. You can move only down and right.

    • Use dynamic programming to solve the problem efficiently

    • Create a 2D array to store the minimum weight to reach each cell

    • The minimum weight to reach a cell is the minimum of the weight to reach the cell above and the cell to the left plus the weight of the current cell

    • The minimum weight to reach the bottom righ...

  • Answered by AI
  • Q2. Discussion about project on MERN stack
Round 4 - One-on-one 

(6 Questions)

  • Q1. Intro + resume follow up
  • Q2. Missing number in array in 1 to n
  • Ans. 

    Find the missing number in an array of integers from 1 to n.

    • Create a hash set to store the numbers in the array

    • Loop through the numbers from 1 to n and check if they are in the hash set

    • Return the number that is not in the hash set

  • Answered by AI
  • Q3. 3 bulbs 3 switches puzzle
  • Q4. Topological Sort along with dry run
  • Ans. 

    Topological Sort is a linear ordering of vertices in a directed acyclic graph.

    • It is used to find a linear ordering of elements that have dependencies.

    • It is based on the concept of DFS (Depth First Search).

    • It can be implemented using both DFS and BFS (Breadth First Search).

    • It is commonly used in scheduling jobs, resolving dependencies, and compiling code.

    • Example: Topological sorting of courses to take in a college based

  • Answered by AI
  • Q5. Critical section problem and deadlocks
  • Q6. Design a 2 player chess game
  • Ans. 

    A 2 player chess game with standard rules and GUI

    • Implement standard chess rules and moves

    • Create a GUI for players to interact with the game

    • Allow players to make moves and track game progress

    • Incorporate checkmate and stalemate conditions

    • Implement a timer for each player's turn

  • Answered by AI
Round 5 - HR 

(3 Questions)

  • Q1. Intro + project discussion
  • Q2. Why you want to join Arcesium
  • Q3. Which is your Dream Company

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and speak the truth without hesitation.

Skills evaluated in this interview

Software Engineer Intern Interview Questions asked at other Companies

Q1. Check if two trees are MirrorYou are given two arbitrary binary trees consisting of N and M number of nodes respectively, your task is to check whether the two trees are mirror of each other or not. Two trees are said to be mirror of each o... read more
View answer (2)

Jobs at Arcesium

View all

I applied via campus placement at Indian School of Business (ISB), Hyderabad

Round 1 - Case Study 

Tell me about yourself.

A case based on the operations and business model of Arcesium. It revolved around the various services provided by Arcesium. Determine price of the MVP, pros and cons of targeting a given segment and determine the target segment for this product.
Go through Arcesium's website and refer ,After the trade is made" by Daniel Weiss. The case will be based on Arcesium's services

Round 2 - Case Study 

Tell me about yourself

The interviewers asked me to justify each point written in the case solution. There were lot of cross questions also because I was coming from the same industry
Be prepared with the assumptions and statements mentioned in the case. You will be tested on every statement because Arcesium makes sure that candidate well understood the case. You might not remember every case detail. It is ok to ask the interviewer for a copy of case for reference

Round 3 - Case Study 

This round tested my previous work experience and some parts of the case
Be well prepared with every detail mentioned in the resume. If you are coming from the same industry, you might be asked to whiteboard your company's business model or the data flow of the applications you worked on

Round 4 - HR 

(3 Questions)

  • Q1. Biggest weakness?
  • Ans. 

    I tend to overthink and sometimes struggle with decision-making.

    • I often analyze situations from multiple angles before making a decision

    • I am working on improving my ability to make quick and effective decisions

    • I have been taking courses on decision-making and seeking feedback from colleagues

  • Answered by AI
  • Q2. Why Arcesium? How can you be an asset to the company?
  • Q3. If you have to choose between staying in India and moving abroad, what would you choose?

Interview Preparation Tips

Interview preparation tips for other job seekers - 1. Prepare the answer to “tell me about yourself” well. This is the first question that was asked in every round and in every other company's interviews as well.

2. Research well about Arcesium- new clients, technological developments etc.

Round 1- The duration of the interview was 1 hour 30 minutes.

Senior Product Manager Interview Questions asked at other Companies

Q1. What are the growth hacks you would use to grow traffic?
View answer (1)
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Aug 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Basic accounting and finance related questions
  • Q2. Basic questions of derivatives, fixed income, equity and alternative asset management
Round 2 - HR 

(2 Questions)

  • Q1. Where do you see your self in 5 years
  • Ans. 

    In 5 years, I see myself as a senior financial analyst leading a team and contributing to the strategic decision-making process of the company.

    • Leading a team of financial analysts

    • Contributing to strategic decision-making

    • Continuing professional development and certifications

    • Possibly pursuing an MBA for further career advancement

  • Answered by AI
  • Q2. What is your family background
  • Ans. 

    My family background is diverse and includes a mix of professions and cultural backgrounds.

    • My family members come from various professional backgrounds such as engineering, teaching, and business.

    • We have a mix of cultural backgrounds including Indian, American, and European.

    • Family values of hard work, education, and respect for others are important to us.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just brush up your finance concepts. They just want to see your knowledge.

For HR round,
Learn to lie and make them believe that this is the only work which I want to do for rest of my life.

Financial Analyst Interview Questions asked at other Companies

Q1. Suppose you have 10000 US dollars with you, out of which you took a loan of 5000 US Dollars. Now suppose you have purchased two assets of 5000 US Dollars each, one through cash and other through bank loan. How would you show this transactio... read more
View answer (3)

I applied via Recruitment Consulltant and was interviewed in Oct 2022. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - One-on-one 

(2 Questions)

  • Q1. Knowledge about various content management systems,
  • Q2. The articulate storyline, Learning techniques, Instruction design

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well based on your previous job experience and instructional design methods
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed before Sep 2023.

Round 1 - Face to face interview 

(2 Questions)

  • Q1. Reverse a binary tree
  • Ans. 

    Reverse a binary tree by swapping left and right child nodes recursively

    • Start by swapping the left and right child nodes of the root node

    • Recursively reverse the left and right subtrees

    • Continue this process until all nodes are reversed

  • Answered by AI
  • Q2. Max Heap question
Round 2 - Technical 

(1 Question)

  • Q1. Design DB Pool Management system
  • Ans. 

    Design a DB Pool Management system for efficient connection handling

    • Use connection pooling to manage a pool of database connections

    • Implement features like connection timeout, connection validation, and connection reuse

    • Consider using a connection pool library like HikariCP or Apache DBCP

    • Monitor and adjust pool size based on application demand

    • Handle connection leaks and errors gracefully

  • Answered by AI
Round 3 - Face to face interview 

(1 Question)

  • Q1. Questions around project

Senior Software Engineer 1 Interview Questions asked at other Companies

Q1. Architecture Design for an e2e system that takes input from user to the response shown to the user
View answer (1)

Arcesium Interview FAQs

How many rounds are there in Arcesium interview?
Arcesium interview process usually has 2-3 rounds. The most common rounds in the Arcesium interview process are Technical, Coding Test and Aptitude Test.
How to prepare for Arcesium interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Arcesium. The most common topics and skills that interviewers at Arcesium expect are Python, Asset Management, Operations, Java and Analytical.
What are the top questions asked in Arcesium interview?

Some of the top questions asked at the Arcesium interview -

  1. What is the duration of the bond & explain its u...read more
  2. What is Enterprise value? What is equity value? Can EV value be greater than en...read more
  3. What is nifty? How many companies are listed in NSE, B...read more
How long is the Arcesium interview process?

The duration of Arcesium interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Arcesium Interview Process

based on 54 interviews

Interview experience

3.9
  
Good
View more

Interview Questions from Similar Companies

HSBC Group Interview Questions
4.0
 • 489 Interviews
Goldman Sachs Interview Questions
3.6
 • 407 Interviews
Deutsche Bank Interview Questions
3.9
 • 359 Interviews
Morgan Stanley Interview Questions
3.7
 • 304 Interviews
Barclays Interview Questions
3.9
 • 270 Interviews
BNP Paribas Interview Questions
3.8
 • 176 Interviews
CMS IT Services Interview Questions
3.1
 • 125 Interviews
Edelweiss Interview Questions
3.9
 • 58 Interviews
Citibank Interview Questions
3.0
 • 1 Interview
View all

Arcesium Reviews and Ratings

based on 288 reviews

3.6/5

Rating in categories

3.3

Skill development

3.1

Work-life balance

3.9

Salary

4.0

Job security

3.8

Company culture

3.4

Promotions

3.1

Work satisfaction

Explore 288 Reviews and Ratings
Employee Engagement - Intern

Gurgaon / Gurugram

0-1 Yrs

Not Disclosed

Vice President, Technology (Return To India)

Hyderabad / Secunderabad

7-9 Yrs

Not Disclosed

Manager - Talent Development, Human Capital

Hyderabad / Secunderabad

5-7 Yrs

Not Disclosed

Explore more jobs
Senior Analyst
302 salaries
unlock blur

₹9.5 L/yr - ₹26 L/yr

Analyst
294 salaries
unlock blur

₹8 L/yr - ₹20 L/yr

Senior Software Engineer
224 salaries
unlock blur

₹15 L/yr - ₹42 L/yr

Manager
149 salaries
unlock blur

₹16.2 L/yr - ₹50 L/yr

Software Engineer
148 salaries
unlock blur

₹11.9 L/yr - ₹33 L/yr

Explore more salaries
Compare Arcesium with

Edelweiss

3.9
Compare

JPMorgan Chase & Co.

4.0
Compare

Goldman Sachs

3.6
Compare

Morgan Stanley

3.7
Compare
Did you find this page helpful?
Yes No
write
Share an Interview