Upload Button Icon Add office photos

Arcesium

Compare button icon Compare button icon Compare

Filter interviews by

Arcesium Senior Software Engineer Interview Questions, Process, and Tips

Updated 15 Oct 2024

Top Arcesium Senior Software Engineer Interview Questions and Answers

View all 17 questions

Arcesium Senior Software Engineer Interview Experiences

7 interviews found

I applied via campus placement at National Institute of Technology (NIT), Raipur 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

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

I applied via Recruitment Consulltant and was interviewed before Oct 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Coding logical thinking

Round 2 - Technical 

(2 Questions)

  • Q1. Linux, logical thinking
  • Q2. Technical related to coding - DSA
Round 3 - Technical 

(2 Questions)

  • Q1. Techincal coding
  • Q2. Past exerience based questions

Senior Software Engineer Interview Questions Asked at Other Companies

asked in UST
Q1. Nth Prime Number Problem Statement Find the Nth prime number give ... read more
asked in Capgemini
Q2. Pascal's Triangle Construction You are provided with an integer ' ... read more
Q3. K Largest Elements Problem Statement You are given an integer k a ... read more
asked in Info Edge
Q4. Buy and Sell Stock Problem Statement Imagine you are Harshad Meht ... read more
asked in DBS Bank
Q5. Tell me about yourself. What technology are you using? What is a ... read more

I was interviewed in Oct 2021.

Round 1 - Video Call 

(6 Questions)

Round duration - 60 minutes
Round difficulty - Easy

