Upload Button Icon Add office photos

Filter interviews by

Interactive Avenues Senior Manager Interview Questions and Answers

Updated 2 May 2019

Interactive Avenues Senior Manager Interview Experiences

1 interview found

Interview Questionnaire 

1 Question

  • Q1. - Depends on Team that you have applied (Creative, Tech, Strategy, Media, Communication or Servicing) - Be clear on technical aspect required in Digital Media Ecosystem

Interview Preparation Tips

Round: Resume Shortlist
Experience: - clear indication of day to day task in your previous company
- project that you have worked
- highlight you core competencies
- higlight your past achievements

Round: Case Study Interview
Experience: For Strategy, media, communication and Servicing its mandate to have knowledge of modus operandi in Digital media if not Digital agency.
- Should know how to use planning, strategy and media buying tools

Round: Final
Experience: This round is generally taken by HOD to ensure that the person will fit the culture or not. They will check your problem solving capabilities and How innovative or creative one can be.
This round is generally easiest for me ;)

Interview questions from similar companies

I applied via Job Portal and was interviewed in Oct 2021. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. How do you handle conflict between resources
  • Ans. 

    I encourage open communication and collaboration to resolve conflicts and find mutually beneficial solutions.

    • Encourage open communication and active listening

    • Identify the root cause of the conflict

    • Brainstorm potential solutions together

    • Find a mutually beneficial solution

    • Document the resolution and follow up to ensure success

  • Answered by AI
  • Q2. What challenges you faced and what’s your contribution , how did you handle

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepare with what you are and real time experience will help to crack the interview
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Feb 2022. There were 4 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 - Case Study 

It can be related to a scenario which might be related to an organization who is looking to move into digital domain to sell their products, ask will be create a roadmap, program plan, proposed technology stack and budgeting.

Round 3 - One-on-one 

(1 Question)

  • Q1. Generic questions related to the role & responsibilities in current company Scenario based questions to understand customer handling capability, people management skills, risk management, communication ski...
Round 4 - One-on-one 

(1 Question)

  • Q1. Mostly VP or SVP round where they look at the candidate's communication skills and expression while talking in terms of confidence, articulation and presentation. This is the time when you can again call o...

Interview Preparation Tips

Topics to prepare for Epsilon Senior Manager interview:
  • Program Management
  • Risk Management
  • People Management
  • Project Management
  • Agile Methodology
Interview preparation tips for other job seekers - Stay calm, go through Epsilon website, understand what they do and their products.
Ensure that you understood the question well and respond accordingly in few lines rather than beating around the bush.
Use examples for most of the questions which gives the feeling that you have really worked on those areas.

Manager Interview Questions & Answers

Denave user image Vishal Kumar

posted on 9 Nov 2023

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

I appeared for an interview in Feb 2023.

Round 1 - Technical 

(1 Question)

  • Q1. Advanced excel test

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn excel and have knowledge about market business standards in the terms of Business Analytics
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Testing Concepts
  • Q2. Testing Concepts And tools Technology

I applied via Job Portal and was interviewed in Jun 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 - One-on-one 

(1 Question)

  • Q1. Tell me about yourself are you able to go out and do job and travel

Interview Preparation Tips

Interview preparation tips for other job seekers - 1ST interview was easy n it was nice was interviewd by one person very well and after wards they called and asked to come to office for interview purpose

Interview Questionnaire 

3 Questions

  • Q1. N a line where words are separated by spaces, , and capitalize first letter of the reversed word. Other letters of the word should be in small. Input : “how are you?” → Output: “Woh Era ?uoy”
  • Ans. 

    The program capitalizes the first letter of each reversed word in a sentence.

    • Split the sentence into an array of words using space as a delimiter.

    • Reverse each word in the array and capitalize the first letter.

    • Join the modified words back into a sentence.

  • Answered by AI
  • Q2. He second question reduced to finding maximum weight matching in a bipartite graph. Not many people would have done this (maybe none)
  • Q3. There are 2 sets of countries. One set will donate clothes (something of this sort) and anotherset will accept clothes. A country can be in only 1 of the sets. The amount of clothes donated is also given. ...

Interview Preparation Tips

