Upload Button Icon Add office photos

Arcesium

Compare button icon Compare button icon Compare

Filter interviews by

Arcesium Interview Questions and Answers

Updated 12 Jun 2025
Popular Designations

118 Interview questions

A Clinical Data Analyst was asked 8mo ago
Q. How does the SUBTOTAL function work in Excel?
Ans. 

The subtotal function in Excel allows you to perform calculations on a filtered range of data.

  • The subtotal function can perform various calculations such as sum, average, count, etc. on a filtered range of data.

  • It ignores other subtotal functions within the range, preventing double counting.

  • You can specify which type of calculation to perform by using different function numbers.

  • For example, =SUBTOTAL(9, A1:A10) wi...

View all Clinical Data Analyst interview questions
A pcg consultant was asked 8mo ago
Q. Regarding futures and forwards, what are custom contracts?
Ans. 

Custom contracts in futures and forwards are agreements between two parties that are tailored to meet specific needs or requirements.

  • Custom contracts allow parties to negotiate terms such as quantity, price, delivery date, and other specifications.

  • These contracts are not standardized like exchange-traded futures and forwards, making them flexible and customizable.

  • Examples of custom contracts include over-the-count...

A Data Analyst was asked 8mo ago
Q. Write Python code to swap two numbers without using Python libraries.
Ans. 

This code swaps two numbers without using any Python libraries, utilizing basic arithmetic operations.

  • Use a temporary variable to hold one of the numbers during the swap.

  • Alternatively, use arithmetic operations (addition and subtraction) to swap without a temp variable.

  • Example using a temp variable: temp = a; a = b; b = temp.

  • Example using arithmetic: a = a + b; b = a - b; a = a - b.

View all Data Analyst interview questions
A Data Analyst was asked 8mo ago
Q. Write SQL code demonstrating the use of RANK, DENSE_RANK, and PARTITION BY.
Ans. 

SQL ranking functions help categorize data into ranks, with options for dense ranking and partitioning for grouped analysis.

  • RANK() assigns a unique rank to each row within a partition, with gaps for ties. Example: RANK() OVER (PARTITION BY department ORDER BY salary DESC).

  • DENSE_RANK() also assigns ranks but without gaps for ties. Example: DENSE_RANK() OVER (PARTITION BY department ORDER BY salary DESC).

  • PARTITION B...

View all Data Analyst interview questions
A Data Analyst was asked 8mo ago
Q. Write SQL code to solve use cases involving group by, having, and count.
Ans. 

SQL code using GROUP BY, HAVING, and COUNT to analyze data effectively.

  • GROUP BY aggregates data based on specified columns. Example: SELECT department, COUNT(*) FROM employees GROUP BY department;

  • HAVING filters aggregated data. Example: SELECT department, COUNT(*) FROM employees GROUP BY department HAVING COUNT(*) > 10;

  • COUNT() function counts rows or non-null values. Example: SELECT COUNT(*) FROM sales WHERE am...

View all Data Analyst interview questions
A Junior Software Engineer was asked 8mo ago
Q. Given a linked list, detect and remove the loop if it exists.
Ans. 

To remove a loop in a linked list, we can use Floyd's Cycle Detection Algorithm.

  • Use Floyd's Cycle Detection Algorithm to find the loop in the linked list.

  • Once the loop is detected, find the starting point of the loop using Floyd's algorithm.

  • Break the loop by setting the next pointer of the node before the starting point of the loop to null.

View all Junior Software Engineer interview questions
A Junior Software Engineer was asked 8mo ago
Q. Implement a stack using queues.
Ans. 

Implement a stack using two queues

  • Use two queues to simulate stack operations

  • Push operation: Enqueue the element to queue 1

  • Pop operation: Dequeue all elements from queue 1 to queue 2, dequeue the last element from queue 1, then swap the queues

  • Top operation: Return the front element of queue 1

  • Empty operation: Check if both queues are empty

View all Junior Software Engineer interview questions
Are these interview questions helpful?
A Management Trainee was asked 9mo ago
Q. What is the Black-Scholes model for pricing derivatives?
Ans. 

Black Scholes Pricing of Derivatives is a mathematical model used to calculate the theoretical price of European-style options.

  • Developed by Fischer Black, Myron Scholes, and Robert Merton in 1973.

  • Factors in the current stock price, strike price, time to expiration, volatility, risk-free interest rate, and dividends.

  • Assumes the option can only be exercised at expiration (European-style).

  • Used to determine the fair m...

