Upload Button Icon Add office photos

Filter interviews by

Agiliad Technologies Senior Developer Interview Questions and Answers

Updated 26 Jan 2023

Agiliad Technologies Senior Developer Interview Experiences

1 interview found

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

I appeared for an interview in Dec 2022.

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. All Technical, pointers , linked lists, recursion,etc...
  • Q2. Find if there is loop in the linked list
  • 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

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - All Technical questions on pointers, write a C program to count number of 1s, linked list.

Skills evaluated in this interview

Senior Developer Jobs at Agiliad Technologies

View all

Interview questions from similar companies

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

I appeared for an interview in Feb 2024.

Round 1 - Technical 

(1 Question)

  • Q1. Swift interview questions
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Dec 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. What is the concept of virtual inheritance in relation to vtables and vptrs in object-oriented programming?
  • Ans. 

    Virtual inheritance allows a derived class to inherit from a base class without creating duplicate base class subobjects.

    • Virtual inheritance is used to resolve the Diamond Problem in C++ where a class inherits from two classes that have a common base class.

    • It ensures that only one copy of the base class is inherited by the derived class.

    • Virtual inheritance introduces a virtual base class subobject to the derived class,...

  • Answered by AI
  • Q2. Explained about vtptr and vtable initialisation and structure
Round 2 - Technical 

