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 Interview Questions, Process, and Tips

Updated 11 Jan 2025

Top Accelya Solutions India Limited Interview Questions and Answers

View all 14 questions

Accelya Solutions India Limited Interview Experiences

Popular Designations

39 interviews found

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

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

Round 1 - Coding Test 

First Binary Search impl, Linked List Impl then they went in depth linkedlist intersection
Java Basic Questions, design patterns

Round 2 - Coding Test 

Reverse a string, In-Depth questions from Java every concepts they touched

Round 3 - Technical 

(1 Question)

  • Q1. Basically it is a hiring manager round where they asked me about myself, why are you leaving your current company, and in depth architecture of app

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (171)

Engineer 1 - Quality Assurance Interview Questions & Answers

user image Anonymous

posted on 12 Sep 2024

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 Aug 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

It's just a normal test... Anyone can clear without any preparation

Round 2 - Technical 

(1 Question)

  • Q1. Write code for bubble sort
  • Ans. 

    Bubble sort is a simple sorting algorithm that repeatedly steps through the list, compares adjacent elements, and swaps them if they are in the wrong order.

    • Start from the first element and compare it with the next element, swapping if necessary

    • Repeat this process for each pair of adjacent elements in the array until the entire array is sorted

    • Continue this process for each element in the array until no more swaps are ne

  • Answered by AI
Round 3 - One-on-one 

(1 Question)

  • Q1. How you are comfortable with testing
  • Ans. 

    I am comfortable with testing as it allows me to ensure the quality and functionality of the product.

    • I have experience in creating test plans and test cases to cover all aspects of the software

    • I am proficient in using testing tools and techniques to identify and report bugs

    • I enjoy the challenge of finding defects and working with the development team to resolve them

    • I am detail-oriented and thorough in my approach to te

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. Tell me something about yourself
  • Ans. 

    I am a dedicated and detail-oriented quality assurance engineer with a passion for ensuring product excellence.

    • I have a Bachelor's degree in Engineering with a focus on quality assurance

    • I have experience in conducting thorough testing and analysis to identify and resolve product issues

    • I am proficient in using various testing tools and methodologies such as Selenium and Agile testing

    • I have a strong attention to detail a...

  • Answered by AI

Skills evaluated in this interview

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

(1 Question)

  • Q1. Explain the API-creating process from start to end
  • Ans. 

    The API-creating process involves designing, developing, testing, documenting, and deploying APIs.

    • Design the API by defining endpoints, request/response formats, and authentication methods

    • Develop the API using programming languages like Java, frameworks like Spring Boot, and tools like Swagger

    • Test the API for functionality, performance, security, and scalability

    • Document the API with clear instructions, examples, and us...

  • Answered by AI

Java Developer Interview Questions asked at other Companies