View all Management Trainee interview questions
An Analyst was asked 10mo ago
Q. How do you calculate the yield on a bond?
Ans. 

Yield on a bond can be calculated by dividing the annual interest payment by the current market price of the bond.

  • Yield on a bond is calculated by dividing the annual interest payment by the current market price of the bond.

  • The formula for calculating yield on a bond is: Yield = (Annual Interest Payment / Current Market Price) * 100%

  • For example, if a bond pays $50 in annual interest and is currently priced at $1,0...

View all Analyst interview questions
A Sdet Automation Test Engineer was asked 10mo ago
Q. Given the head of a singly linked list, determine if the linked list has a cycle in it.
Ans. 

To find a loop in a linked list, use Floyd's Cycle Detection Algorithm.

  • Use two pointers - slow and fast, where slow moves one step at a time and fast moves two steps at a time.

  • If there is a loop, the two pointers will eventually meet at some point within the loop.

  • To find the starting point of the loop, reset one pointer to the head and move both pointers one step at a time until they meet again.

View all Sdet Automation Test Engineer interview questions

Arcesium Interview Experiences

85 interviews found

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

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

Round 1 - Coding Test 

Coding round with just one medium question. Not much complexity but, too much coding.

Round 2 - Coding Test 

A two pointer question with medium level complexity like find distance to nearest 1 in an array of 1s and zeroes

Round 3 - System design 

(2 Questions)

  • Q1. System design scenarios using sqs
  • Ans. 

    Using SQS for system design scenarios

    • Implementing a message queue system for decoupling components

    • Scaling the system by adding more SQS queues for different functionalities

    • Using SQS to handle asynchronous processing of tasks

    • Integrating SQS with other AWS services like Lambda for serverless architecture

  • Answered by AI
  • Q2. System design scenarios for enough monitoring and alarming
  • Ans. 

    Implementing system design scenarios for monitoring and alarming

    • Utilize monitoring tools like Prometheus, Grafana, or Nagios to collect and visualize data

    • Set up alerts based on predefined thresholds for key metrics

    • Implement a centralized logging system like ELK stack to track system behavior

    • Utilize distributed tracing tools like Jaeger or Zipkin to monitor request flows

    • Implement health checks for services to ensure the...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Nothing specific. But, good is not good enough as they compare your performance with few others

Skills evaluated in this interview

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 18 Oct 2024

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

I applied via Naukri.com and was interviewed in Sep 2024. There were 3 interview rounds.

Round 1 - Coding Test 

1 python question and 1 sql question for coding and rest were the mcqs based on sql and python.

Round 2 - Technical 

(2 Questions)

  • Q1. Python code was asked for checking the anagrams
  • Ans. 

    This code checks if two strings are anagrams by comparing sorted characters or using a frequency count.

    • An anagram is a word formed by rearranging the letters of another, e.g., 'listen' and 'silent'.

    • Method 1: Sort both strings and compare. Example: sorted('listen') == sorted('silent').

    • Method 2: Count character frequencies using collections.Counter. Example: Counter('listen') == Counter('silent').

    • Consider case sensitivit...

  • Answered by AI
  • Q2. Sql code asked to solve on screen share using various use cases like group by, having, count
  • Ans. 

    SQL code using GROUP BY, HAVING, and COUNT to analyze data effectively.

    • GROUP BY aggregates data based on specified columns. Example: SELECT department, COUNT(*) FROM employees GROUP BY department;

    • HAVING filters aggregated data. Example: SELECT department, COUNT(*) FROM employees GROUP BY department HAVING COUNT(*) > 10;

    • COUNT() function counts rows or non-null values. Example: SELECT COUNT(*) FROM sales WHERE amount ...

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. Python code was asked for swaping any number but without using python libraries
  • Q2. Sql code was asked using concepts of rank dense,rank, partition by
  • Ans. 

    SQL ranking functions help categorize data into ranks, with options for dense ranking and partitioning for grouped analysis.

    • RANK() assigns a unique rank to each row within a partition, with gaps for ties. Example: RANK() OVER (PARTITION BY department ORDER BY salary DESC).

    • DENSE_RANK() also assigns ranks but without gaps for ties. Example: DENSE_RANK() OVER (PARTITION BY department ORDER BY salary DESC).

    • PARTITION BY div...

  • Answered by AI

