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

I was interviewed before Sep 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 45 minutes
Round difficulty - Hard

Round was scheduled in the early afternoon hours most probably from 1 to 2 on hackerrank.

  • Q1. 

    BST to Greater Tree Problem Statement

    Given a binary search tree (BST) with 'N' nodes, the task is to convert it into a Greater Tree.

    A Greater Tree is defined such that every node's value in the origina...

  • Ans. 

    Convert a binary search tree into a Greater Tree by replacing each node's value with the sum of all values greater than or equal to it.

    • Traverse the BST in reverse inorder (right, root, left) to visit nodes in descending order.

    • Keep track of the running sum of visited nodes and update each node's value with this sum.

    • Recursively apply the above steps to all nodes in the BST.

    • Example: Input - 4 1 6 0 2 5 7 -1 -1 -1 3 -1 -1 ...

  • Answered by AI
  • Q2. 

    Ninja and Binary String Problem Statement

    Ninja has a binary string S of size N given by his friend. The task is to determine if it's possible to sort the binary string S in decreasing order by removing a...

  • Ans. 

    Determine if a binary string can be sorted in decreasing order by removing non-adjacent characters.

    • Check if the count of '1's in the string is equal to the length of the string, in which case it can be sorted in decreasing order.

    • If there are multiple '0's between two '1's, they can be removed to sort the string in decreasing order.

    • If there are more '0's than '1's, it is not possible to sort the string in decreasing ord

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 40 minutes
Round difficulty - Medium

This round was conducted on Code Share platform. I was shared the invitation link one day prior to the interview and also was told the name of my interviewer. I looked at the profile of the interviewer at linked.in and got a better understanding of what kind of person he was and prepared accordingly. The round was scheduled at 3 :00 pm on 25th August and I was eagerly waiting for the clock hands to reach 3 o'clock since morning and finally I went in front of him after wearing a white shirt and a black coat over it along with a tie over it.

  • Q1. 

    Spiral Order Traversal of a Binary Tree

    Given a binary tree with N nodes, your task is to output the Spiral Order traversal of the binary tree.

    Input:

    The input consists of a single line containing elem...
  • Ans. 

    Implement a function to return the spiral order traversal of a binary tree given in level order.

    • Traverse the binary tree in a spiral order, alternating between left to right and right to left.

    • Use a queue to keep track of nodes at each level and a flag to switch direction.

    • Handle null nodes appropriately to maintain the spiral order traversal.

    • Example: Input: 1 2 3 -1 -1 4 5, Output: 1 3 2 4 5

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Electronics & Communication Engineering from Malaviya National Institute of Technology Jaipur. I applied for the job as SDE - Intern in HyderabadEligibility criteriaComputer science allowedArcesium interview preparation:Topics to prepare for the interview - Data Structures and Algorithms, Pointers, OOPS, System Design, Algorithms, Dynamic ProgrammingTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Prepare DSA Questions from coding ninja or interview bit
Tip 2 : Have knowledge about SQL and datbases
Tip 3 : Practice Atleast 200 coding questions from gfg

Application resume tips for other job seekers

Tip 1 : Attach links to coding profiles
Tip 2 : Mention short description of your team projects and individual as well

Final outcome of the interviewSelected

Skills evaluated in this interview

Top Arcesium Software Developer Intern Interview Questions and Answers

Q1. Connecting Ropes with Minimum Cost You are given 'N' ropes, each of varying lengths. The task is to connect all ropes into one single rope. The cost of connecting two ropes is the sum of their lengths. Your objective is to find the minimum ... read more
View answer (1)

Software Developer Intern Interview Questions asked at other Companies

Q1. Sum of Maximum and Minimum Elements Problem Statement Given an array ARR of size N, your objective is to determine the sum of the largest and smallest elements within the array. Follow Up: Can you achieve the above task using the least numb... read more
View answer (5)

I was interviewed before Sep 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 45 minutes
Round difficulty - Hard

