Upload Button Icon Add office photos

AKQA

Compare button icon Compare button icon Compare

Filter interviews by

AKQA Interview Questions and Answers

Updated 21 Aug 2023

AKQA Interview Experiences

Popular Designations

2 interviews found

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-

I applied via LinkedIn and was interviewed in Feb 2023. There was 1 interview round.

Round 1 - Technical 

(6 Questions)

  • Q1. Project Architecture
  • Q2. Questions on Kafka, AWS services used in the current project
  • Q3. Design Patterns
  • Q4. Coding question on collections
  • Q5. Multithreading - Executors and Completable future
  • Q6. Scenario based questions

Senior Software Engineer Interview Questions asked at other Companies

Q1. K Largest Elements Problem Statement You are given an integer k and an array of integers that contain numbers in random order. Write a program to find the k largest numbers from the given array. You need to save them in an array and return ... read more
View answer (1)

Sopra Steria

Success to our employee's well-being? A work-life balance that's simply unbeatable.

Our employees have rated us 4 for Work-Life Balance on AmbitionBox

Round 1 - Technical 

(2 Questions)

  • Q1. Explain your current project
  • Q2. Talk about current project

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep fundamentals strong. Be confident and answer.

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

Jobs at AKQA

View all

Interview questions from similar companies

Interview Preparation Tips

Round: Test
Experience: Technical sections had questions from almost all the sections through AMCAT(C, C++, DBMS, DS, OS)(level :moderate)Quantitative aptitude’s questions were good.. All were almost of R. S. Aggarwal level though few exceptions were there tooLogical reasoning and verbal ability was good.. Some questions were tough.

Round: HR Interview
Experience: Overall enjoyed. But not selected because of my less market knowledge.

College Name: NA

Interview Questionnaire 

