Upload Button Icon Add office photos

Filter interviews by

Arcesium Junior Software Engineer Interview Questions and Answers

Updated 16 Oct 2024

Arcesium Junior Software Engineer Interview Experiences

1 interview found

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 questions from similar companies

Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Jul 2023. There were 4 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 

Some logical, reasoning and aptitude questions was given as multiple choice options.

Round 3 - Coding Test 

How would you implement Binary search ?

Round 4 - HR 

(4 Questions)

  • Q1. Why are you join to this company what do you know about this company?
  • Q2. What is the salary expectations from us?
  • Q3. What is the OOPS concepts? Why are using oops concepts?
  • Ans. 

    OOPS concepts refer to Object-Oriented Programming concepts such as inheritance, encapsulation, polymorphism, and abstraction. They are used to create modular, reusable, and maintainable code.

    • Inheritance: Allows a class to inherit properties and behavior from another class. Example: Parent class 'Animal' and child class 'Dog'.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit. Example:...

  • Answered by AI
  • Q4. Are you comfortable for the rotational shifts?

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Campus Placement and was interviewed in Jan 2023. There were 4 interview rounds.

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

First step is aptitude test . This questions are easy.

Round 3 - Coding Test 

In that aptitude test another section is coding question(2 questions)

Round 4 - Technical 

(2 Questions)

  • Q1. They generally ask basic questions like- what is stack? some queries in SQL
  • Q2. How to create login form in html?
  • Ans. 

    To create a login form in HTML, use the

    element with input fields for username and password.

    • Use the element to create the form.

    • Add elements for username and password fields.

    • Set the 'type' attribute of the input fields to 'text' or 'password'.

    • Include a submit button using the element with 'type' set to 'submit'.

Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for resume based question. In my resume I mentioned ReactJS, so they ask basic question about it.

Skills evaluated in this interview

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

I applied via Company Website and was interviewed in Jul 2023. There was 1 interview round.

Round 1 - HR 

(2 Questions)

  • Q1. Confidence and bold speaking with our questions
  • Q2. What about you salary

Interview Preparation Tips

Topics to prepare for CMS IT Services Junior Software Developer interview:
  • Java
  • Python
  • CSS
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 Apr 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Basic Aptitude test, along with coding questions.

Round 2 - Technical 

(2 Questions)

  • Q1. DevOps, Java, Python and dbms
  • Q2. Technical questions related to oops and devops.
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 

All online coding in java and other tecs,

Round 3 - Technical 

(2 Questions)

  • Q1. Java , oops , collection, mvc boot
  • Q2. Boot , kafka , agile

Interview Preparation Tips

Interview preparation tips for other job seekers - study hard hard hard
as its hard hard hard
hard hard hard

I applied via Campus Placement

Round 1 - Assignment 

To write an small essay.

Round 2 - Group Discussion 

To discuss about the related topic given by the HR either it may positive and negative points.

Round 3 - HR 

(1 Question)

  • Q1. 1. Telling about ourselves 2.questions regarded to our subjects like c programming,Java python etc. 3.finalised

Interview Preparation Tips

Interview preparation tips for other job seekers - Please proceed and continue for this company.
Thank u

I applied via Recruitment Consultant and was interviewed in Jul 2021. There was 1 interview round.

Interview Questionnaire 

7 Questions

  • Q1. Project details and OOP with real time example ?
  • Ans. 

    OOP is a programming paradigm that uses objects to represent real-world entities. Project details can be explained using OOP concepts.

    • OOP is based on the concept of classes and objects

    • Classes are like blueprints for objects

    • Objects have properties and methods

    • Encapsulation, inheritance, and polymorphism are key OOP concepts

    • Example: A car class can have properties like make, model, and year, and methods like start and sto

  • Answered by AI
  • Q2. Interested area in coding Front end and backend
  • Ans. 

    I am interested in both front-end and back-end development.

    • I enjoy creating user interfaces with HTML, CSS, and JavaScript.

    • I also like working with databases and server-side languages like Python and PHP.

    • I believe that having knowledge of both front-end and back-end development is important for creating well-rounded applications.

  • Answered by AI
  • Q3. Table relationship
  • Q4. Asynchronous and multi-threading code. How to stop async code based on specification condition
  • Ans. 

    To stop async code based on specification condition, use cancellation tokens.

    • Use CancellationTokenSource to create a cancellation token

    • Pass the cancellation token to the async method

    • Check the cancellation token in the async method using ThrowIfCancellationRequested()

    • Cancel the token when the specification condition is met

  • Answered by AI
  • Q5. Swap array elements and string reverse by using recursive method
  • Ans. 

    Swapping array elements and reversing string using recursion.

    • Create a recursive function that swaps the first and last elements of the array until the middle is reached.

    • Create a recursive function that reverses the string by swapping the first and last characters until the middle is reached.

    • Use a temporary variable to store the value of the element being swapped.

    • Make sure to handle edge cases such as empty arrays or st

  • Answered by AI
  • Q6. SVG and animation effect
  • Q7. DOM, spread operator

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared brush out all things?

