Upload Button Icon Add office photos

Arcesium

Compare button icon Compare button icon Compare

Filter interviews by

Arcesium Interview Questions and Answers for Freshers

Updated 12 Jun 2025
Popular Designations

31 Interview questions

A Financial Analyst was asked
Q. What are futures and forward contracts?
Ans. 

Futures and forward contracts are financial agreements to buy or sell an asset at a specified price on a future date.

  • Futures contracts are standardized and traded on exchanges, while forward contracts are customized and traded over-the-counter.

  • Both contracts involve an agreement to buy or sell an asset at a predetermined price on a future date.

  • Futures contracts require daily settlement of gains and losses, while f...

View all Financial Analyst interview questions
A Software Engineer Intern was asked
Q. Implement Topological Sort. Provide a dry run example to demonstrate its functionality.
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 ...

View all Software Engineer Intern interview questions
A Software Engineer Intern was asked
Q. Given a string, find the nearest index of a given character for each index in the string.
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.

View all Software Engineer Intern interview questions
🔥 Asked by recruiter 2 times
A Software Engineer Intern was asked
Q. Given a matrix, find the minimum weight path to reach the bottom right corner from the top left corner. You can only move 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...

View all Software Engineer Intern interview questions
A Software Engineer Intern was asked
Q. 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

View all Software Engineer Intern interview questions
🔥 Asked by recruiter 2 times
A Software Engineer Intern was asked
Q. Given an array containing n distinct numbers taken from 0, 1, 2, ..., n, find the one that is missing from the array.
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

View all Software Engineer Intern interview questions
A Senior Software Engineer was asked
Q. Given a binary tree, find the lowest common ancestor (LCA) of two given nodes in the tree. The lowest common ancestor is defined between two nodes p and q as the lowest node in T that has both p and q as de...
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.

View all Senior Software Engineer interview questions
Are these interview questions helpful?
A Senior Software Engineer was asked
Q. Given an unsorted array of integers, find the smallest missing positive integer.
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

View all Senior Software Engineer interview questions
A Senior Software Engineer was asked
Q. Given a 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.

View all Senior Software Engineer interview questions
A Senior Software Engineer was asked
Q. 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

View all Senior Software Engineer interview questions

Arcesium Interview Experiences for Freshers

14 interviews found

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Mar 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Finance and derivates

Round 2 - Technical 

(2 Questions)

  • Q1. Why mba elaborate?
  • Ans. 

    An MBA provides a well-rounded business education, networking opportunities, and career advancement potential.

    • An MBA helps develop a strong foundation in business principles and practices.

    • It offers opportunities to network with industry professionals and alumni.

    • Having an MBA can lead to higher earning potential and career advancement.

    • Specializations in areas like finance, marketing, or entrepreneurship can provide focu...

  • Answered by AI
  • Q2. Why are you passionate about finance and CV related questions
Round 3 - HR 

(2 Questions)

  • Q1. Strengths and weaknesses
  • Q2. Why do you think we should hire you
  • Ans. 

    I am a dedicated and motivated individual with a strong background in finance and a proven track record of success.

    • I have a solid understanding of financial principles and have excelled in relevant coursework

    • I have previous internship experience in finance where I successfully completed projects and contributed to the team

    • I am a quick learner and eager to expand my knowledge and skills in the finance industry

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Arcesium Finance Intern interview:
  • Financial Accounting
Interview experience
4
Good
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in May 2023. There were 5 interview rounds.

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 - Aptitude Test 

30 Mins Test, Questions related to Aptitude, Options and Finance

Round 3 - Technical 

(1 Question)

  • Q1. Questions related to Derivatives, Call and Put Options, Finance and Puzzle
Round 4 - Technical 

(1 Question)

  • Q1. Questions related to previous work experience, Options and Derivatives were asked mostly, Difference bw Hedge Funds and Mutual Funds, Option Greeks, Capm model, Effect of Corporate Actions on Share Prices
Round 5 - HR 

