Upload Button Icon Add office photos

Arcesium

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Arcesium Software Engineer Intern Interview Questions, Process, and Tips

Updated 31 Jul 2022

Arcesium Software Engineer Intern Interview Experiences

1 interview found

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

Interview questions from similar companies

Interview Preparation Tips

Round: Test
Experience: The written test was quite similar to the typical CAT pattern. It contained sections on Reading Comprehension, Data Interpretation and Mathematics.

Round: Technical + HR Interview
Experience: There were 2 interviewers in the first interview, one was a technical guy and the other was from HR. They asked me a few very simple puzzles, a few basic programming questions (swapping the value of two variables etc.), questions related to the development cycle of software products. The HR guy asked stuff like what do you want to achieve in life? Strengths, weaknesses etc.

Round: Case Study Interview
Experience: The third interview was the most important one (and I guess that was the deciding interview). The interviewer started with questions like why finance? Which companies are you sitting for? Then he gave me a case study:

Interview Questionnaire 

2 Questions

  • Q1. Oops, os, dbms, project
  • Q2. Why hsbc, why should I hire you.
  • Ans. 

    I have a strong background in software engineering and a passion for innovation, making me a valuable asset to HSBC.

    • I have a proven track record of successfully delivering high-quality software solutions in previous roles.

    • I am highly skilled in various programming languages and technologies, including Java, Python, and SQL.

    • I have experience working in agile development environments, allowing me to adapt quickly to chan...

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: 4 sections, 15 questions each. Sections on apti, english, programming, technical.
Tips: Time management, complete english and technical first
Duration: 1 hour
Total Questions: 60

Round: Group Discussion
Experience: We were asked which super hero would you like to be. Shared the information. Always present the positives and negatives and emphasize that despite of being negatives
Tips: Think everything through before speaking
Duration: 40 minutes

Round: Technical Interview
Experience: Prepare well, anything can be asked on the things written on your resume

Round: HR Interview
Experience: Sell yourself. Tell them why you would be the best candidate.
Tips: Tell your advantages of being a fresher that you would be comfortable in any technology

College Name: Acropolis institute of technology and research

I was interviewed in Sep 2017.

Interview Questionnaire 

4 Questions

  • Q1. Technical interview take by client technical person actually they are hiring for another client so they took total 3 technical round and final will HR round
  • Q2. Asking about life cycle of Dot net mvc contols entity frame work and SQL queries
  • Q3. Problem based on oops and SQL queries outputs
  • Q4. Basic questions about my self ,salary discussion basic formalities form I have to fill up

Interview Preparation Tips

Round: Test
Experience: There were around 15 objective question that includes mvc, c#.net and SQL server. It was very simple question like different types of filters,Acton results in mvc. Basic oops concept and dot net web page regarding

Round: Resume Shortlist
Experience: After completing test round another was technical round discussed maily for mvc and SQL server questions. Around 30 mint discussion. After qualify this round another round will start from client technical staff.

General Tips: It was for 2-3 year experience person very simple to crack but focus on you which profile you are looking for study interview questions from net
Skills: Dot net mve oops concept jQuery and SQL server

I was interviewed before Mar 2021.

Round 1 - Face to Face 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Medium

Technical round with questions on DSA and OS.

  • Q1. 

    LRU Cache Design Problem Statement

    Design and implement a data structure for a Least Recently Used (LRU) cache that supports the following operations:

    • get(key) - Retrieve the value associated with the...
  • Ans. 

    Design and implement a Least Recently Used (LRU) cache data structure that supports get and put operations with a specified capacity.

    • Implement a doubly linked list to keep track of the order of keys based on their usage.

    • Use a hashmap to store key-value pairs for quick access and updates.

    • When a key is accessed or updated, move it to the front of the linked list to mark it as the most recently used.

    • When the cache reaches...

  • Answered by AI
  • Q2. 

    Maximum of All Subarrays of Size K

    Given an array of non-negative integers and an integer K representing the length of a subarray, your task is to determine the maximum elements for each subarray of size ...

  • Ans. 

    Find the maximum elements for each subarray of size K in a given array.

    • Iterate through the array and maintain a deque to store the indices of elements in decreasing order.

    • Pop elements from the deque that are out of the current window.

    • Keep track of the maximum element in each subarray of size K.

    • Return the maximum elements for each subarray.

  • Answered by AI
  • Q3. What is virtual memory?
  • Ans. 

    Virtual memory is a memory management technique that allows a computer to compensate for physical memory shortages by temporarily transferring data from RAM to disk storage.

    • Virtual memory allows programs to use more memory than is physically available on the system.

    • It helps in multitasking by allowing multiple programs to run simultaneously without running out of memory.

    • Virtual memory uses a combination of RAM and disk...

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAGoldman Sachs interview preparation:Topics to prepare for the interview - Coding Skills, Operating Systems , Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 5 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 applied via Campus Placement and was interviewed before Sep 2020. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Few DSA questions, questions about my projects and my resume. Also, since I specialise in python, if I could create an API using it. HR questions, hobbies, leadership experience...

Interview Preparation Tips

Interview preparation tips for other job seekers - Understanding the culture of J.P. Morgan Chase played a big role in passing the interview. The coding questions were easy/medium level. The interviewers were very friendly.

Interview Questionnaire 

3 Questions

  • Q1. I was basically asked the programming language that I know, then all the questions from that only.
  • Q2. OOPS concept
  • Q3. Basic questions on DBMS

I applied via Referral and was interviewed in May 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Tell me about your self

Interview Preparation Tips

Interview preparation tips for other job seekers - Non huge jbijoh ibihbih ih8hihihi ihihihibu

I applied via Referral and was interviewed in Jun 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. OOP

Interview Preparation Tips

Interview preparation tips for other job seekers - Nice

Interview Questionnaire 

1 Question

  • Q1. They asked about techenical question
Contribute & help others!
anonymous
You can choose to be anonymous

Arcesium Interview FAQs

How many rounds are there in Arcesium Software Engineer Intern interview?
Arcesium interview process usually has 5 rounds. The most common rounds in the Arcesium interview process are Technical, HR and Aptitude Test.
How to prepare for Arcesium Software Engineer Intern 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 Data Privacy, Finance, Medical Coding, Mobile Application Design and SQL.
What are the top questions asked in Arcesium Software Engineer Intern interview?

Some of the top questions asked at the Arcesium Software Engineer Intern interview -

  1. Minimum weight to reach bottom right corner in matrix starting from top left. Y...read more
  2. Find nearest index of character in string for each ind...read more
  3. Missing number in array in 1 t...read more

Recently Viewed

JOBS

Arcesium

No Jobs

JOBS

JPMorgan Chase & Co.

No Jobs

JOBS

Ventura Securities

No Jobs

JOBS

Ventura Securities

No Jobs

JOBS

Head Digital Works

No Jobs

JOBS

Huntsmen & Barons

No Jobs

JOBS

Arcesium

No Jobs

REVIEWS

Coal India

No Reviews

JOBS

Arcesium

No Jobs

LIST OF COMPANIES

Coal India

Locations

Tell us how to improve this page.

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
CitiusTech Interview Questions
3.4
 • 269 Interviews
NeoSOFT Interview Questions
3.7
 • 261 Interviews
View all
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