Round: Test
Experience: There were about 20 MCQs (30 minutes) to be done after the coding section. MCQs were totally nonsense. Can be done in 10 mins.For coding section 60 mins.  It was hosted on Hackerrank.
Duration: 90 minutes
Total Questions: 2

Round: Technical Interview
Experience: After this, selected candidates were interviewed that consists of 4 rounds and discussion was mostly on your CV and data structure problems.

General Tips: Be honest with your interviewer. If you are not comfortable in 1 topic, tell your interviewer honestly. Do well in other areas. Look for hints from the interviewer if you get stuck. They want to see how you approach a problem.
Skills: Algortihm, Data structure
College Name: IIT DELHI

Interview Questionnaire 

2 Questions

  • Q1. Little discussion on my project
  • Q2. Given a chessboard and the initial position of horse. If “n” is the number of steps the horse can make then what is probability that it goes out of board ?
  • Ans. 

    Probability of a horse going out of a chessboard in 'n' steps.

    • The total number of possible moves for a horse is 8.

    • The probability of going out of the board depends on the position of the horse.

    • For example, if the horse is at a corner, the probability of going out of the board is higher.

    • The probability can be calculated using combinatorics and geometry.

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: They did not expect any code in this round. An algo or pseudo code is fine.



1) You are given 2 vessels with capacity M liters and N liters capacity and infinite supply of water. You need to find the minimum number of steps required to get P liters. Any of the below action is considered a step



     a) Filling vessel with water



     b) Emptying vessel



     c) Pouring water from one vessel to another vessel.



2) Given n sets each containing m integers. You need to create MinDiff set by picking exactly 1 element from each set. The difference between the maximum and minimum elements in the MinDiff set should be minimum.



eg: for the sets {30, 20, 10, 40},{ 22, 33, 44, 99},{ 16, 17, 18, 19} min diff set is {19, 20, 22}. Max and min elements in MinDiff set are 22 and 19 and their difference is 3.

Round: Technical Interview
Experience: 1) you will be given the binary representation of the numbers in the form of 2D array.eg: r1- 00001

r2- 00100

r3- 01010

r4- 00110

r5- 00111 This means the elements are 1, 4, 10 , 6 and 7.

A number “n” is given. Let us say that n can be formed by doing bitwise OR operation on rows of given matrix. What is the minimum number of rows that needs to be deleted from the matrix so that “n” can never be formed by doing the OR of the rows.

If n is 14(01110) then it can be formed by doing r2|r3 or r3|r4. You can prevent n formation either by deleting {r2,r4} or {r3}. But {r3} has least number of elements so it is the required set.2) Find the average of mid 50% of elements in the running stream of integersI have not cleared round-II so no further questions.

College Name: IIT GANDHINAGAR

Interview Questionnaire 

3 Questions

  • Q1. Algorithms on arrays and strings (coding)
  • Ans. 

    Algorithms for manipulating arrays and strings in coding

    • Use sorting algorithms like quicksort and mergesort for arrays

    • Use string manipulation functions like substring and replace for strings

    • Use dynamic programming for optimizing solutions to array and string problems

  • Answered by AI
  • Q2. Distributed Database Design
  • Q3. Large scale Ad Server Design
  • Ans. 

    Designing a large scale Ad Server

    • Use distributed systems for scalability

    • Implement caching for faster ad delivery

    • Ensure high availability and fault tolerance

    • Use real-time bidding for efficient ad placement

    • Implement fraud detection mechanisms

    • Ensure compliance with privacy regulations

  • Answered by AI

Interview Preparation Tips

Round: Interview
Experience: They tested on thought-process during design problems. What problems are with the current solution I suggested and how to improve it...
Tips: Hints from interviewer are very helpful
Keep talking while you are thinking

Skills: Algorithms, Thinking Skills, Coding
College Name: IIT KHARAGPUR

Skills evaluated in this interview

Interview Questionnaire 

