Premium Employer

i

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

Agilisium Verified Tick Work with us arrow

Compare button icon Compare button icon Compare

Filter interviews by

Agilisium Interview Questions and Answers

Updated 1 Mar 2025
Popular Designations

6 Interview questions

A Data Engineer was asked
Q. How do you rank data using SQL?
Ans. 

Ranking code in SQL

  • Use the RANK() function to assign a rank to each row based on a specified column

  • Use the ORDER BY clause to determine the order of ranking

  • Handle ties in ranking using the DENSE_RANK() function

  • Use the ROW_NUMBER() function to assign a unique number to each row

View all Data Engineer interview questions
A Data Engineer was asked
Q. How do you read a file using Python?
Ans. 

To read a file using Python, use the open() function and specify the file path and mode.

  • Use the open() function to open the file

  • Specify the file path and mode (e.g., 'r' for reading)

  • Read the contents of the file using the read() method

  • Close the file using the close() method

View all Data Engineer interview questions
A Data Engineer was asked
Q. How do you reverse an array string using Python?
Ans. 

Reverses an array of strings using Python.

  • Use the reverse() method to reverse the array in-place.

  • Alternatively, use slicing with a step of -1 to create a new reversed array.

  • Remember to convert the array to a list before reversing if necessary.

View all Data Engineer interview questions
A Full Stack Developer was asked
Q. What does full stack mean?
Ans. 

Full stack refers to the development of both front-end and back-end portions of a web application.

  • Full stack developers are proficient in both front-end and back-end technologies

  • They can handle databases, servers, systems engineering, and clients

  • Examples of full stack technologies include HTML, CSS, JavaScript, Node.js, React, and Angular

View all Full Stack Developer interview questions
A Full Stack Developer was asked
Q. What is front end development?
Ans. 

Front end development refers to the creation of the user interface and user experience of a website or application.

  • Involves HTML, CSS, and JavaScript

  • Focuses on the visual and interactive aspects of a website or application

  • Requires knowledge of design principles and user behavior

  • Examples include creating responsive layouts, implementing animations, and optimizing page load speed

View all Full Stack Developer interview questions
A Senior Software Engineer was asked 7mo ago
Q. Types of filters
Ans. 

Types of filters include low-pass, high-pass, band-pass, and band-stop filters.

  • Low-pass filter allows frequencies below a certain cutoff frequency to pass through.

  • High-pass filter allows frequencies above a certain cutoff frequency to pass through.

  • Band-pass filter allows a specific range of frequencies to pass through.

  • Band-stop filter blocks a specific range of frequencies from passing through.

View all Senior Software Engineer interview questions

Agilisium Interview Experiences

13 interviews found

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

The questions are quite simple.

Round 2 - Coding Test 

Two SQL and two Python HackerRank questions.

Round 3 - Technical 

(1 Question)

  • Q1. What questions were asked regarding your resume project?
  • Ans. 

    Questions were asked about the projects listed on my resume, focusing on the technologies used, challenges faced, and results achieved.

    • Technologies used in the project

    • Challenges faced during the project

    • Results achieved from the project

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. General questions
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview in Feb 2025.

Round 1 - Coding Test 

Basic questions python spark, sql

Round 2 - HR 

(1 Question)

  • Q1. Salary discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't choose this company any more
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected
Round 1 - Coding Test 

3 SQL and 2 Python questions were asked, SQL was moderate, Python was tough

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well on SQL and Python
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Types of filters
  • Ans. 

    Types of filters include low-pass, high-pass, band-pass, and band-stop filters.

    • Low-pass filter allows frequencies below a certain cutoff frequency to pass through.

    • High-pass filter allows frequencies above a certain cutoff frequency to pass through.

    • Band-pass filter allows a specific range of frequencies to pass through.

    • Band-stop filter blocks a specific range of frequencies from passing through.

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Project Details
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Coding Test 

SQL, Python Coding intermediate questions

Round 2 - Coding Test 

Intermediate coding questions

Round 3 - HR 

(2 Questions)

  • Q1. Salary Discussion
  • Q2. Policy Discussion and other perks provided by the company

Interview Preparation Tips

Interview preparation tips for other job seekers - Be well prepared for SQL, Python and Pyspark as its a Data Engineering and Data Analytics organization
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Aptitude Test 

Basic Apti , ex train ,speed work

Round 2 - Coding Test 

From Leetcode questions

Round 3 - One-on-one 

(1 Question)

  • Q1. Related about real time java questions
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Walk-in and was interviewed in Aug 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 

(2 Questions)

  • Q1. They ask about the skills we worked
  • Q2. In our project like java, selenium, Api
Round 3 - Technical 

(1 Question)

  • Q1. They asked about the skills

Interview Preparation Tips

Interview preparation tips for other job seekers - First screening Round in that we selected means then round 1

Data Engineer Interview Questions & Answers

user image Anonymous

posted on 17 Oct 2023

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

I applied via Walk-in and was interviewed in Sep 2023. There were 2 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 

(3 Questions)

  • Q1. Ranking code in sql
  • Ans. 

    Ranking code in SQL

    • Use the RANK() function to assign a rank to each row based on a specified column

    • Use the ORDER BY clause to determine the order of ranking

    • Handle ties in ranking using the DENSE_RANK() function

    • Use the ROW_NUMBER() function to assign a unique number to each row

  • Answered by AI
  • Q2. Read a file using python
  • Ans. 

    To read a file using Python, use the open() function and specify the file path and mode.

    • Use the open() function to open the file

    • Specify the file path and mode (e.g., 'r' for reading)

    • Read the contents of the file using the read() method

    • Close the file using the close() method

  • Answered by AI
  • Q3. Reverse a array string using python
  • Ans. 

    Reverses an array of strings using Python.

    • Use the reverse() method to reverse the array in-place.

    • Alternatively, use slicing with a step of -1 to create a new reversed array.

    • Remember to convert the array to a list before reversing if necessary.

  • Answered by AI

Skills evaluated in this interview

Data Engineer Interview Questions & Answers

user image Anonymous

posted on 20 Jul 2024

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

(1 Question)

  • Q1. It was a basic screening round as it was a virtual walk-in drive so was asked basic details about my work experience

Data Engineer Interview Questions & Answers

user image Anonymous

posted on 30 Oct 2024

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - Technical 

(3 Questions)

  • Q1. What do you worked on AWS
  • Q2. SQL aggregate and window question
  • Q3. Coding In python
Round 2 - Technical 

(3 Questions)

  • Q1. AWS S3 Questions
  • Q2. AWS lambda Questions
  • Q3. AWS Redshift Questions
Round 3 - HR 

(2 Questions)

  • Q1. Why left previous company
  • Ans. 

    Seeking new challenges and growth opportunities

    • Desire for new challenges and growth

    • Looking for a more innovative environment

    • Seeking better work-life balance

  • Answered by AI
  • Q2. Salary Discussion

Interview Preparation Tips

Topics to prepare for Agilisium Data Engineer interview:
  • AWS

Top trending discussions

View All
Interview Tips & Stories
4d (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Agilisium?
Ask anonymously on communities.

Agilisium Interview FAQs

How many rounds are there in Agilisium interview?
Agilisium interview process usually has 2-3 rounds. The most common rounds in the Agilisium interview process are Technical, HR and Coding Test.
How to prepare for Agilisium 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 Agilisium. The most common topics and skills that interviewers at Agilisium expect are Python, SQL, AWS, Java and Spark.
What are the top questions asked in Agilisium interview?

Some of the top questions asked at the Agilisium interview -

  1. What is meant by full st...read more
  2. Reverse a array string using pyt...read more
  3. What is front end developm...read more

Tell us how to improve this page.

Overall Interview Experience Rating

3.4/5

based on 16 interview experiences

Difficulty level

Easy 43%
Moderate 57%

Duration

Less than 2 weeks 57%
2-4 weeks 43%
View more
Join Agilisium Insights. Humanity. Impact

Interview Questions from Similar Companies

Cyfuture Interview Questions
3.0
 • 46 Interviews
Revature Interview Questions
3.5
 • 42 Interviews
JMR Infotech Interview Questions
4.2
 • 33 Interviews
VDart Interview Questions
4.0
 • 29 Interviews
Black Knight Interview Questions
3.6
 • 28 Interviews
DISYS Interview Questions
3.0
 • 27 Interviews
View all

Agilisium Reviews and Ratings

based on 97 reviews

3.1/5

Rating in categories

3.3

Skill development

3.0

Work-life balance

3.0

Salary

2.7

Job security

3.1

Company culture

2.7

Promotions

3.0

Work satisfaction

Explore 97 Reviews and Ratings
Join our Walk-in Drive For AWS Data Engineering -26th July'25@Chennai

Hyderabad / Secunderabad,

Chennai

7-12 Yrs

Not Disclosed

Join our Walk-in Drive For AWS Data Engineering -26th July'25@Chennai

Hyderabad / Secunderabad,

Chennai

4-6 Yrs

Not Disclosed

WALK-IN DRIVE - Sr.AI/ML Engineer - Chennai

Chennai

5-10 Yrs

Not Disclosed

Explore more jobs
Senior Software Engineer
114 salaries
unlock blur

₹9.7 L/yr - ₹17.8 L/yr

Software Engineer
95 salaries
unlock blur

₹6 L/yr - ₹12.4 L/yr

Data Engineer
77 salaries
unlock blur

₹7.5 L/yr - ₹14 L/yr

Senior Data Engineer
24 salaries
unlock blur

₹9.1 L/yr - ₹16.1 L/yr

Specialist
18 salaries
unlock blur

₹9 L/yr - ₹20.5 L/yr

Explore more salaries
Compare Agilisium with

Cyfuture

2.9
Compare

JoulestoWatts Business Solutions

3.1
Compare

Value Point Systems

3.5
Compare

Black Knight

3.6
Compare
write
Share an Interview