Timing (Between 6pm -7pm)
Environment was friendly and 2 coding questions were given.

  • Q1. 

    Connecting Ropes with Minimum Cost

    You are given 'N' ropes, each of varying lengths. The task is to connect all ropes into one single rope. The cost of connecting two ropes is the sum of their lengths. Yo...

  • Ans. 

    Connect ropes with minimum cost by merging smallest ropes first.

    • Sort the lengths of ropes in ascending order.

    • Merge the two smallest ropes at a time to minimize cost.

    • Repeat the merging process until all ropes are connected.

    • Calculate the total cost by summing up the lengths of merged ropes.

    • Return the minimum cost obtained.

  • Answered by AI
  • Q2. 

    Optimize Memory Usage Problem Statement

    Alex wants to maximize the use of 'K' memory spaces on his computer. He has 'N' different document downloads, each with unique memory usage, and 'M' computer games,...

  • Ans. 

    Maximize memory usage by pairing downloads and games within memory limit 'K'.

    • Sort downloads and games in descending order.

    • Iterate through downloads and games to find the pair with maximum memory usage.

    • Return the indices of the selected download and game pairs.

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 40 minutes
Round difficulty - Medium

Timing (6pm -7 pm)
Environment was user friendly
In first 10-15 minutes He asked my current company’s work and some behavioral questions. Then he jumped to coding problems

  • Q1. 

    Spiral Order Traversal of a Binary Tree

    Given a binary tree with N nodes, your task is to output the Spiral Order traversal of the binary tree.

    Input:

    The input consists of a single line containing elem...
  • Ans. 

    Implement a function to output the Spiral Order traversal of a binary tree given in level order.

    • Traverse the binary tree in a spiral order, alternating between left to right and right to left at each level.

    • Use a queue to keep track of nodes at each level and a stack to reverse the order of nodes at odd levels.

    • Handle null nodes appropriately to maintain the spiral order traversal.

    • Example: Input: 1 2 3 -1 -1 4 5, Output:

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Malaviya National Institute of Technology Jaipur. I applied for the job as SDE - Intern in BangaloreEligibility criteriaAbove 7 cgpaArcesium interview preparation:Topics to prepare for the interview - Operating System, System Design, Data structure, Trees, Graph, Dynamic ProgrammingTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Prepare DSA Questions from coding ninja or interview bit
Tip 2 : Have knowledge about SQL and datbases
Tip 3 : Practice Atleast 200 coding questions from gfg

Application resume tips for other job seekers

Tip 1 : Have some good projects Web Dev projects are preferred
Tip 2 : Resume should be of 1 page

Final outcome of the interviewSelected

Skills evaluated in this interview

Top Arcesium Software Developer Intern Interview Questions and Answers

Q1. Connecting Ropes with Minimum Cost You are given 'N' ropes, each of varying lengths. The task is to connect all ropes into one single rope. The cost of connecting two ropes is the sum of their lengths. Your objective is to find the minimum ... read more
View answer (1)

Software Developer Intern Interview Questions asked at other Companies

Q1. Sum of Maximum and Minimum Elements Problem Statement Given an array ARR of size N, your objective is to determine the sum of the largest and smallest elements within the array. Follow Up: Can you achieve the above task using the least numb... read more
View answer (5)
Arcesium Interview Questions and Answers for Freshers
illustration image

I applied via Company Website and was interviewed in Apr 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Questions from array, linkedlist , tree were asked. Also, they will give importance on your current job and projects, one single round was there only on current role.

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice more on platform like Leetcode to clear DSA problems. Medium hard will be enough to clear the rounds.

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 (203)

Interview Questions & Answers

user image Anonymous

posted on 17 Jan 2021

I applied via Campus Placement and was interviewed in Jul 2020. There were 4 interview rounds.

Interview Questionnaire 

7 Questions

  • Q1. What is beta of a stock?
  • Q2. What is hedge fund?
  • Q3. Which is better during inflation period, lifo Or fifo
  • Q4. If the price of stock goes down, you buy what type of options
  • Q5. Risk associted with loans
  • Q6. What is the Accounting equation
  • Q7. Why we depriciate our asset

Interview Preparation Tips

Interview preparation tips for other job seekers - Postive experience

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)

 Product Manager

 (2)

 Junior Analyst

 (2)

I applied via Campus Placement and was interviewed before Mar 2021. There were 4 interview rounds.

Round 1 - Coding Test 

90 minute test on hacker rank consisting of 3 coding questions all of medium difficulty. Most candidates are required to solve more than 1 question.

Round 2 - Technical 