9 Questions

  • Q1. Find Maximum sub sequence sum in an array ?
  • Ans. 

    Maximum sub sequence sum in an array

    • Use Kadane's algorithm

    • Initialize max_so_far and max_ending_here to 0

    • Iterate through the array and update max_ending_here and max_so_far

    • Return max_so_far

  • Answered by AI
  • Q2. What do you understand by the endianness of the system ? How do you find out the the type of endianness ?
  • Ans. 

    Endianness refers to the byte order of a system. It determines how multi-byte data types are stored in memory.

    • Little-endian systems store the least significant byte first, while big-endian systems store the most significant byte first.

    • Endianness can affect the way data is transmitted between systems.

    • To determine the endianness of a system, you can use the byte order mark (BOM) or write a test program that checks the by...

  • Answered by AI
  • Q3. Sort an array which consists of 0's and 1's only
  • Ans. 

    Sort an array of 0's and 1's only.

    • Use two pointers, one at the beginning and one at the end of the array.

    • Swap 0's from the beginning with 1's from the end until the pointers meet.

    • Alternatively, use a counting sort algorithm to count the number of 0's and 1's and then reconstruct the array.

  • Answered by AI
  • Q4. A question on applications of minimum spanning tree, apply prim's or kruskal's algorithm
  • Q5. What do you understand by Heaps, max and min heaps ?
  • Ans. 

    Heaps are data structures used to efficiently find the maximum or minimum element in a collection.

    • Max heap: parent nodes are always greater than or equal to child nodes

    • Min heap: parent nodes are always smaller than or equal to child nodes

    • Heaps are commonly used in priority queues and sorting algorithms

    • Heap operations include insert, delete, and extract max/min

    • Example: An array [3, 8, 2, 5, 1, 4, 6] can be represented a

  • Answered by AI
  • Q6. What do you understand by hashing ? questions on application of hashing
  • Q7. Find 3 nos a,b and c in an array where a+b = c
  • Ans. 

    Find 3 numbers in an array where a+b=c.

    • Loop through the array and check for all possible combinations of a and b.

    • Use a hash table to store the values of a and b, and check if c is present in the hash table.

    • Sort the array and use two pointers to find a and b, and then check if their sum equals c.

  • Answered by AI
  • Q8. Some puzzles, as the other interviewee said, but not asked to me
  • Q9. Questions on Dynamic programming

Interview Preparation Tips

College Name: NA

Skills evaluated in this interview

Interactive Avenues Interview FAQs

How to prepare for Interactive Avenues Senior Manager 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 Interactive Avenues. The most common topics and skills that interviewers at Interactive Avenues expect are Digital Marketing, Digital Media, Media Planning, Media Strategy and PPC.

Tell us how to improve this page.

Interview Questions from Similar Companies

Epsilon Interview Questions
3.9
 • 90 Interviews
Regalix Interview Questions
2.9
 • 45 Interviews
Denave Interview Questions
3.6
 • 40 Interviews
Xdbs Interview Questions
3.1
 • 39 Interviews
Smollan Group Interview Questions
4.0
 • 36 Interviews
InMobi Interview Questions
3.4
 • 35 Interviews
Mediamint Interview Questions
3.4
 • 34 Interviews
MiQ Digital Interview Questions
3.3
 • 32 Interviews
View all
Interactive Avenues Senior Manager Salary
based on 33 salaries
₹7.8 L/yr - ₹16 L/yr
42% less than the average Senior Manager Salary in India
View more details

Interactive Avenues Senior Manager Reviews and Ratings

based on 4 reviews

1.6/5

Rating in categories

2.7

Skill development

3.0

Work-life balance

2.3

Salary

2.4

Job security

1.7

Company culture

1.6

Promotions

2.3

Work satisfaction

Explore 4 Reviews and Ratings
Assistant Manager
58 salaries
unlock blur

₹5.5 L/yr - ₹12 L/yr

Group Head
43 salaries
unlock blur

₹11 L/yr - ₹22.5 L/yr

Senior Executive
41 salaries
unlock blur

₹4.8 L/yr - ₹8 L/yr

Senior Manager
33 salaries
unlock blur

₹7.8 L/yr - ₹16 L/yr

Associate Head Group
25 salaries
unlock blur

₹10 L/yr - ₹16.5 L/yr

Explore more salaries
Compare Interactive Avenues with

Epsilon

3.9
Compare

Denave

3.6
Compare

Smollan Group

4.0
Compare

ChannelPlay

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