Upload Button Icon Add office photos

Filter interviews by

Agilysys Technologies India Interview Questions, Process, and Tips

Updated 20 Jan 2025

Top Agilysys Technologies India Interview Questions and Answers

View all 24 questions

Agilysys Technologies India Interview Experiences

Popular Designations

53 interviews found

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

I applied via LinkedIn and was interviewed in Mar 2023. There were 3 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 - Technical 

(3 Questions)

  • Q1. Basics of javascript
  • Q2. What is hosting in js
  • Ans. 

    Hosting in JavaScript refers to the process of deploying a website or web application on a server to make it accessible on the internet.

    • Hosting allows users to access your website by typing in the domain name in a web browser.

    • Common hosting services include shared hosting, VPS hosting, and cloud hosting.

    • Examples of popular hosting providers include Bluehost, HostGator, and AWS.

    • Hosting also involves managing server reso

  • Answered by AI
  • Q3. Find greatest number in an array
  • Ans. 

    Iterate through array to find greatest number

    • Iterate through each element in the array

    • Compare each element with a variable storing the current greatest number

    • Update the variable if a greater number is found

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Tell about yourself

Skills evaluated in this interview

Top Agilysys Technologies India Software Analyst Interview Questions and Answers

Q1. Build a single number from array of integers
View answer (1)

Software Analyst Interview Questions asked at other Companies

Q1. Merge IntervalsYou are given N number of intervals, where each interval contains two integers denoting the start time and the end time for the interval. The task is to merge all the overlapping intervals and return the list of merged interv... read more
View answer (3)

Functional Test EngineerIP Interview Questions & Answers

user image Anonymous

posted on 4 Jun 2024

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

(2 Questions)

  • Q1. What ia functional testing
  • Q2. What is agile process

Interview Preparation Tips

Interview preparation tips for other job seekers - Nil

Skills evaluated in this interview

Associate Software Analyst Interview Questions & Answers

user image SRI SATYA SAI SURYA BHAVANI SWAMY V

posted on 8 Mar 2023

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

I applied via Job Portal and was interviewed in Feb 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 - Technical 

(1 Question)

  • Q1. Asks about dot net core, sql queries and role and responsibilities in previous company
Round 3 - Coding Test 

Interviewer asks to write code for some scenarios in dot net.

Round 4 - HR 

(1 Question)

  • Q1. Intro, package and location discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - My interview process was very good and very quick. Interview conducted on saturday, all rounds are conducted one by one of 1 hr gap.
Hr interview held at around 7:30 pm and offer letter at 11:00 pm

Associate Software Analyst Interview Questions asked at other Companies

Q1. Tell me something about agilysys and its products.
View answer (1)

Software Analyst Interview Questions & Answers

user image Ramkumar Manikandan

posted on 18 Dec 2023

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

I applied via Referral and was interviewed in Jan 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

General aptitude with little bit of programming

Round 2 - Technical 

(2 Questions)

  • Q1. Functional interfaces
  • Q2. Build a single number from array of integers
  • Ans. 

    Concatenate array of integers to form a single number

    • Convert each integer to string

    • Concatenate the strings to form a single number

    • Handle edge cases like leading zeros

    • Example: [3, 30, 34] -> '33034'

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. Salary expectations

Skills evaluated in this interview

Top Agilysys Technologies India Software Analyst Interview Questions and Answers

Q1. Build a single number from array of integers
View answer (1)

Software Analyst Interview Questions asked at other Companies

Q1. Merge IntervalsYou are given N number of intervals, where each interval contains two integers denoting the start time and the end time for the interval. The task is to merge all the overlapping intervals and return the list of merged interv... read more
View answer (3)

Agilysys Technologies India interview questions for popular designations

 Software Analyst

 (13)

 Associate Software Analyst

 (10)

 QA Engineer

 (3)

 Quality Analyst

 (3)

 Associate Software Engineer

 (2)

 Automation Test Engineer

 (2)

 DOT NET Developer

 (2)

 Manual Test Engineer

 (2)

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

I applied via Naukri.com and was interviewed before Jan 2024. There were 2 interview rounds.

Round 1 - Coding Test 

MCQ on .Net concepts

Round 2 - Technical 

(2 Questions)

  • Q1. Technical questions about C#
  • Q2. Technical questions about precious company

Associate Software Analyst Interview Questions asked at other Companies

Q1. Tell me something about agilysys and its products.
View answer (1)

Get interview-ready with Top Agilysys Technologies India Interview Questions

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

I applied via Naukri.com and was interviewed before Nov 2022. There were 5 interview rounds.

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

Basic apptitude round

Round 3 - Technical 

(1 Question)

  • Q1. Technical round testing on dsa and java oops concept
Round 4 - Technical 

