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 Development Engineer II Interview Questions and Answers

Updated 6 Jul 2024

Accelya Solutions India Limited Software Development Engineer II Interview Experiences

1 interview found

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

I was interviewed in Jul 2022.

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 

Basic aptitude & domain specific questions.

Round 3 - Technical 

(2 Questions)

  • Q1. LinkedIn list reversal
  • Q2. Cycle detection in linked list
  • Ans. 

    Cycle detection in linked list involves finding if there is a loop in the list.

    • Use two pointers approach - slow pointer moves one step at a time, fast pointer moves two steps at a time. If they meet, there is a cycle.

    • Floyd's Tortoise and Hare algorithm is commonly used for cycle detection in linked lists.

    • Maintain a set to keep track of visited nodes and check if a node is already in the set while traversing the list.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Please bring confidence also.

Skills evaluated in this interview

Interview questions from similar companies

Software Development Engineer II Interview Questions & Answers

Atlassian user image Suraj Udayashankar (Suraj Uday)

posted on 7 Aug 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Graphql implementation

Round 2 - Coding Test 

System design questions : HLD and LLD

Round 3 - HR 

(2 Questions)

  • Q1. Salary expectations
  • Q2. Strengths and weakness
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. Mvc , mapping , rest endpoints
  • Q2. Oops concepts from java
  • Ans. 

    Object-oriented programming concepts in Java

    • Encapsulation: bundling data and methods together

    • Inheritance: creating new classes from existing ones

    • Polymorphism: using a single interface to represent different types

    • Abstraction: hiding implementation details and providing a simplified view

    • Encapsulation example: using private variables and public methods

    • Inheritance example: creating a subclass that inherits properties and m...

  • Answered by AI
  • Q3. System design ques were asked

Interview Preparation Tips

Interview preparation tips for other job seekers - great

Skills evaluated in this interview

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

I was interviewed in Jan 2024.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Given a Matrix of character[][]. Write a program to search a string in that matrix efficiently.
  • Ans. 

    Search for a string efficiently in a character matrix.

    • Use depth-first search (DFS) or breadth-first search (BFS) to traverse the matrix and search for the string.

    • Optimize by pruning search paths if a mismatch is encountered.

    • Consider using a Trie data structure for faster string matching.

    • Handle edge cases like empty matrix or string, out of bounds indices, etc.

  • Answered by AI
  • Q2. What advantage does streams in Java8 has over for loops.
  • Ans. 

    Streams in Java8 offer concise and readable code for processing collections compared to traditional for loops.

    • Streams provide functional-style operations like map, filter, and reduce for easy data processing.

    • Streams allow for parallel processing of data, potentially improving performance.

    • Streams promote immutability and encourage writing more declarative code.

    • Streams reduce boilerplate code and make the code more reada...

  • Answered by AI

Skills evaluated in this interview

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

I applied via campus placement at Model Engineering College, Kochi and was interviewed before Apr 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Mental and Verbal aptitude - 1 hour

Round 2 - Technical 

(1 Question)

  • Q1. Basic C++, DSA questions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement

Round 1 - Aptitude Test 

Question related to operating system and computer network

Round 2 - Technical 

(1 Question)

  • Q1. Traverse all child nodes in tree
  • Ans. 

    Traverse all child nodes in a tree data structure

    • Use depth-first or breadth-first traversal algorithms

    • Recursively visit each child node starting from the root node

    • Consider using a stack or queue data structure for traversal

    • Example: Traverse all nodes in a binary tree

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Question related to cloud and oops
Round 4 - Technical 

(1 Question)

  • Q1. Question related to my background and how web site work
Interview experience
1
Bad
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(3 Questions)

  • Q1. Basics of oops, .net framework and .net core
  • Q2. Sql query for student department id
  • Ans. 

    SQL query to retrieve student department id.

    • Use SELECT statement to retrieve data

    • Specify the columns to be selected, including the department id column

    • Specify the table where the student data is stored

    • Use WHERE clause to filter the results based on student information

  • Answered by AI
  • Q3. Solid principles and design patterns
Round 2 - Technical 

(2 Questions)

  • Q1. Asked to code palindrome
  • Q2. Code duplicate string from main string and get index of sub string
  • Ans. 

    Code to find index of sub string in main string and duplicate the sub string

    • Use a loop to iterate through the main string and check for the sub string

    • If sub string is found, duplicate it and store the index

    • Return the index of the duplicated sub string

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Manager asked me to code the count index of substring and sum of substring
  • Q2. Questions as HR informed, it was worst and all interviews were scheduled at night time.he was more technical than the second round team lead instead of asking manager round

Interview Preparation Tips

Interview preparation tips for other job seekers - worst manager round and salary is also provided less compared to market rate.

Skills evaluated in this interview

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

I applied via Walk-in and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

1st round is aptitude and pesudocode

Round 2 - Technical 

(2 Questions)

  • Q1. Mostly python questions
  • Q2. List questions and basic to mediumprogram

Interview Preparation Tips

Interview preparation tips for other job seekers - Moderate interview
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
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Basic java fundamentals
  • Q2. Spring boot,sql
Round 2 - Technical 

(2 Questions)

  • Q1. Some technical questions from manager
  • Q2. Some challenges or scenario based questions
Round 3 - HR 

(2 Questions)

  • Q1. Salary discussion mostly
  • Q2. Benifts that they offer with TR

Accelya Solutions India Limited Interview FAQs

How many rounds are there in Accelya Solutions India Limited Software Development Engineer II interview?
Accelya Solutions India Limited interview process usually has 3 rounds. The most common rounds in the Accelya Solutions India Limited interview process are Resume Shortlist, Aptitude Test and Technical.
What are the top questions asked in Accelya Solutions India Limited Software Development Engineer II interview?

Some of the top questions asked at the Accelya Solutions India Limited Software Development Engineer II interview -

  1. Cycle detection in linked l...read more
  2. LinkedIn list rever...read more

Tell us how to improve this page.

Accelya Solutions India Limited Software Development Engineer II Interview Process

based on 1 interview

Interview experience

3
  
Average
View more
Join Accelya Solutions India Limited The Airline-First software platform

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
Mphasis Interview Questions
3.4
 • 806 Interviews
Globant Interview Questions
3.8
 • 171 Interviews
View all
54% less than the average Software Development Engineer II Salary in India
View more details

Accelya Solutions India Limited Software Development Engineer II Reviews and Ratings

based on 1 review

3.0/5

Rating in categories

3.0

Skill development

3.0

Work-life balance

3.0

Salary

3.0

Job security

3.0

Company culture

3.0

Promotions

3.0

Work satisfaction

Explore 1 Review and Rating
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