Q1. Sort 0 and 1 Problem Statement Given an integer array ARR of size N containing only integers 0 and 1, implement a function to sort this array. The solution should scan the array only once without using any additional arrays. Input: The firs... read more
View answer (3)
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. What is interface
  • Ans. 

    An interface in Java is a reference type, similar to a class, that can contain only constants, method signatures, default methods, static methods, and nested types.

    • Interfaces are used to define a contract for classes that implement them.

    • Classes can implement multiple interfaces, but can only extend one class.

    • Interfaces can be used to achieve abstraction and multiple inheritance in Java.

    • Example: interface Shape { void d...

  • Answered by AI
  • Q2. SQL query on based of joins

Java Developer Interview Questions asked at other Companies

Q1. Sort 0 1You have been given an integer array/list(ARR) of size N that contains only integers, 0 and 1. Write a function to sort this array/list. Think of a solution which scans the array/list only once and don't require use of an extra arra... read more
View answer (4)

Accelya Solutions India Limited interview questions for popular designations

 Software Developer

 (5)

 Associate

 (2)

 Java Developer

 (2)

 Programmer Analyst

 (2)

 Software Development Engineer

 (2)

 Software Engineer

 (2)

 Agile Project Manager

 (1)

 Analyst

 (1)

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

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... read more
View answer (39)

Get interview-ready with Top Accelya Solutions India Limited Interview Questions

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

Q1. Maximum Subarray SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... read more
View answer (39)

Jobs at Accelya Solutions India Limited

View all

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

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... read more
View answer (39)

QA Engineer Interview Questions & Answers

user image Anonymous

posted on 3 Dec 2024

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

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

Round 1 - Aptitude Test 

Aptitude and technical questions

Round 2 - Technical 

(2 Questions)

  • Q1. Basic testing questions and scenario based
  • Q2. Api and sql questions

QA Engineer Interview Questions asked at other Companies

Q1. 80 pairs of socks in a dark room, 40 black, 40 white, how many minimum number of socks need to be taken out to get 15 pairs of socks
View answer (9)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Simple SQL queries
  • Q2. Retrieve all the data from table
  • Ans. 

    Use a SQL query to retrieve all data from a table

    • Use SELECT * FROM table_name to retrieve all data

    • Make sure you have the necessary permissions to access the table

    • Consider using WHERE clause for specific data retrieval

    • Check for any filters or conditions specified in the query

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Na

Skills evaluated in this interview

Service Management Analyst Interview Questions asked at other Companies

Q1. Retrieve all the data from table
View answer (1)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Simple Aptitude ques

Round 2 - Coding Test 

2 questions in 60 min difficulty level Medium

Round 3 - One-on-one 

(2 Questions)

  • Q1. How to sort and arrray
  • Ans. 

    To sort an array of strings, use a sorting algorithm like quicksort or mergesort.

    • Use a sorting algorithm like quicksort or mergesort to sort the array of strings.

    • Implement a comparison function to define the sorting order.

    • Consider the time complexity of the sorting algorithm for efficiency.

    • Example: Sorting an array of strings alphabetically.

  • Answered by AI
  • Q2. How to reverse an string
  • Ans. 

    Use a loop to iterate through the string and build a new string in reverse order.

    • Create an empty string to store the reversed string.

    • Iterate through the original string from the end to the beginning.

    • Append each character to the new string.

    • Return the reversed string.

  • Answered by AI

Skills evaluated in this interview

Software Development Engineer Interview Questions asked at other Companies

Q1. Given an acyclic graph of a city where each edge represents a road in the city and each vertex represents an crossing. Write an algo to find out the minimum number of vertices at which a policemen will be kept so that all the roads are cove... read more
View answer (2)

Accelya Solutions India Limited Interview FAQs

How many rounds are there in Accelya Solutions India Limited 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 HR.
How to prepare for Accelya Solutions India Limited 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 Java, PLSQL, SQL, IATA and Javascript.
What are the top questions asked in Accelya Solutions India Limited interview?

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

  1. What are collections and its ty...read more
  2. What is record and expla...read more
  3. How you are comfortable with test...read more
How long is the Accelya Solutions India Limited interview process?

The duration of Accelya Solutions India Limited interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Accelya Solutions India Limited Interview Process

based on 33 interviews

Interview experience

3.9
  
Good
View more
Join Accelya Solutions India Limited The Airline-First software platform

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.7k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.9k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
Mphasis Interview Questions
3.4
 • 810 Interviews
Globant Interview Questions
3.8
 • 171 Interviews
View all

Accelya Solutions India Limited Reviews and Ratings

based on 314 reviews

3.7/5

Rating in categories

3.3

Skill development

3.6

Work-life balance

3.4

Salary

3.5

Job security

3.5

Company culture

3.0

Promotions

3.4

Work satisfaction

Explore 314 Reviews and Ratings
Senior Analyst Service Management

Mumbai,

Nagpur

+4

3-5 Yrs

Not Disclosed

Senior Engineer - Oracle Database Administrator

Mumbai,

Pune

4-7 Yrs

₹ 7.5-10.8 LPA

Analyst I - Service Management (Support)

Mumbai

0-1 Yrs

Not Disclosed

Explore more jobs
Senior Associate
90 salaries
unlock blur

₹3 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