(2 Questions)

  • Q1. Technical round with the project manager where he asked about previous project and some technical question
  • Q2. Rollback in hibernate
  • Ans. 

    Rollback in Hibernate is used to undo the changes made to the database during a transaction.

    • Rollback is used to revert any changes made to the database within a transaction if an error occurs.

    • It is typically called in catch block of try-catch-finally block to handle exceptions.

    • Example: session.beginTransaction(); try { // database operations } catch (Exception e) { session.getTransaction().rollback(); }

  • Answered by AI
Round 5 - HR 

(1 Question)

  • Q1. Salary negotiation

Skills evaluated in this interview

Top Agilysys Technologies India Software Analyst Interview Questions and Answers

Q1. Build a single number from array of integers
View answer (1)

Software Analyst Interview Questions asked at other Companies

Q1. Merge Intervals Problem Statement You are provided with 'N' intervals, each containing two integers denoting the start time and end time of the interval. Your task is to merge all overlapping intervals and return the list of merged interval... read more
Add answer

Jobs at Agilysys Technologies India

View all
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 - Technical 

(1 Question)

  • Q1. Testing questions; SQL and API related questions
Round 3 - One-on-one 

(1 Question)

  • Q1. API testing; Manual testing scenarios; SQL queries
Round 4 - HR 

(1 Question)

  • Q1. Salary discussion and notice period related discussions

Interview Preparation Tips

Interview preparation tips for other job seekers - If you have any other offer in hand please try to join that company

Quality Analyst Interview Questions asked at other Companies

Q1. How you will maintain the balance between operations and quality so that they do not have any conflicts of interest
View answer (3)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected

I applied via Naukri.com and was interviewed before Feb 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Multiple Choice Questions

Round 2 - Coding Test 

Right side view of a binary search tree

Round 3 - Technical 

(1 Question)

  • Q1. Technical HR with the director

Associate Software Engineer Interview Questions asked at other Companies

Q1. Triplets with Given Sum Problem Given an array or list ARR consisting of N integers, your task is to identify all distinct triplets within the array that sum up to a specified number K. Explanation: A triplet is a set {ARR[i], ARR[j], ARR[k... read more
View answer (1)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before May 2023. There were 4 interview rounds.

Round 1 - Aptitude Test 

(2 Questions)

  • Q1. C#,wcf,.net, windows
  • Q2. MCQ questions online test
Round 2 - Technical 

(1 Question)

  • Q1. Basics of OOPS and coding, SQL
Round 3 - Behavioral 

(1 Question)

  • Q1. About puzzles and general questions.
Round 4 - HR 

(1 Question)

  • Q1. Salary discussions and policies discussion.

Associate Software Analyst Interview Questions asked at other Companies

Q1. Tell me something about agilysys and its products.
View answer (1)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Jun 2023. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. It's a Technical MCQ consists of 50 qs and you have finish in one hour.
Round 2 - One-on-one 

(1 Question)

  • Q1. Technical interview with VP/manager
Round 3 - HR 

(1 Question)

  • Q1. Normal standard hr questions was asked.

Interview Preparation Tips

Topics to prepare for Agilysys Technologies India Associate Software Analyst interview:
  • Oops concept
Interview preparation tips for other job seekers - Answer honestly and boldly. Don't panic or do anything over smart.

Associate Software Analyst Interview Questions asked at other Companies

Q1. Tell me something about agilysys and its products.
View answer (1)

Agilysys Technologies India Interview FAQs

How many rounds are there in Agilysys Technologies India interview?
Agilysys Technologies India interview process usually has 2-3 rounds. The most common rounds in the Agilysys Technologies India interview process are Technical, Aptitude Test and HR.
How to prepare for Agilysys Technologies India 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 Agilysys Technologies India. The most common topics and skills that interviewers at Agilysys Technologies India expect are Procurement, SQL, C#, Hospitality and Javascript.
What are the top questions asked in Agilysys Technologies India interview?

Some of the top questions asked at the Agilysys Technologies India interview -

  1. What is black box testing What is difference between sanity and smoke testing W...read more
  2. Tell me something about agilysys and its produc...read more
  3. Build a single number from array of integ...read more
How long is the Agilysys Technologies India interview process?

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

Tell us how to improve this page.

Agilysys Technologies India Interview Process

based on 48 interviews

Interview experience

4.1
  
Good
View more

Interview Questions from Similar Companies

IBM Interview Questions
4.0
 • 2.4k Interviews
Oracle Interview Questions
3.7
 • 897 Interviews
Cisco Interview Questions
4.1
 • 396 Interviews
Dell Interview Questions
4.0
 • 391 Interviews
SAP Interview Questions
4.2
 • 308 Interviews
Salesforce Interview Questions
4.0
 • 272 Interviews
Adobe Interview Questions
3.9
 • 250 Interviews
VMware Software Interview Questions
4.4
 • 157 Interviews
View all

Agilysys Technologies India Reviews and Ratings

based on 176 reviews

3.5/5

Rating in categories

3.3

Skill development

2.9

Work-life balance

4.0

Salary

3.8

Job security

3.3

Company culture

3.3

Promotions

3.1

Work satisfaction

Explore 176 Reviews and Ratings
Business Analyst

Chennai

1-4 Yrs

Not Disclosed

Quality Analyst (0.6 To 1Yr)

Chennai

0-1 Yrs

Not Disclosed

.NET Application Developer(0.3 To 2 Yrs)

Chennai

0-2 Yrs

Not Disclosed

Explore more jobs
Software Analyst
380 salaries
unlock blur

₹6.7 L/yr - ₹15 L/yr

Senior Software Analyst
195 salaries
unlock blur

₹8 L/yr - ₹23.7 L/yr

Associate Software Analyst
147 salaries
unlock blur

₹4.5 L/yr - ₹10.8 L/yr

Quality Analyst
145 salaries
unlock blur

₹6 L/yr - ₹13 L/yr

Associate Quality Analyst
71 salaries
unlock blur

₹5 L/yr - ₹9 L/yr

Explore more salaries
Compare Agilysys Technologies India with

Oracle

3.7
Compare

SAP

4.2
Compare

Microsoft Corporation

4.0
Compare

IBM

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