Premium Employer

i

This company page is being actively managed by Accelya Solutions India Limited Team. If you also belong to the team, you can get access from here

Accelya Solutions India Limited Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Accelya Solutions India Limited Software Developer Interview Questions and Answers

Updated 15 Sep 2024

Accelya Solutions India Limited Software Developer Interview Experiences

5 interviews found

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Database questions
  • Q2. API response design, put and post diff
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Coding Test 

One coding question of string. Medium level.

Round 2 - Technical 

(2 Questions)

  • Q1. Reverse a linkedlist
  • Ans. 

    Reverse a linkedlist by changing the pointers direction

    • Iterate through the linkedlist and change the direction of pointers

    • Use three pointers to keep track of current, previous, and next nodes

    • Update the head of the linkedlist to point to the last node as the new head

  • Answered by AI
  • Q2. Detect and remove cycle from linked list
  • Ans. 

    To detect and remove a cycle from a linked list, we can use Floyd's Cycle Detection Algorithm.

    • Use two pointers, slow and fast, to detect a cycle in the linked list.

    • If there is a cycle, the fast pointer will eventually meet the slow pointer.

    • Once the cycle is detected, reset one of the pointers and move them at the same pace to find the start of the cycle.

    • Remove the cycle by setting the next pointer of the node where the

  • Answered by AI

Skills evaluated in this interview

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray Sum Problem Statement Given an array of integers ... read more
asked in Amazon
Q2. Minimum Number of Platforms Needed Problem Statement You are give ... read more
asked in Rakuten
Q3. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Nagarro
Q4. Crazy Numbers Pattern Challenge Ninja enjoys arranging numbers in ... read more
asked in PhonePe
Q5. Form a Triangle Problem Statement You are given an array of integ ... read more

Software Developer Interview Questions & Answers

user image Mansi Yelgulwar

posted on 13 Jun 2024

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

I applied via Campus Placement and was interviewed in May 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Was easy and could be cracked.

Round 2 - Technical 

(2 Questions)

  • Q1. Checked my DSA skills like arrays and linked list. Medium level questions
  • Q2. Also focused on C++ language and asked some core programming questions and OOP too
Round 3 - HR 

(2 Questions)

  • Q1. About family and qualifications
  • Q2. What do u know about acceleya

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and prepare well of DSA n cpp coz in my case they were hiring for C++ backend developer
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at Sinhgad College of Engineering, Pune

Round 1 - Aptitude Test 

Aptitude test simple one

Round 2 - Technical 

(1 Question)

  • Q1. SQL and Java basic Questions

Accelya Solutions India Limited interview questions for designations

 Java Software Developer

 (1)

 Software Engineer

 (2)

 Java Developer

 (2)

 Software Development Engineer

 (2)

 DOT NET Developer

 (1)

 Software Development Engineer II

 (1)

 Software Development Engineer 1

 (1)

 Oracle SQL and PLSQL Developer

 (1)

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

I applied via Walk-in and was interviewed before Feb 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Easy aptitude round just aware of tiime

Round 2 - Coding Test 

Hackerank total 3 questions from which 2 are basic questions related to java coding and 1 was database related

Round 3 - Technical 

(1 Question)

  • Q1. 2 question easy hashmap duplicate problem and other was convert digit into its words

Interview Preparation Tips

Topics to prepare for Accelya Solutions India Limited Software Developer interview:
  • Core Java
  • SQL
Interview preparation tips for other job seekers - Easy interview good money

Interview questions from similar companies

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

I applied via Campus Placement and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Coding Test 

In first round 4 coding question like 1 dsa 2 database and one is api and question is very simple . coding round was conducted in hackerrank

Round 2 - Technical 

(2 Questions)

  • Q1. DSA QUESTION LIKE TREE AND GRAPH
  • Q2. DP AND SORTING APPROACH
Round 3 - Coding Test 

Again same but dsa question and oops concept in deep level

Interview Preparation Tips