4 Questions

  • Q1. Explain Network Layers?
  • Ans. 

    Network layers are a hierarchical way of organizing communication protocols.

    • Network layers provide a modular approach to networking.

    • Each layer has a specific function and communicates with adjacent layers.

    • The OSI model has 7 layers, while the TCP/IP model has 4 layers.

    • Examples of layers include the physical layer, data link layer, network layer, transport layer, and application layer.

  • Answered by AI
  • Q2. What is a Dead Lock?
  • Ans. 

    Deadlock is a situation where two or more processes are unable to proceed because they are waiting for each other to release resources.

    • Occurs in multi-threaded/multi-process environments

    • Can lead to system freeze or crash

    • Prevention techniques include resource ordering and timeouts

    • Example: Process A holds resource X and waits for resource Y, while Process B holds resource Y and waits for resource X

  • Answered by AI
  • Q3. Explain Paging and Segmentation
  • Ans. 

    Paging and Segmentation are memory management techniques used by operating systems.

    • Paging divides memory into fixed-size pages and stores them in physical memory.

    • Segmentation divides memory into logical segments and stores them in physical memory.

    • Paging allows for efficient use of physical memory and reduces fragmentation.

    • Segmentation allows for protection and sharing of memory between processes.

    • Examples of operating s...

  • Answered by AI
  • Q4. Pirates of different ages have a treasure of 100 gold coins. On their ship, they decide to split the coins using this scheme: The oldest pirate proposes how to share the coins, the OTHER pirates (not inc...

Interview Preparation Tips

Round: Test
Experience: It would quite a simple test, covering basic questions from general mathematics and algebra
Tips: Practice "Aptitude" on daily basis

Round: Technical Interview
Experience: Technical Interview in sapient will be quite related to understand of your basic concepts. The round also includes Puzzles. Try Practising some random puzzles from internet.
Tips: Be active and Interactive. Even, if you do not know the answer, try explaining your approach. That would get you marks.

Round: HR Interview
Experience: The HR carries larger wait-age in Sapient. Do not panic. He will give you enough time to settle down by asking background questions. He will only try to analyse the kind of person you are. Be true to yourself and your are sure to be successful

Skills: Basic Concepts of Launguages, Operating System, Networks
College Name: NIT JALANDHAR

Skills evaluated in this interview

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

I applied via Recruitment Consulltant and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Write a sorting algorithm

Round 2 - One-on-one 

(1 Question)

  • Q1. Introduction your self

Interview Preparation Tips

Interview preparation tips for other job seekers - It's non technical post.so they ask simple question

Associate Interview Questions & Answers

Ogilvy user image Luke Wadwell

posted on 28 Feb 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Tell me about a time you dealt with a challenging situation
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Analytical, Reasoning

Interview Questionnaire 

11 Questions

  • Q1. What is the difference between C and C++?
  • Ans. 

    C++ is an extension of C with object-oriented programming features.

    • C++ supports classes and objects while C does not.

    • C++ has better support for polymorphism and inheritance.

    • C++ has a standard template library (STL) which C does not have.

    • C++ allows function overloading while C does not.

    • C++ has exception handling while C does not.

  • Answered by AI
  • Q2. What is the difference between for and while loop?
  • Ans. 

    For loop is used for iterating over a sequence while while loop is used for iterating until a condition is met.

    • For loop is used when the number of iterations is known beforehand

    • While loop is used when the number of iterations is not known beforehand

    • For loop is faster than while loop for iterating over a sequence

    • While loop is useful for iterating until a specific condition is met

    • For loop can be used with range() functio...

  • Answered by AI
  • Q3. Write a program to add two numbers without using + operator
  • Q4. How to you reverse a string without using any looping and inbuilt functions?
  • Ans. 

    To reverse a string without using any looping and inbuilt functions, we can use recursion.

    • Create a function that takes a string as input.

    • If the length of the string is 0 or 1, return the string.

    • Otherwise, call the function recursively with the substring starting from the second character and concatenate the first character at the end.

    • Return the reversed string.

    • Example: reverseString('hello') returns 'olleh'.

  • Answered by AI
  • Q5. How many queues will you use to implement a priority queue?
  • Ans. 

    A priority queue can be implemented using a single queue or multiple queues.

    • One approach is to use a single queue and assign priorities to elements using a separate data structure.

    • Another approach is to use multiple queues, each representing a different priority level.

    • For example, if there are three priority levels, three queues can be used to implement the priority queue.

  • Answered by AI
  • Q6. Which datastructure would you use to implement an heteregenous array?
  • Ans. 

    An array of objects can be used to implement a heterogeneous array.

    • Each element in the array can be an object that represents a different data type.

    • The objects can have different properties and methods based on their respective data types.

    • For example, an element can be an object representing a string with a 'value' property and a 'length' method.

  • Answered by AI
  • Q7. Tell me about yourself?
  • Q8. Describe your project?
  • Ans. 

    Developed a web-based inventory management system for a retail company.

    • Used HTML, CSS, and JavaScript for the front-end development.

    • Implemented a RESTful API using Node.js and Express for the back-end.

    • Utilized a MySQL database to store and manage inventory data.

    • Implemented features like product search, order management, and reporting.

    • Ensured data security and user authentication using encryption and JWT.

    • Collaborated wi...

  • Answered by AI
  • Q9. You are given a match-box and two candles of equal size, which can burn 1 hour each. You have to measure 90 minutes with these candles. (There is no scale or clock). How do you do?
  • Q10. You have 8 balls which are identical(completely). You are given a weighing scale. How many times would you measure to get the odd ball out?
  • Q11. Three friends rent a room for Rs.30 by paying Rs.10 each. The owner decides to give them a discount Rs.5 and gives it to the broker. The broker who a cunning man takes Rs.2. and returns one rupee to each ...
  • Ans. 

    The missing rupee is not actually missing. The calculation is misleading and does not account for the total amount paid.

    • The initial amount paid by each person was Rs.10, totaling Rs.30.

    • The owner gave them a discount of Rs.5, so they paid Rs.25 in total.

    • The broker took Rs.2, leaving them with Rs.23.

    • When the broker returned Rs.1 to each person, they each received Rs.1 back, totaling Rs.3.

    • So, the total amount paid by the ...

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: Let me share my interview process with Sapient. As I did not find any helpful papers before attending interview.The initial test was amcat test, which consisted of aptitude, english comprehension(which was annoying because they ask a lot of unknown word meanings), C and C++ basic concepts. I cleared that test.

Round: Technical Interview
Experience: There are 2 interviews round
1) Technical
2) HR