(3 Questions)

  • Q1. Questions on concepts of OOPS and Operating Systems.
  • Q2. Find least common ancestor of a binary tree.
  • Ans. 

    Find the lowest common ancestor of a binary tree.

    • Traverse the tree recursively from the root node.

    • If the current node is null or matches either of the given nodes, return the current node.

    • Recursively search for the nodes in the left and right subtrees.

    • If both nodes are found in different subtrees, return the current node.

    • If both nodes are found in the same subtree, continue the search in that subtree.

  • Answered by AI
  • Q3. Find first missing positive integer from an array for non-negative integers.
  • Ans. 

    Find first missing positive integer from an array of non-negative integers.

    • Create a hash set to store all positive integers in the array

    • Loop through the array and add all positive integers to the hash set

    • Loop through positive integers starting from 1 and return the first missing integer not in the hash set

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Design a parking lot
  • Ans. 

    Design a parking lot

    • Consider the size and capacity of the parking lot

    • Decide on the layout and organization of parking spaces

    • Implement a system to manage parking availability and reservations

    • Include features like ticketing, payment, and security

    • Consider scalability and future expansion

  • Answered by AI
Round 4 - Technical 

(2 Questions)

  • Q1. Given a grid which represents an ocean( For all index i,j if mat[i][j] = 1 is island and mat[i][j] = 0 means water). Find the island with largest area.
  • Q2. Given list of strings group them into distinct anagrams.
  • Ans. 

    Group list of strings into distinct anagrams.

    • Create a hash table with sorted string as key and list of anagrams as value.

    • Iterate through the list of strings and add each string to its corresponding anagram list in the hash table.

    • Return the values of the hash table as a list of lists.

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Arcesium Senior Software Engineer interview:
  • Low Level Design
  • Object Oriented Programming
  • Data Structures
  • Algorithms
  • DBMS
Interview preparation tips for other job seekers - Focus on Data Structures & Algorithms and Low Level Designing. Some brushup of DBMS will also help.

Skills evaluated in this interview

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. Tell me about yourself. What technology are you using? What is a Collection? What are the different types of collection there? What is the difference between ArrayList and LinkedList What are the basic building blocks of Stream operators, s... read more
View answer (2)

Get interview-ready with Top Arcesium Interview Questions

I applied via Recruitment Consultant and was interviewed in Sep 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. 1) Tell me about yourself. 2) What is your long term goal? 3) Give the details about your current role and responsibilities.

Interview Preparation Tips

Interview preparation tips for other job seekers - My interview advice is that don't go ahead with the process if you believe that the firm follows open-door policy as they state. Apart from the role and responsibilities, the only thing which attracted me towards Arcesium was their open-door policy which now seems merely a marketing gimmick. Since the EA role requires honest feedback especially in terms of improving the process and brand name, my feedback to the Senior Leadership was taken as an escalation by the Talent Acquisition team and thus my profile was rejected. I suggest everyone, who gets interviewed in Arcesium, not to upset the Talent Acquisition team, even if they don't show professionalism in responding to your mails.

Executive Assistant Interview Questions asked at other Companies

Q1. What is deviation What is validation and its type in detail What is CAPA AND HOW IT is initiated Examples of incidences and how it is rectified Examples of preventive action and corrective actions Procedure for reprocessing of batch What is... read more
View answer (1)

Jobs at Arcesium

View all

Associate Interview Questions & Answers

user image Anonymous

posted on 8 Jun 2021

I applied via Naukri.com and was interviewed before Jun 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Financial domain

Interview Preparation Tips

Interview preparation tips for other job seekers - Listen to questions and only answer that.Dont get overexcited.Take a deep breath

Associate Interview Questions asked at other Companies

Q1. What is mean of TTR & why required for powder coating process ?
View answer (17)

SDE-2 Interview Questions & Answers

user image Anonymous

posted on 14 Sep 2021

I was interviewed before Sep 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 45 minutes
Round difficulty - Easy