(1 Question)

  • Q1. Salary Negotiation

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:
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 

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:
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 

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
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

SDE Intern Interview Questions & Answers

user image Anonymous

posted on 20 Sep 2023

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

I applied via Campus Placement and was interviewed before Sep 2022. There were 3 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 - Coding Test 

2 hrs, topics : mcq + 2 coding ques, mettl

Round 3 - Technical 

(2 Questions)

  • Q1. Left view of binary tree
  • Ans. 

    Left view of a binary tree is the set of nodes visible when the tree is viewed from the left side.

    • Traverse the tree level by level from left to right

    • At each level, add the first node encountered to the result array

    • Continue this process until all levels are traversed

  • Answered by AI
  • Q2. Oops and java core concepts

Interview Preparation Tips

Interview preparation tips for other job seekers - please prepare for dsa

Skills evaluated in this interview

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

I applied via Company Website and was interviewed before Mar 2023. There were 4 interview rounds.

Round 1 - Aptitude Test 

Derivatives, Economics,Finance, General Awareness, Logical Reasoning

Round 2 - One-on-one 

(2 Questions)

  • Q1. What are futures and forward contracts?
  • Ans. 

    Futures and forward contracts are financial agreements to buy or sell an asset at a specified price on a future date.

    • Futures contracts are standardized and traded on exchanges, while forward contracts are customized and traded over-the-counter.

    • Both contracts involve an agreement to buy or sell an asset at a predetermined price on a future date.

    • Futures contracts require daily settlement of gains and losses, while forwar...

  • Answered by AI
  • Q2. Options, Option Greeks, Option Pricing Models, Inventory Management Techniques
Round 3 - One-on-one 

(2 Questions)

  • Q1. What is Beta, Required Return, Methods of calculating required return?
  • Ans. 

    Beta is a measure of a stock's volatility, required return is the minimum return an investor expects, methods include CAPM and DDM.

    • Beta measures a stock's volatility in relation to the market.

    • Required return is the minimum return an investor expects to compensate for the risk of an investment.

    • Methods of calculating required return include Capital Asset Pricing Model (CAPM) and Dividend Discount Model (DDM).

    • CAPM formula...

  • Answered by AI
  • Q2. Stock Split, What happens to value of options after stock split?
  • Ans. 

    After a stock split, the value of options will be adjusted based on the new stock price and the split ratio.

    • Value of options will be adjusted based on the new stock price and the split ratio

    • Number of options will increase proportionally to the split ratio

    • Strike price of options will decrease proportionally to the split ratio

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. Location Preference

I appeared for an interview in Aug 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 45 minutes
Round difficulty - Medium