General Tips: Bond: 1.5 yearEligibility Criteria : Greater than 6.5 CGPA
Skills: C++, Java, Algorithm
College Name: NA
Motivation: Sapient, Trust me it’s an awesome company .Be strong in technical area.

Skills evaluated in this interview

Interview Questionnaire 

13 Questions

  • Q1. Inheritence in java?
  • Ans. 

    Inheritance in Java allows a class to inherit properties and methods from another class.

    • Inheritance is achieved using the 'extends' keyword.

    • The class that is being inherited from is called the superclass or parent class.

    • The class that inherits from the superclass is called the subclass or child class.

    • Subclasses can access the public and protected members of the superclass.

    • Inheritance promotes code reusability and allow...

  • Answered by AI
  • Q2. Overloading and Overridding?
  • Q3. WAP to check if no is palindrom or not?
  • Ans. 

    A program to check if a given number is a palindrome or not.

    • Convert the number to a string.

    • Reverse the string and compare it with the original string.

    • If they are equal, the number is a palindrome.

    • If not, the number is not a palindrome.

  • Answered by AI
  • Q4. Primary key and Composite key?
  • Q5. Normalisation?
  • Ans. 

    Normalisation is the process of organizing data in a database to reduce redundancy and improve data integrity.

    • It involves breaking down a table into smaller tables and defining relationships between them.

    • Normalization helps to eliminate data inconsistencies and anomalies.

    • There are different levels of normalization, with each level having specific rules to follow.

    • For example, first normal form (1NF) requires that each t...

  • Answered by AI
  • Q6. Without lifting the pen meet 9 point arranged in squre of 3×3, using 4 lines?
  • Q7. If I am ready to relocate anywhere in India or Outside upon company needs
  • Ans. 

    Yes, I am ready to relocate anywhere in India or outside upon company needs.

    • I am open to exploring new locations and cultures.

    • I understand that relocation may be necessary for career growth and opportunities.

    • I am adaptable and willing to adjust to new environments.

    • I have experience working in diverse teams and can easily integrate into new settings.

  • Answered by AI
  • Q8. If I am ready to accept a project in Java, if Sapient had trained you in DotNet earlier
  • Ans. 

    I would be ready to accept a project in Java even if I was trained in DotNet earlier.

    • I have a strong foundation in programming principles and concepts, which can be applied to any language.

    • I am confident in my ability to quickly learn and adapt to new technologies.

    • I have experience working with multiple programming languages and frameworks.

    • I can leverage my knowledge of DotNet to understand similar concepts in Java.

    • I a...

  • Answered by AI
  • Q9. Why I want to join Sapient
  • Ans. 

    I want to join Sapient because of its reputation for innovative projects and collaborative work environment.

    • Sapient is known for working on cutting-edge projects that push the boundaries of technology

    • I value the collaborative work environment at Sapient, where team members support each other to achieve success

    • I am impressed by Sapient's commitment to professional development and growth opportunities for employees

  • Answered by AI
  • Q10. My Expectations from Sapient
  • Ans. 

    My expectations from Sapient

    • I expect Sapient to provide a challenging and innovative work environment

    • I expect Sapient to offer opportunities for professional growth and learning

    • I expect Sapient to have a collaborative and supportive team culture

    • I expect Sapient to provide competitive compensation and benefits

    • I expect Sapient to have a strong focus on quality and delivering excellent software solutions

  • Answered by AI
  • Q11. What is Counter Strike. ( I mentioned winning a couple of gaming events in my Resume)
  • Q12. What is Trading/Stocks/Exchange. (I had shown my interest in these things by mentioning the development of DalalStreet website by me)
  • Q13. What are you proud of apart from your website DalalStreet and a few more

Interview Preparation Tips

Round: Test
Experience: Vendor based online test consisting of 4 sections – Maths, Logical Reasoning, English and Technical(C/C++/DS/Debugging based Questions). This includes Sectional CutOff as well.