It was my first round - they asked basics of OOPS,DBMS and operating systems. Be prepared with System Design also.

  • Q1. What are the ACID properties in database management systems?
  • Ans. 

    ACID properties are a set of properties that guarantee reliability and consistency in database transactions.

    • ACID stands for Atomicity, Consistency, Isolation, and Durability.

    • Atomicity ensures that a transaction is treated as a single unit of work, either all of its operations are executed or none.

    • Consistency ensures that a transaction brings the database from one valid state to another.

    • Isolation ensures that concurrent...

  • Answered by AI
  • Q2. What is a transaction in the context of a Database Management System (DBMS)?
  • Ans. 

    A transaction is a logical unit of work that consists of multiple database operations that must be executed as a single, indivisible unit.

    • A transaction ensures data consistency and integrity.

    • It follows the ACID properties: Atomicity, Consistency, Isolation, and Durability.

    • Transactions are used to maintain data integrity in databases.

    • Examples of transactions include transferring funds between bank accounts or updating i

  • Answered by AI
  • Q3. What is the difference between SQL and NoSQL databases?
  • Ans. 

    SQL databases are relational databases that use structured query language, while NoSQL databases are non-relational databases that use various data models.

    • SQL databases are based on a fixed schema, while NoSQL databases are schema-less.

    • SQL databases are better suited for complex queries and structured data, while NoSQL databases are better for unstructured and semi-structured data.

    • SQL databases ensure ACID (Atomicity, ...

  • Answered by AI
  • Q4. What is a semaphore?
  • Ans. 

    A semaphore is a synchronization object that controls access to a shared resource through the use of a counter.

    • Semaphores are used to manage concurrent access to shared resources in multi-threaded or multi-process environments.

    • They can be used to limit the number of threads or processes that can access a resource simultaneously.

    • Semaphores can have two types: counting semaphores and binary semaphores.

    • Counting semaphores...

  • Answered by AI
  • Q5. How can you achieve multitasking in Java?
  • Ans. 

    Multitasking in Java can be achieved using threads.

    • Create multiple threads to execute tasks concurrently.

    • Use the Thread class or the Runnable interface to define the tasks.

    • Use synchronization mechanisms like locks or semaphores to coordinate access to shared resources.

    • Java provides built-in support for multitasking with the Thread class and the Executor framework.

    • Example: creating two threads to perform different tasks

  • Answered by AI
  • Q6. Can you design a schema for restaurant applications, similar to Zomato?
  • Ans. 

    Design a schema for a restaurant app like Zomato.

    • Create tables for restaurants, users, reviews, and orders

    • Include columns for restaurant details like name, address, cuisine type

    • Include columns for user details like name, email, and password

    • Link reviews to restaurants and users

    • Link orders to restaurants and users

    • Consider additional tables for menu items, categories, and ratings

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAArcesium interview preparation:Topics to prepare for the interview - Data Structures, Operating Systems, System Design, DBMS, 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.
Tip 4 : Prepare OS and DBMS properly.

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

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

I applied via Recruitment Consulltant and was interviewed before Feb 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Minimum weight to reach bottom right corner in matrix starting from top left. you can move only down and right
  • Ans. 

    The minimum weight to reach the bottom right corner in a matrix starting from the top left by moving only down and right.

    • Use dynamic programming to calculate the minimum weight at each cell by considering the weights of the cells above and to the left.

    • At each cell, the minimum weight to reach that cell is the minimum of the weight of the cell itself plus the minimum weight of the cells above and to the left.

    • Example: Fo...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Try covering edge cases and communicating the thought process with the interviewer

Skills evaluated in this interview

Arcesium interview questions for designations

 Software Engineer

 (7)

 Junior Software Engineer

 (1)

 Software Engineer Intern

 (1)

 Senior Software Engineer 1

 (1)

 Software Developer

 (1)

 Software Developer Intern

 (5)

 Software Test Analyst

 (1)

 Senior Developer

 (1)

I applied via Instahyre and was interviewed in Oct 2021. There was 1 interview round.

Interview Questionnaire 

6 Questions

  • Q1. 1.Desgin Schema for restaurant apps like zomato.
  • Ans. 

    Design a schema for a restaurant app like Zomato.

    • Create tables for restaurants, menus, reviews, and users.

    • Include columns for restaurant name, location, cuisine, and ratings.

    • Add columns for menu items, prices, and descriptions.

    • Include user information such as name, email, and password.

    • Create relationships between tables using foreign keys.

    • Implement search and filter functionality for restaurants and menus.

    • Allow users t...

  • Answered by AI
  • Q2. Basics of DBMS-ACID properties
  • Q3. What is transaction?
  • Ans. 

    A transaction is a unit of work that is performed on a database.

    • A transaction is a sequence of database operations that are treated as a single unit of work.

    • It ensures that all the operations are completed successfully or none of them are performed.

    • Transactions are used to maintain data consistency and integrity in a database.

    • Examples of transactions include transferring money between bank accounts or updating inventor

  • Answered by AI
  • Q4. Difference between sql and nosql dbs
  • Ans. 

    SQL is a relational database while NoSQL is a non-relational database.

    • SQL databases use structured query language while NoSQL databases use unstructured query language.

    • SQL databases are vertically scalable while NoSQL databases are horizontally scalable.

    • SQL databases are good for complex queries while NoSQL databases are good for large amounts of unstructured data.

    • Examples of SQL databases include MySQL, Oracle, and Po...

  • Answered by AI
  • Q5. How to achieve multitasking in java
  • Ans. 

    Multitasking in Java can be achieved through multithreading.

    • Create a new thread using the Thread class or Runnable interface

    • Use the start() method to start the thread

    • Synchronize shared resources to avoid race conditions

    • Use wait() and notify() methods for inter-thread communication

    • Example: creating a thread to perform a long-running task while the main thread continues executing other tasks

  • Answered by AI
  • Q6. What is semaphores?
  • Ans. 

    Semaphores are a synchronization tool used to control access to a shared resource.

    • Semaphores can be used to prevent race conditions in multi-threaded programs.

    • They can be used to limit the number of concurrent accesses to a resource.

    • Semaphores can be binary (0 or 1) or counting (0 to n).

    • Examples of semaphore functions include wait(), signal(), and init().

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - It was my first round - they asked basics of OOPS,DBMS and operating systems. Be prepared with System Design also

Skills evaluated in this interview

Get interview-ready with Top Arcesium Interview Questions

I applied via Company Website and was interviewed in Nov 2021. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Hackerrank 3 ques binary tree
  • Q2. Multithreading, array question
  • Q3. LinkedList intersection

Interview Preparation Tips

Interview preparation tips for other job seekers - read about multithreading and why your are using a particular tech stack pros and cons

Senior Software Engineer Jobs at Arcesium

View all

I applied via Approached by Company and was interviewed in Jan 2022. There were 2 interview rounds.

Round 1 - Coding Test 

A 1-hour long coding test was conducted

Round 2 - Technical 

(1 Question)

  • Q1. Hashing and collision in hashing
  • Ans. 

    Hashing is a process of converting data into a fixed-size output. Collision occurs when two different inputs produce the same output.

    • Hashing is used for indexing and retrieving data quickly

    • Hash functions should be deterministic and produce the same output for the same input

    • Collisions can be resolved using techniques like chaining or open addressing

    • Examples of hashing algorithms include MD5, SHA-1, and SHA-256

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice for concepts and implementation of data structures by library

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(2 Questions)

  • Q1. What is the internal working of a hashmap?
  • Q2. Design a Least Recently Used (LRU) cache.
Round 2 - Technical 

(2 Questions)

  • Q1. What are the SOLID principles in software engineering?
  • Q2. What design patterns have you worked with?
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(2 Questions)

  • Q1. Difference between Scheduled script and Map reduce script?
  • Ans. 

    Scheduled script runs on a predefined schedule, while Map reduce script processes large datasets in parallel.

    • Scheduled script is used for automating tasks at specific times, like sending reports daily at 8am.

    • Map reduce script is used for processing large datasets by splitting them into smaller chunks and processing them in parallel.

    • Scheduled script is typically used for routine tasks, while Map reduce script is used fo...

  • Answered by AI
  • Q2. Types of scripts in NetSuite.
  • Ans. 

    Types of scripts in NetSuite include SuiteScript, SuiteTalk, SuiteFlow, and SuiteBuilder.

    • SuiteScript: JavaScript-based scripts for customizing NetSuite functionality.

    • SuiteTalk: Web services integration for connecting NetSuite with external systems.

    • SuiteFlow: Visual workflow tool for automating business processes.

    • SuiteBuilder: Customization tool for modifying NetSuite forms, fields, and records.

  • Answered by AI
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

Arcesium Interview FAQs

How many rounds are there in Arcesium Senior Software Engineer 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 Senior Software Engineer 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, Java, Automation, Algorithms and Data Structures.
What are the top questions asked in Arcesium Senior Software Engineer interview?

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

  1. Find first missing positive integer from an array for non-negative intege...read more
  2. Given list of strings group them into distinct anagra...read more
  3. Find least common ancestor of a binary tr...read more

Tell us how to improve this page.

Arcesium Senior Software Engineer Interview Process

based on 2 interviews

2 Interview rounds

  • Technical Round - 1
  • Technical Round - 2
View more
Arcesium Senior Software Engineer Salary
based on 226 salaries
₹15 L/yr - ₹42 L/yr
102% more than the average Senior Software Engineer Salary in India
View more details

Arcesium Senior Software Engineer Reviews and Ratings

based on 31 reviews

3.2/5

Rating in categories

3.1

Skill development

3.0

Work-life balance

3.2

Salary

3.9

Job security

3.5

Company culture

3.3

Promotions

3.0

Work satisfaction

Explore 31 Reviews and Ratings
Senior Software Engineer - Information Security

Hyderabad / Secunderabad

3-7 Yrs

Not Disclosed

Explore more jobs
Analyst
310 salaries
unlock blur

₹7.6 L/yr - ₹20 L/yr

Senior Analyst
310 salaries
unlock blur

₹9.5 L/yr - ₹28.5 L/yr

Senior Software Engineer
226 salaries
unlock blur

₹15 L/yr - ₹42 L/yr

Software Engineer
185 salaries
unlock blur

₹12 L/yr - ₹33 L/yr

Financial Analyst
150 salaries
unlock blur

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