Skills evaluated in this interview

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

I applied via Referral and was interviewed before Feb 2022. There were 5 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Aptitude Test 

Normal Aptitude MCQs were asked.

Round 3 - Coding Test 

OOPs, Normal output based ques, C ques were asked.

Round 4 - Technical 

(1 Question)

  • Q1. Some string manipulation questions were asked. Basics of Java, SQL and C was also asked
Round 5 - HR 

(1 Question)

  • Q1. Introduce yourself, ques regarding flexible timings, etc

Interview Preparation Tips

Interview preparation tips for other job seekers - Its a good company for freshers, learn and switch in 1-1.5 yrs.

I applied via Campus Placement and was interviewed in Jan 2021. There were 4 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Are you flexible to location?
  • Q2. What is an array?
  • Ans. 

    An array is a data structure that stores a collection of elements of the same type in a contiguous block of memory.

    • Arrays can be accessed using an index starting from 0.

    • They have a fixed size, which is determined at the time of declaration.

    • Arrays can store elements of any data type, including strings.

    • Example: ['apple', 'banana', 'orange']

  • Answered by AI
  • Q3. Tell me different types of queues?
  • Ans. 

    Different types of queues include linear, circular, priority, and double-ended.

    • Linear queue follows a First-In-First-Out (FIFO) order.

    • Circular queue is similar to linear queue but the last element points to the first element.

    • Priority queue assigns a priority to each element and dequeues the highest priority element first.

    • Double-ended queue allows insertion and deletion at both ends.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Internet failure has occurred during the interview, and that time it's very late so they terminate the process there.

Skills evaluated in this interview

Arcesium Interview FAQs

How many rounds are there in Arcesium Junior Software Engineer interview?
Arcesium interview process usually has 2 rounds. The most common rounds in the Arcesium interview process are Aptitude Test and Technical.
What are the top questions asked in Arcesium Junior Software Engineer interview?

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

  1. Remove a loop in linked l...read more
  2. Implement stack using que...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

HSBC Group Interview Questions
4.0
 • 489 Interviews
Goldman Sachs Interview Questions
3.6
 • 407 Interviews
TCS iON Interview Questions
3.9
 • 362 Interviews
Deutsche Bank Interview Questions
3.9
 • 359 Interviews
Morgan Stanley Interview Questions
3.7
 • 302 Interviews
Barclays Interview Questions
3.9
 • 271 Interviews
CitiusTech Interview Questions
3.4
 • 265 Interviews
NeoSOFT Interview Questions
4.0
 • 259 Interviews
Episource Interview Questions
3.9
 • 221 Interviews
View all
Senior Analyst
295 salaries
unlock blur

₹9.5 L/yr - ₹27 L/yr

Analyst
290 salaries
unlock blur

₹8 L/yr - ₹20 L/yr

Senior Software Engineer
233 salaries
unlock blur

₹15 L/yr - ₹42 L/yr

Manager
146 salaries
unlock blur

₹16.2 L/yr - ₹52 L/yr

Software Engineer
145 salaries
unlock blur

₹12 L/yr - ₹33 L/yr

Explore more salaries
Compare Arcesium with

Edelweiss

3.9
Compare

JPMorgan Chase & Co.

4.0
Compare

Goldman Sachs

3.6
Compare

Morgan Stanley

3.7
Compare
Did you find this page helpful?
Yes No
write
Share an Interview