Round: Technical Interview
Experience: Another One on One Interview. Technical Questions on Languages/DataBases and Projects/Internships mentioned by you in your Resume. Lots of Puzzles.
In my case the Interviewer asked me questions on Database(3-4 queries),PHP,HTML,CSS,Internship,C/C++ Basics. Also I had 4 puzzles.

Round: HR Interview
Experience: Key : Just be yourself and be Confident in whatever you say. Show your eagerness to learn things (even if you don’t want to ). If you don’t know anything, Confidently speak up you don’t know. They hardly care, they only see if you are willing to learn.

General Tips: I would add here that SGM is majorly into developing Trading application. SGM – GlobalMarketInstitute would provide you with 6 months of training in technology(Java/DotNet) and Finance(Share/Exchange/Equities etc), which would be a great experience. Hence a knowledge and interest in Share Trading stuff is highly appreciated if you plan to grow your career in Sapient Global Markets.(Bond Agreement of 1.5 years which includes 6 months of Training Period)
Skills: PHP, Databases, C++, Java, .NET
College Name: MNIT Jaipur

Skills evaluated in this interview

Interview Questionnaire 

20 Questions

  • Q1. What is Difference between C,C++?
  • Ans. 

    C is a procedural programming language while C++ is an object-oriented programming language.

    • C is a low-level language while C++ is a high-level language.

    • C++ supports object-oriented programming concepts like classes, inheritance, and polymorphism.

    • C++ has better support for exception handling and templates.

    • C++ is more complex than C and requires more memory.

    • C++ is used for developing applications like video games, while...

  • Answered by AI
  • Q2. What is a class?
  • Ans. 

    A class is a blueprint for creating objects that have similar attributes and behaviors.

    • Classes are used in object-oriented programming.

    • They define the properties and methods that objects of that class will have.

    • Objects are instances of a class.

    • Classes can inherit properties and methods from other classes.

    • Examples of classes include 'Person', 'Car', and 'Animal'.

  • Answered by AI
  • Q3. What is an object?
  • Ans. 

    An object is a self-contained entity that contains data and behavior.

    • An object is an instance of a class.

    • It has attributes (data) and methods (behavior).

    • Objects can interact with each other through their methods.

    • Examples include a car object with attributes like color and model, and methods like start and stop.

    • Another example is a person object with attributes like name and age, and methods like walk and talk.

  • Answered by AI
  • Q4. What is static variable?
  • Ans. 

    A variable that is associated with a class rather than with instances of the class.

    • Static variables are declared using the static keyword.

    • They are initialized only once, at the start of the program execution.

    • They retain their value throughout the program's execution.

    • They can be accessed without creating an instance of the class.

    • Example: public static int count = 0;

  • Answered by AI
  • Q5. What is difference between Static and Global Vaiable?
  • Ans. 

    Static variables have local scope but retain their value between function calls, while global variables have global scope.

    • Static variables are declared inside a function and retain their value between function calls

    • Global variables are declared outside of any function and can be accessed from any part of the program

    • Static variables have local scope, while global variables have global scope

    • Static variables are initializ...

  • Answered by AI
  • Q6. What are pointers?
  • Ans. 

    Pointers are variables that store memory addresses of other variables.

    • Pointers allow for dynamic memory allocation and manipulation.

    • They are commonly used in programming languages like C and C++.

    • Example: int *ptr; // declares a pointer to an integer variable

    • Example: ptr = # // assigns the memory address of num to ptr

    • Example: *ptr = 5; // assigns the value 5 to the variable pointed to by ptr

  • Answered by AI
  • Q7. What are structures?
  • Ans. 

    Structures are arrangements of elements that form a framework or framework-like support.

    • Structures can be found in various fields such as engineering, architecture, and biology.

    • They can be made of different materials such as steel, wood, or bone.

    • Examples include bridges, buildings, and the skeletal system.

    • Structures can be designed to withstand different types of forces such as compression, tension, or bending.

  • Answered by AI
  • Q8. What is a stack and various operations on it?
  • Ans. 

    A stack is a data structure that follows the Last In First Out (LIFO) principle.

    • Push: adds an element to the top of the stack

    • Pop: removes the top element from the stack

    • Peek: returns the top element without removing it

    • IsEmpty: checks if the stack is empty

    • Size: returns the number of elements in the stack

  • Answered by AI
  • Q9. What are 3 steps for using function in c?
  • Ans. 

    Three steps for using functions in C.

    • Declare the function with its return type, name, and parameters.

    • Define the function by writing the code for it.

    • Call the function by using its name and passing arguments if necessary.

  • Answered by AI
  • Q10. What is limit for no of arguments passed to functions? if limit is 10 den how to pass more parameters? Ans:- either Array or Structure
  • Ans. 

    The limit for the number of arguments passed to functions is not fixed. Arrays or structures can be used to pass more parameters.

    • The limit for the number of arguments passed to functions is not fixed and depends on the programming language and system architecture.

    • In C programming language, there is no limit on the number of arguments that can be passed to a function.

    • In Java, the maximum number of arguments that can be ...

  • Answered by AI
  • Q11. What is union?
  • Ans. 

    A union is an organization formed by workers to protect their rights and interests in the workplace.

    • Unions negotiate with employers for better wages, benefits, and working conditions.

    • They also provide support and representation for workers in disputes with management.

    • Membership in a union is voluntary, but members pay dues to support the union's activities.

    • Unions can be industry-specific, such as the United Auto Worker...

  • Answered by AI
  • Q12. What is difference between if else and switch case statements?
  • Ans. 

    if else is used for simple conditions while switch case is used for multiple conditions.

    • if else is a sequential decision-making statement while switch case is a multi-branch decision-making statement

    • if else is used when there are only a few conditions to be checked while switch case is used when there are multiple conditions to be checked

    • if else can have multiple conditions in a single statement while switch case can o...

  • Answered by AI
  • Q13. What are member functions?
  • Ans. 

    Member functions are functions that are defined inside a class and can access the class's private and protected members.

    • Member functions are also known as methods.

    • They can be used to manipulate the data members of an object.

    • They can be overloaded, meaning multiple functions with the same name but different parameters can exist within a class.

    • They can be declared as const, meaning they do not modify the object's state.

    • E...

  • Answered by AI
  • Q14. Find the output:- a=5;b=4;c=++a+b--; find c?
  • Ans. 

    Find the output of c=++a+b-- where a=5 and b=4.

    • The value of a is incremented by 1 before the addition operation

    • The value of b is decremented by 1 after the addition operation

    • The final value of c is 10

    • The value of a becomes 6 and the value of b becomes 3

  • Answered by AI
  • Q15. Plant 10 plants in 5 rows such that each row has 4 plants
  • Ans. 

    10 plants can be planted in 5 rows with 4 plants in each row.

    • Divide the plants into groups of 4.

    • Arrange the groups in 5 rows.

    • Each row will have 4 plants.

  • Answered by AI
  • Q16. There is 2 pot one red and one blue. one pot contains tressure. Two statement are given 1. only one of the statement is correct. 2. Blue pot has the tressure. Find the tressure?
  • Q17. Exceptions handling in java?
  • Ans. 

    Exceptions handling is a mechanism to handle runtime errors in Java programs.

    • Exceptions are objects that are thrown at runtime when an error occurs

    • Java provides try-catch-finally blocks to handle exceptions

    • Checked exceptions must be handled or declared in the method signature

    • Unchecked exceptions can be handled or left unhandled

    • Custom exceptions can be created by extending the Exception class

  • Answered by AI
  • Q18. Run me through your resume
  • Ans. 

    I have experience in project management, data analysis, and consulting across various industries.

    • Managed multiple projects simultaneously, ensuring timely delivery and client satisfaction

    • Analyzed data to identify trends and provide insights for clients

    • Consulted with clients to develop and implement strategies for growth and efficiency

    • Worked with clients in industries such as healthcare, finance, and retail

    • Collaborated ...

  • Answered by AI
  • Q19. Mostly my nterview was project based. He asked me to explain me my project. My contribution in it
  • Q20. What are your 5 year plans
  • Ans. 

    To gain experience in consulting and develop skills in project management, team leadership, and client relations.

    • Gain experience in consulting

    • Develop skills in project management

    • Develop skills in team leadership

    • Develop skills in client relations

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: Written Test consists of following sections:
Technical sections had questions from almost all the sections(C, C++, DBMS, DS, OS)
Quantitative aptitude’s questions were good.. All were almost of R. S. Aggarwal’s level.
Logical reasoning and verbal ability was good.. Some questions were little tough.
Tips: Try to be fast n practice Quantitative aptitude to increase speed..