(1 Question)

  • Q1. What is the implementation of a class for string operations?
  • Ans. 

    A class for string operations can include methods for concatenation, substring extraction, length calculation, etc.

    • Create a class with methods like concatenateStrings, extractSubstring, calculateLength, etc.

    • Use string manipulation functions like substring, concat, length, etc. within the class methods.

    • Ensure error handling for edge cases like empty strings or out-of-bounds indices.

    • Example: class StringOperations { conc...

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

I applied via Referral and was interviewed before Jun 2022. 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. C sharp basic concept
  • Q2. Explain Oops concept
  • Ans. 

    Object-oriented programming paradigm focusing on objects and classes for code organization and reusability.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit (object)

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

    • Polymorphism: Ability to present the same interface for different data types

  • Answered by AI
  • Q3. Explains oops type
  • Ans. 

    Object-oriented programming paradigm that focuses on objects and classes

    • Encapsulation: bundling data and methods that operate on the data into a single unit (class)

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

    • Polymorphism: ability to present the same interface for different data types

    • Abstraction: hiding the complex implementation details and showing only the necessary features

  • Answered by AI
Round 3 - Coding Test 

Oop s concept all give simple program noted task

Interview Preparation Tips

Interview preparation tips for other job seekers - Utthunga technology company fresher role good company and environment very tell .
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Mar 2023. There was 1 interview round.

Round 1 - Coding Test 

Asked to create a login form using MVVM architecture with frontend WPF and backend C#

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

(1 Question)

  • Q1. Difference between association aggregation and composition
  • Ans. 

    Association, aggregation, and composition are types of relationships between classes in object-oriented programming.

    • Association is a relationship where two classes are connected, but not dependent on each other.

    • Aggregation is a type of association where one class contains another class, but the contained class can exist independently.

    • Composition is a stronger form of aggregation where the contained class is part of the

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Sep 2022. There were 2 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 

(5 Questions)

  • Q1. What is copy constructor?
  • Ans. 

    Copy constructor is a special type of constructor which creates a new object as a copy of an existing object.

    • Copy constructor is used to initialize a new object as a copy of an existing object.

    • It takes an object of the same class as a parameter.

    • It is called automatically when a new object is created from an existing object.

    • Example: class MyClass { public: MyClass(const MyClass& obj) { // copy constructor logic } };

  • Answered by AI
  • Q2. Difference between copy constructor and assignment operator
  • Ans. 

    Copy constructor is used to create a new object as a copy of an existing object, while assignment operator is used to assign values from one object to another.

    • Copy constructor is called when a new object is created from an existing object, while assignment operator is called when an existing object is assigned values from another object.

    • Copy constructor creates a new object with its own memory space, while assignment o...

  • Answered by AI
  • Q3. What is static function
  • Ans. 

    A static function is a function that is associated with a class rather than an instance of the class.

    • Static functions can be called without creating an instance of the class.

    • Static functions are commonly used for utility functions that do not require access to instance-specific data.

    • Static functions are declared using the 'static' keyword in many programming languages.

    • Example: 'Math.max()' in JavaScript is a static fun

  • Answered by AI
  • Q4. Write Fibonacci series
  • Ans. 

    Fibonacci series is a sequence of numbers where each number is the sum of the two preceding ones.

    • Start with 0 and 1 as the first two numbers in the series

    • Add the previous two numbers to get the next number in the series

    • Repeat this process to generate the Fibonacci series

  • Answered by AI
  • Q5. What is single ton design pattern
  • Ans. 

    Singleton design pattern ensures a class has only one instance and provides a global point of access to it.

    • Ensures a class has only one instance

    • Provides a global point of access to that instance

    • Commonly used in scenarios where only one instance of a class is needed, such as database connections or logging

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - If ur c++ developer go through the c++ 11/14 concept

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Jan 2022. There were 4 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. OOPs concepts and program on linked list reversal and c pointer concepts
Round 2 - Technical 

(1 Question)

  • Q1. OOPs concepts,C basis, IPC and signals
Round 3 - Technical 

(1 Question)

  • Q1. OOPs concepts, c basics, data structures
Round 4 - HR 

(5 Questions)

  • Q1. Share details of your previous job.
  • Q2. What are your salary expectations?
  • Q3. What is your family background?
  • Q4. Why are you looking for a change?
  • Q5. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Have gone though 3 levels of technical interviews followed by manageral discussion and HR discussion
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - Assignment 

Coding in languages such as Python, C++, and SQL.

Round 2 - HR 

(2 Questions)

  • Q1. What is your current salry and expected salary ?
  • Ans. 

    I am currently earning $80,000 annually and my expected salary is $90,000.

    • Current salary: $80,000 annually

    • Expected salary: $90,000 annually

  • Answered by AI
  • Q2. How soon you can join ?
  • Ans. 

    I can join within 2 weeks of receiving an offer.

    • I can start within 2 weeks of receiving an offer.

    • I need to give a 2-week notice at my current job.

    • I have some personal commitments that I need to wrap up before starting.

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. About react native
Round 2 - One-on-one 

(1 Question)

  • Q1. Questions related to react native and core.
Round 3 - HR 

(1 Question)

  • Q1. React native questions

Agiliad Technologies Interview FAQs

How many rounds are there in Agiliad Technologies Senior Developer interview?
Agiliad Technologies interview process usually has 2 rounds. The most common rounds in the Agiliad Technologies interview process are Resume Shortlist and Technical.
How to prepare for Agiliad Technologies Senior Developer 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++, C, Firmware Development, Python and Electronics Engineering.
What are the top questions asked in Agiliad Technologies Senior Developer interview?

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

  1. Find if there is loop in the linked l...read more
  2. All Technical, pointers , linked lists, recursion,etc...read more

Tell us how to improve this page.

Agiliad Technologies Senior Developer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Falcon Autotech Interview Questions
3.9
 • 46 Interviews
TMEIC Interview Questions
3.8
 • 19 Interviews
Festo Interview Questions
3.9
 • 18 Interviews
Virtuoso Interview Questions
3.7
 • 16 Interviews
View all
Agiliad Technologies Senior Developer Salary
based on 4 salaries
₹5.7 L/yr - ₹20 L/yr
32% less than the average Senior Developer Salary in India
View more details
Senior Developer

Pune,

Bangalore / Bengaluru

4-8 Yrs

Not Disclosed

Explore more jobs
Senior Software Engineer
412 salaries
unlock blur

₹4.5 L/yr - ₹15 L/yr

Technical Lead
176 salaries
unlock blur

₹7.5 L/yr - ₹25 L/yr

Senior Engineer
105 salaries
unlock blur

₹4.8 L/yr - ₹16.2 L/yr

Software Engineer
85 salaries
unlock blur

₹3.5 L/yr - ₹7.5 L/yr

Technical Architect
36 salaries
unlock blur

₹17 L/yr - ₹35.3 L/yr

Explore more salaries
Compare Agiliad Technologies with

Falcon Autotech

3.9
Compare

Technosoft Engineering Projects Limited

3.9
Compare

TMEIC

3.8
Compare

Festo

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