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
3.7

based on 306 Reviews

Filter interviews by

Accelya Solutions India Limited Agile Project Manager Interview Questions and Answers

Updated 21 May 2024

Accelya Solutions India Limited Agile Project Manager Interview Experiences

1 interview found

Agile Project Manager Interview Questions & Answers

user image Sonali Rathore

posted on 21 May 2024

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

I applied via LinkedIn and was interviewed before May 2023. There were 4 interview rounds.

Round 1 - Aptitude Test 

Online criteria test

Round 2 - Technical 

(1 Question)

  • Q1. Quation related with technical knowledge
Round 3 - One-on-one 

(1 Question)

  • Q1. With the manager
Round 4 - HR 

(1 Question)

  • Q1. Discussion about the salary

Interview questions from similar companies

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

(1 Question)

  • Q1. Tech questions in agile process and PM role
Round 2 - Technical 

(1 Question)

  • Q1. Secnario base questions...like how will you handle this business case, what is your approach to solve the issue ... etc
Round 3 - HR 

(1 Question)

  • Q1. They just collect data and made an offer, no negotion on salary...they have an fix range for banda
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
-

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

Round 1 - Technical 

(5 Questions)

  • Q1. Explain OOPS concept and how you apply it in your implementation
  • Ans. 

    OOPS is a programming paradigm based on the concept of objects, which can contain data in the form of fields and code in the form of procedures.

    • OOPS focuses on the concept of classes and objects

    • Encapsulation: bundling data and methods that operate on the data within a single unit

    • Inheritance: allows a class to inherit properties and behavior from another class

    • Polymorphism: ability to present the same interface for diffe...

  • Answered by AI
  • Q2. Difference between Comparable and Comparator. Difference between Abstract Class and Interface
  • Ans. 

    Comparable is an interface used for natural ordering, Comparator is an interface used for custom ordering. Abstract class can have method implementations, Interface cannot.

    • Comparable interface is used to define the natural ordering of objects. Example: String class implements Comparable interface for natural ordering based on alphabetical order.

    • Comparator interface is used to define custom ordering of objects. Example:...

  • Answered by AI
  • Q3. Given a string. Find the number of occurrences of each character
  • Ans. 

    Count occurrences of each character in a given string

    • Create an array to store the count of each character

    • Iterate through the string and increment the count of each character in the array

    • Return the array with counts for each character

  • Answered by AI
  • Q4. Given an array. Remove the number of duplicates
  • Ans. 

    Remove duplicates from an array of strings

    • Iterate through the array and store each element in a set to keep track of unique values

    • Create a new array with the unique values from the set

  • Answered by AI
  • Q5. Given a student object having name and grade data variables. Sort the object on the basis of highest grade.

Skills evaluated in this interview

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
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Job Portal and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Sliding window based question
Round 2 - Technical 

(1 Question)

  • Q1. Java, JS, SQL based questions
Round 3 - HR 

(1 Question)

  • Q1. Reasons to switch , motivation , salary discussion
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at National Institute of Technology (NIT), Raipur and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Coding Test 

The coding test consists of multiple-choice questions and one medium-hard level coding question.

Round 2 - Technical 

(5 Questions)

  • Q1. Given three jugs with different capacities and no measuring tools, how can you measure out a specific amount of water using the jugs you have?
  • Q2. What is the angle between the minute and hour hand of a clock at 3:45?
  • Ans. 

    The angle between the minute and hour hand of a clock at 3:45 is 157.5 degrees.

    • Calculate the angle formed by the hour hand from 12 o'clock position to 3:45 position (135 degrees)

    • Calculate the angle formed by the minute hand from 12 o'clock position to 3:45 position (22.5 degrees)

    • Subtract the smaller angle from the larger angle to get the angle between the two hands (157.5 degrees)

  • Answered by AI
  • Q3. What is indexing in Database Management Systems (DBMS)?
  • Ans. 

    Indexing in DBMS is a technique used to improve the performance of queries by allowing faster retrieval of data.

    • Indexes are data structures that store a small portion of the data set in an easily searchable format.

    • They help in speeding up the data retrieval process by reducing the number of disk accesses needed.

    • Indexes can be created on one or more columns of a table to improve the performance of SELECT queries.

    • Example...

  • Answered by AI
  • Q4. What is the lifecycle of a React component?
  • Ans. 

    The lifecycle of a React component includes mounting, updating, and unmounting phases.

    • Mounting phase: constructor, render, componentDidMount

    • Updating phase: shouldComponentUpdate, render, componentDidUpdate

    • Unmounting phase: componentWillUnmount

  • Answered by AI
  • Q5. How you delete entry in mongodb database
  • Ans. 

    To delete an entry in MongoDB database, you can use the deleteOne() or deleteMany() methods.

    • Use deleteOne() method to delete a single document based on a specific condition

    • Use deleteMany() method to delete multiple documents based on a specific condition

    • Make sure to specify the filter criteria to accurately delete the desired entry

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Aptitude Test 