2 coding questions were given to solve in 45 minutes.

  • Q1. 

    Determine the Left View of a Binary Tree

    You are given a binary tree of integers. Your task is to determine the left view of the binary tree. The left view consists of nodes that are visible when the tree...

  • Ans. 

    The task is to determine the left view of a binary tree, which consists of nodes visible when viewed from the left side.

    • Traverse the binary tree in a level order manner and keep track of the leftmost node at each level.

    • Use a queue to perform level order traversal of the binary tree.

    • Maintain a count of nodes at each level to identify the leftmost node.

    • Return the leftmost nodes at each level as the left view of the binar...

  • Answered by AI
  • Q2. 

    Number of Islands Problem Statement

    You are given a non-empty grid that consists of only 0s and 1s. Your task is to determine the number of islands in this grid.

    An island is defined as a group of 1s (re...

  • Ans. 

    The task is to determine the number of islands in a grid consisting of 0s and 1s.

    • Iterate through the grid and perform depth-first search (DFS) to find connected 1s.

    • Mark visited 1s as 0 to avoid counting them again.

    • Increment the island count each time a new island is found.

    • Consider all 8 adjacent cells (horizontally, vertically, diagonally) while performing DFS.

    • Handle edge cases like out of bounds and already visited ce...

  • Answered by AI
Round 2 - Video Call 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Medium

This was a 60 min technical interview round. The interviewer asked me to code 2 programming questions. 
Tip : Practice more to clear DSA problems. Medium level questions will be enough to clear the rounds.

  • Q1. 

    Topological Sort Problem Statement

    Given a Directed Acyclic Graph (DAG) consisting of V vertices and E edges, your task is to find any topological sorting of this DAG. You need to return an array of size ...

  • Ans. 

    Implement a function to find any topological sorting of a Directed Acyclic Graph (DAG).

    • Use Depth First Search (DFS) to traverse the graph and add vertices to the result in reverse order of finishing times.

    • Maintain a visited array to keep track of visited vertices to avoid revisiting them.

    • Start DFS from any unvisited vertex and recursively explore its neighbors.

    • Once all neighbors are visited, add the current vertex to t...

  • Answered by AI
  • Q2. 

    N-th Node From The End Problem Statement

    You are provided with a Singly Linked List containing integers. Your task is to determine the N-th node from the end of the list.

    Example:

    Input:
    If the list is...
  • Ans. 

    Find the N-th node from the end of a Singly Linked List containing integers.

    • Traverse the list to find the length L of the list.

    • Calculate the position of the N-th node from the beginning as L - N + 1.

    • Traverse the list again to reach the calculated position and return the node's value.

    • Handle edge cases like N being equal to 1 or equal to the length of the list.

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAArcesium interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, OS, DBMS, Aptitude, OOPSTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewRejected

Skills evaluated in this interview

I appeared for an interview in Jul 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 45 minutes
Round difficulty - Medium

It was an online coding round where we were supposed to solve 2 coding questions in 45 minutes.

  • Q1. 

    Maximum Meetings Problem Statement

    Given the schedule of N meetings with their start time Start[i] and end time End[i], you need to determine which meetings can be organized in a single meeting room such ...

  • Ans. 

    Given N meetings with start and end times, determine the maximum number of meetings that can be organized in a single room without overlap.

    • Sort the meetings based on their end times.

    • Iterate through the sorted meetings and select the first meeting that does not overlap with the previous one.

    • Repeat the process until all meetings are considered.

    • Return the selected meetings in the order they are organized.

  • Answered by AI
  • Q2. 

    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. 

    Given 'N' ropes of varying lengths, find the minimum cost to connect all ropes into one single rope.

    • Sort the lengths of ropes in ascending order.

    • Keep connecting the two shortest ropes at each step.

    • Update the total cost by adding the lengths of the connected ropes.

    • Repeat until all ropes are connected.

    • Return the total cost as the minimum cost to connect all ropes.

  • Answered by AI
Round 2 - Video Call 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Medium

The interview was conducted online. The interviewer asked me 2 programming questions and questions on OOPS concepts.

  • Q1. 

    Bottom View of Binary Tree

    Given a binary tree, determine and return its bottom view when viewed from left to right. Assume that each child of a node is positioned at a 45-degree angle from its parent.

    N...

  • Ans. 

    Given a binary tree, return the bottom view of the tree when viewed from left to right.

    • Traverse the tree level by level and keep track of the horizontal distance of each node from the root.

    • For each horizontal distance, store the node with the maximum depth in a map.

    • After traversing the entire tree, return the values of the map in sorted order of their horizontal distance.

  • Answered by AI
  • Q2. 

    Serialize and Deserialize Binary Tree Problem Statement

    Given a binary tree of integers, your task is to implement serialization and deserialization methods. You can choose any algorithm for serialization...

  • Ans. 

    Implement serialization and deserialization methods for a binary tree of integers.

    • Use level order traversal for serialization and deserialization.

    • Use -1 to represent null nodes in the binary tree.

    • Ensure the serialized string can be correctly decoded back to form the original binary tree.

  • Answered by AI
  • Q3. Can you explain the concept of virtual destructors in C++?
  • Ans. 

    Virtual destructors in C++ are used to ensure that the correct destructor is called when deleting an object through a base class pointer.

    • Virtual destructors are declared with the 'virtual' keyword in the base class to allow proper cleanup of derived class objects.

    • When deleting an object through a base class pointer, having a virtual destructor ensures that the destructor of the derived class is called.

    • Without a virtual...

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAArcesium interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them
Tip 4 : One should have strong DSA skills and knowledge of Basic OOPS. Its not necessary to learn OS and DBMS if it's not taught in your college yet.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Campus Placement and was interviewed in Jul 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. 1) Maximum meetings in one room 2)Bottom view of tree 3) Serialize deserialize binary tree 4) Difference between Virtual destructor in java and c++
  • Ans. 

    Interview questions for Software Developer Intern

    • Maximum meetings in one room can be calculated using greedy approach

    • Bottom view of tree can be obtained using level order traversal and a map to store horizontal distance

    • Serialization and deserialization of binary tree can be done using preorder traversal

    • Virtual destructor in Java is automatically called while in C++ it needs to be explicitly defined

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - One should have strong DSA skills and knowledge of Basic OOPS. Its not necessary to learn OS and DBMS if it's not taught in your college yet

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
1w (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Arcesium?
Ask anonymously on communities.

Arcesium Interview FAQs

How many rounds are there in Arcesium interview for freshers?
Arcesium interview process for freshers usually has 3-4 rounds. The most common rounds in the Arcesium interview process for freshers are Technical, Coding Test and Aptitude Test.
How to prepare for Arcesium interview for freshers?
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 Excel, Accounts Receivable, Brs, Communication Skills and Employee Engagement.
What are the top questions asked in Arcesium interview for freshers?

Some of the top questions asked at the Arcesium interview for freshers -

  1. Given a grid which represents an ocean( For all index i,j if mat[i][j] = 1 is i...read more
  2. Find first missing positive integer from an array for non-negative intege...read more
  3. Minimum weight to reach bottom right corner in matrix starting from top left. Y...read more
What are the most common questions asked in Arcesium HR round for freshers?

The most common HR questions asked in Arcesium interview are for freshers -

  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

4.4/5

based on 5 interview experiences

Difficulty level

Easy 20%
Moderate 60%
Hard 20%

Duration

Less than 2 weeks 80%
2-4 weeks 20%
View more

Interview Questions from Similar Companies

TCS iON Interview Questions
3.8
 • 386 Interviews
ITC Infotech Interview Questions
3.7
 • 377 Interviews
CitiusTech Interview Questions
3.3
 • 290 Interviews
NeoSOFT Interview Questions
3.6
 • 280 Interviews
Altimetrik Interview Questions
3.7
 • 242 Interviews
Episource Interview Questions
3.9
 • 224 Interviews
Xoriant Interview Questions
4.1
 • 214 Interviews
INDIUM Interview Questions
4.0
 • 198 Interviews
Incedo Interview Questions
3.0
 • 193 Interviews
View all

Arcesium Reviews and Ratings

based on 336 reviews

3.5/5

Rating in categories

3.2

Skill development

2.9

Work-life balance

3.7

Salary

3.8

Job security

3.7

Company culture

3.3

Promotions

3.0

Work satisfaction

Explore 336 Reviews and Ratings
Functional Solutions Architect - Forward Deployed Team

Hyderabad / Secunderabad

7-12 Yrs

Not Disclosed

Manager - FIA

Hyderabad / Secunderabad

4-7 Yrs

Not Disclosed

Senior Product Specialist/Product Lead - TRD

Hyderabad / Secunderabad

3-6 Yrs

Not Disclosed

Explore more jobs
Senior Analyst
385 salaries
unlock blur

₹14.6 L/yr - ₹25.4 L/yr

Analyst
327 salaries
unlock blur

₹10.2 L/yr - ₹19 L/yr

Senior Software Engineer
252 salaries
unlock blur

₹25 L/yr - ₹43 L/yr

Manager
162 salaries
unlock blur

₹23 L/yr - ₹38.5 L/yr

Software Engineer
157 salaries
unlock blur

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