Round: Technical Interview
Experience: Technical Interview was conducted on skype. I was able to answer most of the questions. And if i could not answer i tried to explain my approach using examples...It lasted for 50 mins..

Tips: Brush up basics knowledge of C,C++ and be confident of what you know. And try to explain your approach if you couldn't tell answer.

Round: HR Interview
Experience: This interview was also through skype. You can drive this Interview towards the direction you want... This interview also lasted for 50 mins... I explained him my project.
Tips: Just be cool.. He was just checking your confidence n spirit to complete the task given to you..

All the best!!!!

General Tips: Practice Quant regularly from Rs.Agrawal, solve questions on DBMS and C,C++ from India Bix.. Test was conducted by AMCAT so try to find if its questions are available on internet.
Skills: C,C++
College Name: NIT Raipur
Motivation: Its clients which are AUDI, Ferrari, Coca-cola,Unilever.
Funny Moments: To try to make me comfortable he asked me weather i like coke or pepsi. He asked why? i said bcoz i feel coke has little less soda content in it.:P Next when i told him my hobbies are watching sitcoms he asked which sitcoms have u watched. I started naming sitcoms he had to intreuppt me.. den asked which one u liked best n y i was telling him the reason then in between he asked me about my project n i thought it was about sitcom so i was answering him about sitcom rather than my project then after a big confusion i co