Maths ,english ,reasoning, puzzles

Round 2 - Coding Test 

Jackeron was the platform

Interview Preparation Tips

Interview preparation tips for other job seekers - Work hard and avoid cheasting
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected
Round 1 - Technical 

(2 Questions)

  • Q1. Linkedlist , array, stack
  • Q2. What is big data
  • Ans. 

    Big data refers to large volumes of structured and unstructured data that is too complex for traditional data processing applications.

    • Big data involves processing and analyzing large volumes of data to uncover patterns, trends, and insights.

    • It can come from various sources such as social media, sensors, devices, and business transactions.

    • Examples of big data technologies include Hadoop, Spark, and NoSQL databases.

    • Big d...

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

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

Round 1 - Group Discussion 

The topic given to me is AI is good or bad

Round 2 - Technical 

(2 Questions)

  • Q1. Program to find prime number
  • Ans. 

    A program to find prime numbers in a given range.

    • Iterate through numbers in the given range

    • Check if each number is divisible by any number other than 1 and itself

    • If not divisible, then the number is prime

  • Answered by AI
  • Q2. Program to find the duplicates
  • Ans. 

    Program to find duplicates in an array of strings

    • Iterate through the array and store each element in a hash set

    • If an element is already in the hash set, it is a duplicate

    • Return a list of all duplicates found

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. Self introduction
  • Q2. Explanation of project code
  • Ans. 

    The project code is a web application that allows users to create and share interactive quizzes.

    • The code uses HTML, CSS, and JavaScript to create the front-end interface.

    • It utilizes Node.js and Express for the back-end server.

    • MongoDB is used as the database to store user-generated quizzes.

    • Socket.io is used for real-time communication between users during quiz sessions.

  • Answered by AI

Skills evaluated in this interview

Software Engineer Interview Questions & Answers

Amadeus user image Atul Singh Jamwal

posted on 18 Jun 2024

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

I applied via Approached by Company and was interviewed in May 2024. There was 1 interview round.

Round 1 - One-on-one 

(4 Questions)

  • Q1. Why you want to join Amadeus
  • Q2. WHy left the previous company
  • Q3. What do you know about Amadeus
  • Q4. Why we should pay you this much

Interview Preparation Tips

Interview preparation tips for other job seekers - Do study more about Amadues

Accelya Solutions India Limited Interview FAQs

How many rounds are there in Accelya Solutions India Limited Agile Project Manager interview?
Accelya Solutions India Limited interview process usually has 4 rounds. The most common rounds in the Accelya Solutions India Limited interview process are Aptitude Test, Technical and One-on-one Round.

Tell us how to improve this page.

Join Accelya Solutions India Limited The Airline-First software platform

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.3k Interviews
Infosys Interview Questions
3.7
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 793 Interviews
Globant Interview Questions
3.9
 • 168 Interviews
View all
Senior Associate
87 salaries
unlock blur

₹2.5 L/yr - ₹6 L/yr

Software Developer
77 salaries
unlock blur

₹3.2 L/yr - ₹11.5 L/yr

Senior Software Engineer
69 salaries
unlock blur

₹14.2 L/yr - ₹22.5 L/yr

Software Engineer
57 salaries
unlock blur

₹3.5 L/yr - ₹12 L/yr

Associate
54 salaries
unlock blur

₹1.4 L/yr - ₹6 L/yr

Explore more salaries
Compare Accelya Solutions India Limited with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

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