Upload Button Icon Add office photos

Arcesium

Compare button icon Compare button icon Compare

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

78 interviews found

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)
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. How can you achieve multitasking in Java?
View answer (1)

Senior Software Engineer Interview Questions asked at other Companies

Q1. Nth Prime Number Problem Statement Find the Nth prime number given a number N. Explanation: A prime number is greater than 1 and is not the product of two smaller natural numbers. A prime number has exactly two distinct positive divisors: 1... read more
View answer (1)

Arcesium interview questions for popular designations

 Analyst

 (12)

 Senior Software Engineer

 (7)

 Software Engineer

 (6)

 Data Analyst

 (5)

 Software Developer Intern

 (5)

 Financial Analyst

 (3)

 Junior Analyst

 (2)

 Product Manager

 (2)

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 Mirror Given two arbitrary binary trees, your task is to determine whether these two trees are mirrors of each other. Explanation: Two trees are considered mirror of each other if: The roots of both the trees are the... read more
Add answer

Get interview-ready with Top Arcesium Interview Questions

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)

Jobs at Arcesium

View all
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)

Analyst Interview Questions & Answers

user image Anonymous

posted on 2 Jul 2022

I applied via Company Website and was interviewed in Jun 2022. There were 4 interview rounds.

Round 1 - Aptitude Test 

It was relatively easy compared to other rounds

Round 2 - Technical 

(2 Questions)

  • Q1. A discussion around my present role and how I will fit for their role...
  • Q2. Financial derivatives, hedge funds, bonds.
Round 3 - Technical 

(2 Questions)

  • Q1. Discussion around the present round and situation based questions
  • Q2. Financial derivatives, bonds and hedge funds.
Round 4 - HR 

(1 Question)

  • Q1. Why a jump from sales role....

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well from the subject point of view and stay confident.

Top Arcesium Analyst Interview Questions and Answers

Q1. What is the duration of the bond & explain its use?
View answer (1)

Analyst Interview Questions asked at other Companies

Q1. N-th Fibonacci NumberYou are given an integer ‘N’, your task is to find and return the N’th Fibonacci number using matrix exponentiation. Since the answer can be very large, return the answer modulo 10^9 +7. Fibonacci number is calculated u... read more
View answer (5)

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
 • 490 Interviews
Goldman Sachs Interview Questions
3.5
 • 408 Interviews
Deutsche Bank Interview Questions
3.9
 • 366 Interviews
TCS iON Interview Questions
3.9
 • 365 Interviews
Morgan Stanley Interview Questions
3.7
 • 308 Interviews
Barclays Interview Questions
3.8
 • 277 Interviews
CitiusTech Interview Questions
3.4
 • 268 Interviews
BNP Paribas Interview Questions
3.8
 • 177 Interviews
Edelweiss Interview Questions
3.9
 • 59 Interviews
View all

Arcesium Reviews and Ratings

based on 296 reviews

3.6/5

Rating in categories

3.2

Skill development

3.0

Work-life balance

3.8

Salary

3.9

Job security

3.7

Company culture

3.3

Promotions

3.1

Work satisfaction

Explore 296 Reviews and Ratings
Analyst / Senior Analyst - Fund Accounting, CPD

Hyderabad / Secunderabad

1-5 Yrs

Not Disclosed

Benefits Coordinator

Hyderabad / Secunderabad

1-3 Yrs

Not Disclosed

Analyst / Senior Analyst - Middle Office, CPD

Hyderabad / Secunderabad

3-5 Yrs

₹ 14-26.5 LPA

Explore more jobs
Senior Analyst
316 salaries
unlock blur

₹9 L/yr - ₹28.5 L/yr

Analyst
313 salaries
unlock blur

₹7.6 L/yr - ₹20 L/yr

Senior Software Engineer
221 salaries
unlock blur

₹15 L/yr - ₹42 L/yr

Software Engineer
186 salaries
unlock blur

₹9 L/yr - ₹33 L/yr

Financial Analyst
153 salaries
unlock blur

₹7.5 L/yr - ₹19 L/yr

Explore more salaries
Compare Arcesium with

Edelweiss

3.9
Compare

JPMorgan Chase & Co.

4.0
Compare

Goldman Sachs

3.5
Compare

Morgan Stanley

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