Interview preparation tips for other job seekers - good knowledge in dsa , database , programming thats it
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in May 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. The interviewer is from testing panel how the testing panel can take a developer interview they don’t have any knowledge about java worst interviewer in my life they waste my 1hour. after answer all the qu...
  • Q2. What is encapsulation. Protected and default difference i have to explain her with example. Collection and hashmap i explain all the things in hashmap even the implementation After that she said to write ...
  • Q3. She asked me about helm chart and aws.I did answer according to it. My interview was pretty well but very next day what i got to know from HR that my basic was not clear that’s very very unprofessional beh...

Interview Preparation Tips

Topics to prepare for UKG Software Developer interview:
  • Basic Java
  • Coding
Interview preparation tips for other job seekers - Don’t expect anything from UKG even after u did very well in your interview.Pathetic experience worst interviewer.I wish there should be some ukg review portal so that i can share the interviewer feedback as well.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What is Oops concept?
  • Ans. 

    Oops concept stands for Object-Oriented Programming concepts which include principles like inheritance, encapsulation, polymorphism, and abstraction.

    • Oops concept is a programming paradigm that focuses on objects and classes.

    • It includes principles like inheritance, where a class can inherit properties and behaviors from another class.

    • Encapsulation is another principle where data is wrapped within a class and can only be...

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Internal working of Hash Map
  • Ans. 

    Hash Map is a data structure that stores key-value pairs and uses a hash function to map keys to their corresponding values.

    • Hash Map uses a hash function to determine the index of the key-value pair in the underlying array.

    • Collisions can occur when multiple keys hash to the same index, which can be resolved using techniques like chaining or open addressing.

    • Hash Map typically has a load factor threshold to determine whe...

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Diff var let const
  • Ans. 

    diff var let const

    • var is function-scoped, let and const are block-scoped

    • var can be redeclared and reassigned, let can be reassigned but not redeclared, const cannot be reassigned or redeclared

    • const must be initialized during declaration, let and var can be declared without initialization

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Related to node js architecture
Round 3 - HR 

(1 Question)

  • Q1. Expectation and all

Skills evaluated in this interview

Accelya Solutions India Limited Interview FAQs

How many rounds are there in Accelya Solutions India Limited Software Developer interview?
Accelya Solutions India Limited interview process usually has 2-3 rounds. The most common rounds in the Accelya Solutions India Limited interview process are Technical, Aptitude Test and Coding Test.
How to prepare for Accelya Solutions India Limited Software Developer 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 Accelya Solutions India Limited. The most common topics and skills that interviewers at Accelya Solutions India Limited expect are Coding, Javascript, Troubleshooting, Debugging and Unit Testing.
What are the top questions asked in Accelya Solutions India Limited Software Developer interview?

Some of the top questions asked at the Accelya Solutions India Limited Software Developer interview -

  1. Detect and remove cycle from linked l...read more
  2. Reverse a linkedl...read more
  3. 2 question easy hashmap duplicate problem and other was convert digit into its ...read more

Tell us how to improve this page.

Accelya Solutions India Limited Software Developer Interview Process

based on 5 interviews

2 Interview rounds

  • Aptitude Test Round
  • Technical Round
View more
Join Accelya Solutions India Limited The Airline-First software platform
Accelya Solutions India Limited Software Developer Salary
based on 82 salaries
₹3.4 L/yr - ₹11.5 L/yr
7% less than the average Software Developer Salary in India
View more details

Accelya Solutions India Limited Software Developer Reviews and Ratings

based on 6 reviews

3.7/5

Rating in categories

3.3

Skill development

3.5

Work-life balance

2.9

Salary

3.3

Job security

3.7

Company culture

3.0

Promotions

3.3

Work satisfaction

Explore 6 Reviews and Ratings
Senior Associate
86 salaries
unlock blur

₹2.5 L/yr - ₹6.5 L/yr

Software Developer
82 salaries
unlock blur

₹3.4 L/yr - ₹11.5 L/yr

Senior Software Engineer
70 salaries
unlock blur

₹15.1 L/yr - ₹22.5 L/yr

Software Engineer
63 salaries
unlock blur

₹3.5 L/yr - ₹12.7 L/yr

Associate
55 salaries
unlock blur

₹1.4 L/yr - ₹6.5 L/yr

Explore more salaries
Compare Accelya Solutions India Limited with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

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