Skills evaluated in this interview

Contribute & help others!
anonymous
You can choose to be anonymous

AKQA Interview FAQs

How many rounds are there in AKQA interview?
AKQA interview process usually has 1-2 rounds. The most common rounds in the AKQA interview process are Technical and Resume Shortlist.
How to prepare for AKQA 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 AKQA. The most common topics and skills that interviewers at AKQA expect are Javascript, CSS, HTML, Java and Web Development.
What are the top questions asked in AKQA interview?

Some of the top questions asked at the AKQA interview -

  1. Questions on Kafka, AWS services used in the current proj...read more
  2. Multithreading - Executors and Completable fut...read more
  3. Coding question on collecti...read more

Recently Viewed

SALARIES

BIT College

No Salaries

REVIEWS

INDO-MIM

No Reviews

REVIEWS

BIT College

No Reviews

SALARIES

INDO-MIM

No Salaries

LIST OF COMPANIES

INDO-MIM

Overview

DESIGNATION

COMPANY BENEFITS

INDO-MIM

No Benefits

LIST OF COMPANIES

BIT College

Overview

Tell us how to improve this page.

AKQA Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

HCLTech

Workplace transformation starts with you

Interview Questions from Similar Companies

Publicis Sapient Interview Questions
3.5
 • 612 Interviews
Ogilvy Interview Questions
3.8
 • 7 Interviews
Leo Burnett Interview Questions
3.3
 • 4 Interviews
Ashore Systems Interview Questions
3.2
 • 4 Interviews
Isobar Interview Questions
2.3
 • 1 Interview
View all

AKQA Reviews and Ratings

based on 28 reviews

3.3/5

Rating in categories

3.0

Skill development

3.9

Work-life balance

3.6

Salary

3.0

Job security

3.1

Company culture

3.3

Promotions

3.0

Work satisfaction

Explore 28 Reviews and Ratings
Principal Web Developer

Gurgaon / Gurugram

8-13 Yrs

Not Disclosed

Explore more jobs
Senior Software Engineer
33 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Web Developer
25 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
12 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Quality Assurance Analyst
10 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Technical Delivery Manager
10 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare AKQA with

Wunderman Thompson

3.3
Compare

Ogilvy

3.8
Compare

Publicis Sapient

3.5
Compare

Havas Worldwide

3.0
Compare
Did you find this page helpful?
Yes No
write
Share an Interview
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent