Upload Button Icon Add office photos

Filter interviews by

Arcesium Senior Software Engineer 1 Interview Questions and Answers

Updated 24 Sep 2024

Arcesium Senior Software Engineer 1 Interview Experiences

1 interview found

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

Interview questions from similar companies

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

I applied via Naukri.com and was interviewed before Feb 2023. There were 4 interview rounds.

Round 1 - Coding Test 

Creating a full flow of spring boot application to take input and update database

Round 2 - Technical 

(1 Question)

  • Q1. Discussion of first round code and some other technical questions including coding
Round 3 - Behavioral 

(1 Question)

  • Q1. Basic questions on your profile and behavioural questions
Round 4 - HR 

(1 Question)

  • Q1. Salary negotiations and other perks discussion
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Job Portal and was interviewed before Mar 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Previous experience
Round 2 - Case Study 

Scenario based questions

I applied via Naukri.com and was interviewed in Feb 2022. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Java 8 , Microservices, AWS

Interview Preparation Tips

Interview preparation tips for other job seekers - Java8 , Microservices, AWS, Coding
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

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

Round 1 - Technical 

(1 Question)

  • Q1. Questions on java , spring boot , containarisation tools, coding, SOLID principles
Round 2 - Assignment 

5 coading questions were asked in it

Round 3 - HR 

(1 Question)

  • Q1. Manegerial round
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

It was pretty easy. Various theoretical questions on technical knowledge and 3 coding questions. Since I was applying for a .net profile, all questions were related to that only.

Round 2 - One-on-one 

(4 Questions)

  • Q1. Coding question on inheritance.
  • Q2. Coding question on Abstract classes and their application.
  • Q3. Discussion on the company, their culture.
  • Q4. Coding question on graph.
Round 3 - HR 

(2 Questions)

  • Q1. Asked me my expected salary even though it was already decided when they reached out to me.
  • Q2. Negotiations on the salary.

Interview Preparation Tips

Interview preparation tips for other job seekers - Had a very bad experience with HR, since they started negotiating on salary after I completed all my rounds. Giving me reasons why they won't be able to give me the salary that they mentioned at the start of the interview.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
No response
Round 1 - Technical 

(3 Questions)

  • Q1. Data structure [Array]
  • Q2. Core JAVA questions[ exception handling , OOPS , Collections Framework ]
  • Q3. JDBC and SQL questions
Round 2 - Technical 

(2 Questions)

  • Q1. Project discussion
  • Q2. Tell me one scenerio under which you did development
  • Ans. 

    Developed a mobile app for tracking daily water intake

    • Researched existing water tracking apps for inspiration

    • Designed user interface for easy input of water consumption

    • Implemented backend database to store user data

    • Tested app with beta users for feedback and improvements

  • Answered by AI
Interview experience
2
Poor
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Coding Test 

Online zoom coding test will be there - 4 questions - 2 about output of code & 2 about technical questions.

Round 2 - Technical 

(2 Questions)

  • Q1. Polymorphism and explain about virtual polymorphism
  • Ans. 

    Polymorphism is the ability of a single function or method to operate on different types of data.

    • Polymorphism allows objects of different classes to be treated as objects of a common superclass.

    • Virtual polymorphism is achieved through virtual functions in C++.

    • Virtual functions allow a function in a base class to be overridden in a derived class.

    • Example: Animal class with virtual function 'makeSound' overridden in Dog a

  • Answered by AI
  • Q2. Write code for virtual polymorphism and explain
  • Ans. 

    Virtual polymorphism allows objects of different classes to be treated as objects of a common superclass.

    • Create a base class with virtual functions

    • Create derived classes that override the virtual functions

    • Use pointers or references of the base class to call the overridden functions

  • Answered by AI
Round 3 - HR 

(3 Questions)

  • Q1. About yourself should explain
  • Q2. Reason for job change
  • Q3. Salary negotiations and location

Interview Preparation Tips

Interview preparation tips for other job seekers - I have interviewed for c++ developer role in incedo company - please make sure you are completely aware of every functions and keywords relate to c++ concepts.

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Coding Test 

C and Golang related questions, 2 Hours assement, The test involved writing code by hand in paper in the office (Bengaluru)

Round 2 - Technical 

(9 Questions)

  • Q1. Write a go code to remove duplicate elements from a slice.
  • Ans. 

    Go code to remove duplicate elements from a slice of strings

    • Use a map to keep track of unique elements

    • Iterate over the slice and add elements to the map

    • Create a new slice with unique elements from the map

  • Answered by AI
  • Q2. Difference between array and slice in Go.
  • Ans. 

    Arrays have fixed length, slices are dynamic and can grow/shrink. Slices are references to arrays.

    • Arrays have fixed length, specified at compile time.

    • Slices are dynamic, can grow or shrink at runtime.

    • Slices are references to arrays, allowing for more flexibility.

    • Example: var arr [3]string // array with fixed length of 3

    • Example: slice := make([]string, 0) // slice with dynamic length

  • Answered by AI
  • Q3. Explain struct and interface
  • Ans. 

    Struct is a user-defined data type that groups related data fields together. Interface defines a set of methods that a type must implement.

    • Struct is used to create complex data structures by grouping related data fields together.

    • Interface defines a set of methods that a type must implement. It allows for polymorphism in Go.

    • Example: type Person struct { Name string; Age int }

    • Example: type Shape interface { Area() float6...

  • Answered by AI
  • Q4. What is containerization.
  • Ans. 

    Containerization is a method of packaging, distributing, and running applications in isolated environments called containers.

    • Containers are lightweight, portable, and can run on any platform that supports containerization.

    • They include everything needed to run the application, such as code, runtime, system tools, libraries, and settings.

    • Popular containerization tools include Docker, Kubernetes, and Podman.

    • Containerizati...

  • Answered by AI
  • Q5. Write a go code to implement struct.
  • Ans. 

    Implementing a struct in Go code

    • Define a struct using the 'type' keyword

    • Add fields to the struct with their respective data types

    • Access struct fields using dot notation

  • Answered by AI
  • Q6. Explain goroutine.
  • Ans. 

    Goroutine is a lightweight thread managed by Go runtime, allowing concurrent execution of functions.

    • Goroutines are created using the 'go' keyword in Go programming language.

    • They are more lightweight than threads and are managed by the Go runtime.

    • Goroutines allow for concurrent execution of functions without the need for manual thread management.

    • Example: go myFunction()

    • Example: go func() { // code here }

  • Answered by AI
  • Q7. How do you achieve concurrency in Go?
  • Ans. 

    Concurrency in Go is achieved using goroutines and channels.

    • Use goroutines to run functions concurrently

    • Communicate between goroutines using channels

    • Avoid using shared memory for synchronization

  • Answered by AI
  • Q8. What is channel in Go? What are the differences between buffered and unbuffered channel?
  • Ans. 

    A channel in Go is a communication mechanism that allows goroutines to communicate with each other.

    • Buffered channels have a specific capacity and can send multiple values without the need for a corresponding receive operation immediately.

    • Unbuffered channels have no capacity and require both a send and receive operation to be ready at the same time for communication to occur.

  • Answered by AI
  • Q9. What is scaling? Horizontal and vertical scaling.
  • Ans. 

    Scaling refers to the ability of a system to handle increasing amounts of work or its potential to accommodate growth.

    • Horizontal scaling involves adding more machines to distribute the load, while vertical scaling involves increasing the resources of a single machine.

    • Horizontal scaling is more cost-effective and provides better fault tolerance, but can be more complex to implement.

    • Vertical scaling is simpler to impleme...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Study basic DSA. Learn C properly (Including deep concepts in pointer). Practice Golang. Also try to write solve some basic dsa problem in Go.

Skills evaluated in this interview

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

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

Round 1 - Coding Test 

Coding round is related to DSA

Round 2 - Technical 

(2 Questions)

  • Q1. Java related questions
  • Q2. Explain about your project
Round 3 - HR 

(2 Questions)

  • Q1. Salary negotiation
  • Q2. Why you want to join us?

Arcesium Interview FAQs

How many rounds are there in Arcesium Senior Software Engineer 1 interview?
Arcesium interview process usually has 3 rounds. The most common rounds in the Arcesium interview process are Technical.

Tell us how to improve this page.

Interview Questions from Similar Companies

HSBC Group Interview Questions
4.0
 • 487 Interviews
Goldman Sachs Interview Questions
3.6
 • 405 Interviews
TCS iON Interview Questions
3.9
 • 358 Interviews
Deutsche Bank Interview Questions
3.9
 • 356 Interviews
Morgan Stanley Interview Questions
3.7
 • 301 Interviews
Barclays Interview Questions
3.9
 • 268 Interviews
CitiusTech Interview Questions
3.4
 • 262 Interviews
NeoSOFT Interview Questions
4.0
 • 254 Interviews
Episource Interview Questions
3.9
 • 221 Interviews
View all
Arcesium Senior Software Engineer 1 Salary
based on 4 salaries
₹23 L/yr - ₹39 L/yr
52% more than the average Senior Software Engineer 1 Salary in India
View more details
Analyst
298 salaries
unlock blur

₹7.6 L/yr - ₹19 L/yr

Senior Analyst
292 salaries
unlock blur

₹9.5 L/yr - ₹29.5 L/yr

Senior Software Engineer
232 salaries
unlock blur

₹15 L/yr - ₹42 L/yr

Software Engineer
148 salaries
unlock blur

₹11.9 L/yr - ₹33.5 L/yr

Financial Analyst
148 salaries
unlock blur

₹8.5 L/yr - ₹19 L/yr

Explore more salaries
Compare Arcesium with

Edelweiss

3.9
Compare

JPMorgan Chase & Co.

4.1
Compare

Goldman Sachs

3.6
Compare

Morgan Stanley

3.7
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview