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

Compare button icon Compare button icon Compare

Filter interviews by

Agilisium Interview Questions, Process, and Tips

Updated 5 Jan 2025

Top Agilisium Interview Questions and Answers

View all 6 questions

Agilisium Interview Experiences

Popular Designations

12 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

Ai Ml Engineer Interview Questions asked at other Companies

Q1. Can you describe a recent machine learning project you built, including a walkthrough of the project and a code sample?
View answer (1)
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

Data Engineer Interview Questions asked at other Companies

Q1. Optimal Strategy for a GameYou and your friend Ninjax are playing a game of coins. Ninjax place the 'N' number of coins in a straight line. The rule of the game is as follows: 1. Each coin has a value associated with it. 2. It’s a two-playe... read more
View answer (6)
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

Senior Software Engineer Interview Questions asked at other Companies

Q1. Find Nth PrimeYou are given a number 'N'. Your task is to find Nth prime number. A prime number is a number greater than 1 that is not a product of two smaller natural numbers. Prime numbers have only two factors – 1 and the number itself. ... read more
View answer (6)
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

Senior Software Engineer Interview Questions asked at other Companies

Q1. Find Nth PrimeYou are given a number 'N'. Your task is to find Nth prime number. A prime number is a number greater than 1 that is not a product of two smaller natural numbers. Prime numbers have only two factors – 1 and the number itself. ... read more
View answer (6)

Agilisium interview questions for popular designations

 Data Engineer

 (5)

 Senior Software Engineer

 (2)

 Ai Ml Engineer

 (1)

 Automation Tester

 (1)

 Full Stack Developer

 (1)

 PMO Analyst

 (1)

 Software Engineer

 (1)

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

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)
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

Automation Tester Interview Questions asked at other Companies

Q1. 1)Diffrence Between sanity and Smoke 2)What is regression Testing 3)how many test cases you execute per day 4)Tell me the diffrent Types of waits 5)When we use Implicite and Explicite wait 6)How many times you can use implicite wait in your... read more
View answer (1)

Jobs at Agilisium

View all

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 asked at other Companies

Q1. Optimal Strategy for a GameYou and your friend Ninjax are playing a game of coins. Ninjax place the 'N' number of coins in a straight line. The rule of the game is as follows: 1. Each coin has a value associated with it. 2. It’s a two-playe... read more
View answer (6)

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 asked at other Companies

Q1. Optimal Strategy for a Coin Game You are playing a coin game with your friend Ninjax. There are N coins placed in a straight line. Here are the rules of the game: 1. Each coin has a value associated with it. 2. The game involves two players... read more
View answer (1)

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

Data Engineer Interview Questions asked at other Companies

Q1. Optimal Strategy for a GameYou and your friend Ninjax are playing a game of coins. Ninjax place the 'N' number of coins in a straight line. The rule of the game is as follows: 1. Each coin has a value associated with it. 2. It’s a two-playe... read more
View answer (6)

Data Engineer Interview Questions & Answers

user image sathya priya

posted on 26 Dec 2022

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Group Discussion 

It was easy to attend only general topics can be asked

Round 2 - Technical 

(1 Question)

  • Q1. Coding choise question
Round 3 - One-on-one 

(1 Question)

  • Q1. It was technical interview questions about python and sql

Interview Preparation Tips

Interview preparation tips for other job seekers - You want to be prepared technical on a strong way in sql and python

Data Engineer Interview Questions asked at other Companies

Q1. Optimal Strategy for a GameYou and your friend Ninjax are playing a game of coins. Ninjax place the 'N' number of coins in a straight line. The rule of the game is as follows: 1. Each coin has a value associated with it. 2. It’s a two-playe... read more
View answer (6)

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, Coding Test and HR.
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.

Agilisium Interview Process

based on 13 interviews

Interview experience

3.9
  
Good
View more
Join Agilisium Insights. Humanity. Impact

Interview Questions from Similar Companies

Mu Sigma Interview Questions
2.6
 • 228 Interviews
Tiger Analytics Interview Questions
3.7
 • 220 Interviews
Fractal Analytics Interview Questions
4.0
 • 205 Interviews
Tredence Interview Questions
3.6
 • 122 Interviews
Axtria Interview Questions
3.0
 • 115 Interviews
C5i Interview Questions
4.1
 • 44 Interviews
AbsolutData Interview Questions
3.6
 • 9 Interviews
Crayon Data Interview Questions
3.6
 • 4 Interviews
View all

Agilisium Reviews and Ratings

based on 83 reviews

3.3/5

Rating in categories

3.4

Skill development

3.2

Work-life balance

3.2

Salary

2.9

Job security

3.2

Company culture

2.9

Promotions

3.2

Work satisfaction

Explore 83 Reviews and Ratings
Senior Data Engineer

Hyderabad / Secunderabad,

Chennai

6-11 Yrs

Not Disclosed

Data Architect

Hyderabad / Secunderabad

10-14 Yrs

Not Disclosed

Data Engineer - Direct Walkin Drive - 25th Jan '25

Hyderabad / Secunderabad,

Chennai

4-8 Yrs

Not Disclosed

Explore more jobs
Senior Software Engineer
93 salaries
unlock blur

₹6.2 L/yr - ₹20.8 L/yr

Software Engineer
89 salaries
unlock blur

₹3.6 L/yr - ₹12 L/yr

Data Engineer
60 salaries
unlock blur

₹4.5 L/yr - ₹14.5 L/yr

Specialist
18 salaries
unlock blur

₹9 L/yr - ₹20.5 L/yr

Architect
12 salaries
unlock blur

₹22 L/yr - ₹38 L/yr

Explore more salaries
Compare Agilisium with

Fractal Analytics

4.0
Compare

LatentView Analytics

3.7
Compare

Tredence

3.6
Compare

Mu Sigma

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