Upload Button Icon Add office photos
Premium Employer

i

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

Agiliad Technologies Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Agiliad Technologies Interview Questions and Answers

Updated 11 Apr 2025
Popular Designations

16 Interview questions

A Lead Engineer was asked 6mo ago
Q. What is a closure in programming?
Ans. 

A closure is a function that has access to its own scope, as well as the scope in which it was defined.

  • A closure allows a function to access variables from its outer function even after the outer function has finished executing.

  • Closures are commonly used in event handlers, callbacks, and asynchronous programming.

  • Example: function outerFunction() { let outerVar = 'I am outer'; return function innerFunction() { cons...

View all Lead Engineer interview questions
A Lead Engineer was asked 6mo ago
Q. What is hoisting?
Ans. 

Hoisting is a JavaScript mechanism where variable and function declarations are moved to the top of their containing scope during the compilation phase.

  • Variable and function declarations are hoisted to the top of their scope.

  • Only declarations are hoisted, not initializations.

  • Function declarations take precedence over variable declarations.

  • Example: console.log(myVar); var myVar = 10; // Output: undefined

  • Example: ...

View all Lead Engineer interview questions
A Software Engineer was asked
Q. Given an array, reverse the order of its elements.
Ans. 

Reverse the elements in the array of strings

  • Iterate through the array and swap the elements from start to end

  • Use two pointers, one at the start and one at the end, and swap the elements until they meet

  • Use a temporary variable to store the element being swapped

View all Software Engineer interview questions
A Software Developer was asked
Q. What does O(n) represent in time and space complexity?
Ans. 

O(n) refers to linear time and space complexity.

  • O(n) means that the time or space required by an algorithm grows linearly with the size of the input.

  • It implies that the algorithm's performance is directly proportional to the input size.

  • For example, if an algorithm takes 10 seconds to process 100 elements, it would take 20 seconds to process 200 elements.

  • O(n) complexity is considered efficient and desirable in most...

View all Software Developer interview questions
A Senior Developer was asked
Q. Given the head of a singly linked list, determine if the linked list has a cycle in it. There is a cycle in a linked list if there is some node in the list that can be reached again by continuously followin...
Ans. 

Check for loop in a linked list

  • Use two pointers, one moving one node at a time and the other moving two nodes at a time

  • If there is a loop, the two pointers will eventually meet

  • If one of the pointers reaches the end of the list, there is no loop

View all Senior Developer interview questions
A Senior Engineer was asked
Q. How do you resolve conflicts during a Git push?
Ans. 

Resolve conflicts by merging changes and resolving conflicts manually.

  • Pull the latest changes from the remote branch

  • Merge the changes with your local branch

  • Resolve conflicts manually by editing the conflicting files

  • Add and commit the changes

  • Push the changes to the remote branch

View all Senior Engineer interview questions
A Senior Engineer was asked
Q. Using JAVA loop iteration, how would you split a string into alphabets, numbers, and symbols? For example: @4Bft#67yjk#
Ans. 

Using JAVA loop iteration to split alphabet, number and symbols in a given string.

  • Create three empty string arrays for alphabet, number and symbol

  • Loop through each character in the given string

  • Check if the character is an alphabet, number or symbol using ASCII values

  • Add the character to the respective array

  • Return the array of strings containing alphabet, number and symbol

View all Senior Engineer interview questions
Are these interview questions helpful?
A Senior Engineer was asked
Q. How do you use XPath to traverse parent nodes?
Ans. 

Using parent traverse to create Xpath

  • Parent traverse is used to select the parent element of the current element

  • The syntax for parent traverse is '..'

  • Example: To select the parent of a div element with class 'example', the Xpath would be '//div[@class='example']/..'

View all Senior Engineer interview questions
A Senior Engineer was asked
Q. Where will you execute test cases?
Ans. 

Test cases will be executed in a dedicated testing environment.

  • Test cases will be executed in a separate environment to avoid interference with the production environment.

  • The testing environment will be set up to mimic the production environment as closely as possible.

  • Test cases will be executed on multiple platforms and browsers to ensure compatibility.

  • Automated testing tools will be used to execute test cases ef...

View all Senior Engineer interview questions
A Senior Software Engineer was asked
Q. Explain the bug life cycle.
Ans. 

Bug life cycle is the process of identifying, reporting, fixing, and verifying software bugs.

  • Bug is identified by testers or users

  • Bug is reported to the development team

  • Development team analyzes and reproduces the bug

  • Bug is assigned to a developer for fixing

  • Developer fixes the bug and marks it as resolved

  • Bug is retested by testers

  • If bug is not fixed, it is reopened and assigned back to developer

  • Once bug is fixed a...

View all Senior Software Engineer interview questions

Agiliad Technologies Interview Experiences

31 interviews found

Interview experience
2
Poor
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I appeared for an interview in Feb 2025, where I was asked the following questions.

  • Q1. They asked about all the basics of OOPS concepts
  • Q2. Asked about previous job roles and responsibilities

Interview Preparation Tips

Interview preparation tips for other job seekers - This company has no minimum respect for the interviewee. Once I cleared first round of interview, they asked me to visit office for next round of interview the very next day. They tried to complete the whole interview process the same day along with salary negotiation. Once that is all done asked me to share documents so that they can work on offer letter and release it as soon as possible. But HR kept saying offer letter is in progress and will update you or call you once it is done. I tried to contact HR on call and also on e-mail but recieved no response let alone offer letter. It was waste of time, efforts and transportation money.

Lead Engineer Interview Questions & Answers

user image Anonymous

posted on 11 Dec 2024

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

(2 Questions)

  • Q1. What is closure
  • Ans. 

    A closure is a function that has access to its own scope, as well as the scope in which it was defined.

    • A closure allows a function to access variables from its outer function even after the outer function has finished executing.

    • Closures are commonly used in event handlers, callbacks, and asynchronous programming.

    • Example: function outerFunction() { let outerVar = 'I am outer'; return function innerFunction() { console.l...

  • Answered by AI
  • Q2. What is hoisting
  • Ans. 

    Hoisting is a JavaScript mechanism where variable and function declarations are moved to the top of their containing scope during the compilation phase.

    • Variable and function declarations are hoisted to the top of their scope.

    • Only declarations are hoisted, not initializations.

    • Function declarations take precedence over variable declarations.

    • Example: console.log(myVar); var myVar = 10; // Output: undefined

    • Example: cons...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Javascripts basic and advanced concepts

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Coding Questions on Golang
  • Q2. Questions on Docker
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Recruitment Consulltant and was interviewed in Feb 2024. There were 4 interview rounds.

Round 1 - Coding Test 

Easy tests, focuses on problem solving.
Be quick, there are 3 problems and platform is "doselect.com"
1 should be in easy category, do it in between when you're in zone and fast enough to wrap it up quick.
1 would be Hard, there'll be test cases you'll miss out. You may chose to ignore a few corner cases, if it consumes too much time, and completing 3 problems is what you aim for.

However, depending on seniority and profile, the relevance of solved test problems in next round is ignored.

Round 2 - Technical 

(1 Question)

  • Q1. Few more discussion about profile and project work, to discuss alignment. 2 what's the output scenariod. couple of coding questions. In depth discussion about storage concepts, internals, os, synchronizati...
Round 3 - Technical 

(1 Question)

  • Q1. Pure technical discussion around C++ & storage internals
Round 4 - Technical 

(1 Question)

  • Q1. Client project discussions around fitment, and then project technical discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - - Be sure of fitment, client project may need perfect role alignment.
- HR is slow to respond, consultants are helpless, process is cumbersome on checking alignment of profile vs tech stack vs client project
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Basic of DSA, Python, Networking
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Feb 2024. There were 4 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Basic concepts were asked from C and C++, Embedded Linux, smalls c programs and output of there. I2C, SPI, UART related questions.
Round 2 - Technical 

(1 Question)

  • Q1. It was technical come managerial round, everything about project and some real time scenario's and opinions.
Round 3 - HR 

(1 Question)

  • Q1. General HR round salary expectation and all. HR questions.
Round 4 - Client Interview 

(1 Question)

  • Q1. Client round was taken after HR. Whatever is written in the resume everything was asked.

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep you are basics strong rest you will clear the interview.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

I appeared for an interview in Dec 2024.

Round 1 - Coding Test 

String based, array based coding questions asked. Gave sufficient time to solve.

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

It was simple mostly asked basic coding questions

Round 2 - One-on-one 

(2 Questions)

  • Q1. Interviewed with ceo
  • Q2. What is your background and things?
Round 3 - One-on-one 

(1 Question)

  • Q1. Mostly technical questions were asked
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Communication protocols
  • Q2. Work experience
Round 2 - Coding Test 

Write code on linked list and arrays

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Sorting algorithm question

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Agiliad Technologies?
Ask anonymously on communities.

Agiliad Technologies Interview FAQs

How many rounds are there in Agiliad Technologies interview?
Agiliad Technologies interview process usually has 2-3 rounds. The most common rounds in the Agiliad Technologies interview process are Technical, Coding Test and One-on-one Round.
How to prepare for Agiliad Technologies 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 Agiliad Technologies. The most common topics and skills that interviewers at Agiliad Technologies expect are C++, Python, Linux, Java and Javascript.
What are the top questions asked in Agiliad Technologies interview?

Some of the top questions asked at the Agiliad Technologies interview -

  1. How to solve conflict during Git pu...read more
  2. Use JAVA loop iteration for splitting alphabet, number and Symbols in @4Bft#67y...read more
  3. Where will you execute test ca...read more
How long is the Agiliad Technologies interview process?

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

Tell us how to improve this page.

Overall Interview Experience Rating

3.7/5

based on 34 interview experiences

Difficulty level

Easy 20%
Moderate 80%

Duration

Less than 2 weeks 73%
2-4 weeks 27%
View more

Agiliad Technologies Reviews and Ratings

based on 201 reviews

3.5/5

Rating in categories

3.5

Skill development

3.4

Work-life balance

3.2

Salary

3.3

Job security

3.4

Company culture

3.0

Promotions

3.4

Work satisfaction

Explore 201 Reviews and Ratings
Python Automation Engineer UI Automation | Storage/Virtualization

Hyderabad / Secunderabad,

Pune

+1

3-8 Yrs

Not Disclosed

Mechanical Design Engineer

Pune

10-20 Yrs

₹ 0.7-2 LPA

Explore more jobs
Senior Software Engineer
403 salaries
unlock blur

₹5.3 L/yr - ₹12.5 L/yr

Technical Lead
177 salaries
unlock blur

₹12.5 L/yr - ₹22.3 L/yr

Senior Engineer
111 salaries
unlock blur

₹4.8 L/yr - ₹18.1 L/yr

Software Engineer
91 salaries
unlock blur

₹3.5 L/yr - ₹7.5 L/yr

Senior Technical Lead
47 salaries
unlock blur

₹16.8 L/yr - ₹29.3 L/yr

Explore more salaries
Compare Agiliad Technologies with

Schneider Electric

4.1
Compare

Rockwell Automation

3.6
Compare

GKN

3.8
Compare

Falcon Autotech

3.9
Compare
write
Share an Interview