Interview Questions & Answers

user image Sriyansh Srivastava

posted on 23 Oct 2024

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

I applied via Company Website and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Technical 

(7 Questions)

  • Q1. Introduction and work ex based questions ?
  • Q2. Why this role what did u understand from the jd
  • Q3. Binary search how would u search a name in a directory how would u optimize this
  • Q4. Futures and forwards what are custom contracts
  • Ans. 

    Custom contracts in futures and forwards are agreements between two parties that are tailored to meet specific needs or requirements.

    • Custom contracts allow parties to negotiate terms such as quantity, price, delivery date, and other specifications.

    • These contracts are not standardized like exchange-traded futures and forwards, making them flexible and customizable.

    • Examples of custom contracts include over-the-counter (O...

  • Answered by AI
  • Q5. Option greeks delta theta
  • Q6. Std deviation weighted avg
  • Q7. What is derivatives

Interview Preparation Tips

Interview preparation tips for other job seekers - good communication and bith technical and finance knowledge is necessary for this role

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Recruitment Consulltant and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Detailed resume based questions
  • Q2. Product level improvements etc

Team Manager Interview Questions & Answers

user image Anonymous

posted on 5 Nov 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. About different journal entries
  • Q2. About different financial Instruments
Round 2 - Technical 

(2 Questions)

  • Q1. Journal entries
  • Q2. Financial Instruments

Analyst Interview Questions & Answers

user image Anonymous

posted on 19 Dec 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What do you know About CDS?
  • Ans. 

    A Credit Default Swap (CDS) is a financial derivative that allows an investor to 'swap' or transfer credit risk with another party.

    • CDS are used to hedge against the risk of default on debt instruments, such as bonds.

    • For example, if an investor holds a corporate bond, they can buy a CDS to protect against the risk of the company defaulting.

    • The buyer of a CDS pays periodic premiums to the seller, who agrees to compensate...

  • Answered by AI
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I appeared for an interview in May 2024.

Round 1 - Coding Test 

Hacker rank test, coding for one big question, ample time given of around 90 mins

Round 2 - Technical 

(2 Questions)

  • Q1. Basics of current project
  • Q2. Design historical pricing app for equity
  • Ans. 

    Design a historical pricing app for equity

    • Utilize a database to store historical pricing data for equities

    • Implement a user-friendly interface for users to search and view historical pricing

    • Include features such as chart visualization, comparison tools, and customizable date ranges

    • Consider incorporating real-time data updates and alerts for price changes

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. Project discussion
  • Q2. Design a app which will bring data from lot of external vendors in different formats
  • Ans. 

    Design an app to bring data from external vendors in different formats

    • Create a data ingestion pipeline to collect data from various vendors

    • Implement data transformation processes to standardize formats

    • Utilize APIs or web scraping techniques to retrieve data from vendors

    • Use a database to store and manage the collected data

    • Implement data validation and cleansing techniques to ensure data quality

  • Answered by AI
Round 4 - Technical 

(2 Questions)

  • Q1. Project discussion
  • Q2. Role discussion and team fitment

Interview Preparation Tips

Interview preparation tips for other job seekers - Long interview process, be patient
I did not get through, it was a bit disappointing but overall experience was good.

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Was asked 30 mcq technical questions and one dsa question which as basic string based.

Round 2 - Technical 

(2 Questions)

  • Q1. Remove a loop in linked list
  • Ans. 

    To remove a loop in a linked list, we can use Floyd's Cycle Detection Algorithm.

    • Use Floyd's Cycle Detection Algorithm to find the loop in the linked list.

    • Once the loop is detected, find the starting point of the loop using Floyd's algorithm.

    • Break the loop by setting the next pointer of the node before the starting point of the loop to null.

  • Answered by AI
  • Q2. Implement stack using queues
  • Ans. 

    Implement a stack using two queues

    • Use two queues to simulate stack operations

    • Push operation: Enqueue the element to queue 1

    • Pop operation: Dequeue all elements from queue 1 to queue 2, dequeue the last element from queue 1, then swap the queues

    • Top operation: Return the front element of queue 1

    • Empty operation: Check if both queues are empty

  • Answered by AI

Skills evaluated in this interview

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

I applied via Company Website and was interviewed in Jun 2024. There were 3 interview rounds.

Round 1 - Coding Test 

3 questions, medium hard

Round 2 - Technical 

(2 Questions)

  • Q1. Greedy Algorithm, simple jumps question, easily approachable by greedy algorithm
  • Q2. Binary Search, simple array based
Round 3 - Technical 

(2 Questions)

  • Q1. DBMS, Projects, SQL Queries
  • Q2. 2 coding questions
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Find the missing number in a permutation array
  • Ans. 

    Find the missing number in a permutation array

    • Iterate through the array and calculate the sum of all numbers

    • Calculate the sum of all numbers from 1 to n (where n is the length of the array)

    • Subtract the sum of the array from the sum of all numbers to find the missing number

  • Answered by AI
  • Q2. Find if there is a loop in linked list
  • Ans. 

    To find a loop in a linked list, use Floyd's Cycle Detection Algorithm.

    • Use two pointers - slow and fast, where slow moves one step at a time and fast moves two steps at a time.

    • If there is a loop, the two pointers will eventually meet at some point within the loop.

    • To find the starting point of the loop, reset one pointer to the head and move both pointers one step at a time until they meet again.

  • Answered by AI
Round 2 - Coding Test 

Leetcode medium level questions, sql query, puzzle, test writing for api

Skills evaluated in this interview

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 31 Aug 2024

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Recruitment Consulltant and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Basic to Intermediate SQL Based questions
  • Q2. Basic to Intermediate Python Based questions

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Arcesium?
Ask anonymously on communities.

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, Java, Asset Management and Analytical.
What are the top questions asked in Arcesium interview?

Some of the top questions asked at the Arcesium interview -

  1. Given a grid which represents an ocean( For all index i,j if mat[i][j] = 1 is i...read more
  2. What is the duration of the bond & explain its u...read more
  3. What is Enterprise value? What is equity value? Can EV value be greater than en...read more
What are the most common questions asked in Arcesium HR round?

The most common HR questions asked in Arcesium interview are -

  1. Why are you looking for a chan...read more
  2. What are your salary expectatio...read more
  3. Why should we hire y...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.

Overall Interview Experience Rating

3.9/5

based on 61 interview experiences

Difficulty level

Easy 10%
Moderate 66%
Hard 24%

Duration

Less than 2 weeks 50%
2-4 weeks 30%
4-6 weeks 15%
More than 8 weeks 5%
View more

Interview Questions from Similar Companies

TCS iON Interview Questions
3.9
 • 385 Interviews
ITC Infotech Interview Questions
3.7
 • 376 Interviews
CitiusTech Interview Questions
3.3
 • 290 Interviews
NeoSOFT Interview Questions
3.6
 • 280 Interviews
Altimetrik Interview Questions
3.7
 • 240 Interviews
Episource Interview Questions
3.9
 • 224 Interviews
Xoriant Interview Questions
4.1
 • 213 Interviews
INDIUM Interview Questions
4.0
 • 198 Interviews
Incedo Interview Questions
3.1
 • 193 Interviews
View all

Arcesium Reviews and Ratings

based on 335 reviews

3.5/5

Rating in categories

3.2

Skill development

2.9

Work-life balance

3.7

Salary

3.7

Job security

3.7

Company culture

3.3

Promotions

3.0

Work satisfaction

Explore 335 Reviews and Ratings
Senior Product Specialist/Product Lead - TRD

Hyderabad / Secunderabad

3-6 Yrs

Not Disclosed

Consultant - CCG

Hyderabad / Secunderabad

0-3 Yrs

Not Disclosed

Senior Sales Executive - Digital Assets

Hyderabad / Secunderabad

10-15 Yrs

Not Disclosed

Explore more jobs
Senior Analyst
396 salaries
unlock blur

₹10 L/yr - ₹27 L/yr

Analyst
324 salaries
unlock blur

₹7.6 L/yr - ₹20.5 L/yr

Senior Software Engineer
253 salaries
unlock blur

₹25 L/yr - ₹43 L/yr

Financial Analyst
160 salaries
unlock blur

₹10.2 L/yr - ₹19 L/yr

Software Engineer
158 salaries
unlock blur

₹12 L/yr - ₹33.7 L/yr

Explore more salaries
Compare Arcesium with

ITC Infotech

3.7
Compare

CMS IT Services

3.1
Compare

KocharTech

3.9
Compare

3i Infotech

3.4
Compare
write
Share an Interview