Very easy round all goes good.

  • Q1. 

    Minimum Operations to Equalize Array

    Given an integer array ARR of length N where ARR[i] = (2*i + 1), determine the minimum number of operations required to make all the elements of ARR equal. In a single...

  • Ans. 

    The minimum number of operations required to make all elements of the given array equal is calculated by finding the median of the array elements.

    • Calculate the median of the array elements to determine the target value for all elements to be equal.

    • Find the absolute difference between each element and the target value, sum these differences to get the minimum number of operations.

    • For odd length arrays, the median is the...

  • Answered by AI
  • Q2. Can you create a table in SQL and demonstrate different functions that can be performed on it?
  • Ans. 

    Creating a table in SQL and demonstrating functions on it

    • Create a table using CREATE TABLE statement

    • Insert data into the table using INSERT INTO statement

    • Retrieve data from the table using SELECT statement

    • Update data in the table using UPDATE statement

    • Delete data from the table using DELETE statement

  • Answered by AI
Round 2 - Face to Face 

(1 Question)

Round duration - 90 minutes
Round difficulty - Hard

  • Q1. 

    Count Subarrays with Sum Divisible by K

    Given an array ARR and an integer K, your task is to count all subarrays whose sum is divisible by the given integer K.

    Input:

    The first line of input contains an...
  • Ans. 

    Count subarrays with sum divisible by K in an array.

    • Iterate through the array and keep track of prefix sum modulo K.

    • Use a hashmap to store the frequency of each prefix sum modulo K.

    • For each prefix sum, increment the count by the frequency of (prefix sum - K) modulo K in the hashmap.

    • Handle the case where prefix sum itself is divisible by K separately.

    • Return the total count of subarrays with sum divisible by K.

  • Answered by AI
Round 3 - HR 

Round duration - 45 minutes
Round difficulty - Hard

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 2 in BangaloreEligibility criteriaAbove 6 CGPAArcesium interview preparation:Topics to prepare for the interview - DBMS, Data Structures and Algorithms , OOP, Maths puzzles, Aptitude , CN, OSTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Never leave any topic from any chapter / Subject
Tip 2 : Learn to explain your thoughts well
Tip 3 : Learn from previous experiences / interviews / problems asked.

Application resume tips for other job seekers

Tip 1 : Atleast 2 projects on Resume
Tip 2 : Do not write false things. You always get caught.

Final outcome of the interviewSelected

Skills evaluated in this interview

SDE-2 Interview Questions asked at other Companies

Q1. Maximum Frequency Number Problem Statement Given an array of integers with numbers in random order, write a program to find and return the number which appears the most frequently in the array. If multiple elements have the same maximum fre... read more
View answer (5)
Contribute & help others!
anonymous
You can choose to be anonymous

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, Operations, Asset Management, 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.

Recently Viewed

JOBS

Accenture

No Jobs

COMPANY BENEFITS

Coal India

No Benefits

INTERVIEWS

Amadeus

No Interviews

JOBS

Ericsson

No Jobs

COMPANY BENEFITS

Amadeus

No Benefits

SALARIES

Arcesium

JOBS

Britive

No Jobs

SALARIES

Coal India

JOBS

Nutreco

No Jobs

JOBS

CoinDCX

No Jobs

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
 • 484 Interviews
Goldman Sachs Interview Questions
3.5
 • 376 Interviews
TCS iON Interview Questions
3.9
 • 367 Interviews
Deutsche Bank Interview Questions
3.9
 • 361 Interviews
ITC Infotech Interview Questions
3.6
 • 334 Interviews
Morgan Stanley Interview Questions
3.7
 • 291 Interviews
Barclays Interview Questions
3.8
 • 269 Interviews
BNP Paribas Interview Questions
3.8
 • 178 Interviews
Edelweiss Interview Questions
3.9
 • 58 Interviews
View all

Arcesium Reviews and Ratings

based on 299 reviews

3.6/5

Rating in categories

3.3

Skill development

3.0

Work-life balance

3.8

Salary

3.9

Job security

3.8

Company culture

3.3

Promotions

3.1

Work satisfaction

Explore 299 Reviews and Ratings
Senior Site Reliability Engineer - PSRE

Hyderabad / Secunderabad

6-10 Yrs

Not Disclosed

Product Lead - UBOR

Hyderabad / Secunderabad

5-10 Yrs

₹ 27-41 LPA

Product Lead - PerformA

Hyderabad / Secunderabad

2-8 Yrs

Not Disclosed

Explore more jobs
Senior Analyst
318 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Analyst
314 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
227 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
186 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Financial Analyst
153 salaries
unlock blur

₹0 L/yr - ₹0 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