Upload Button Icon Add office photos

Filter interviews by

Responsive Media Tech Services Interview Questions and Answers

Updated 3 Mar 2022
Popular Designations

Responsive Media Tech Services Interview Experiences

2 interviews found

I applied via LinkedIn and was interviewed in Feb 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 - HR 

(3 Questions)

  • Q1. Share details of your previous job.
  • Q2. Why are you looking for a change?
  • Q3. Tell me about yourself.
Round 3 - One-on-one 

(1 Question)

  • Q1. About the previous Job, Salary expectations, JD

Interview Preparation Tips

Interview preparation tips for other job seekers - All the best ...........................

I applied via Naukri.com and was interviewed before Feb 2021. 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 - HR 

(5 Questions)

  • Q1. Why should we hire you?
  • Q2. Where do you see yourself in 5 years?
  • Q3. What are your strengths and weaknesses?
  • Q4. Tell me about yourself.
  • Q5. What do you know about this digital Marketing?
  • Ans. 

    Digital marketing refers to the use of digital channels and technologies to promote products or services.

    • It involves various online marketing strategies such as search engine optimization (SEO), social media marketing, email marketing, and content marketing.

    • Digital marketing aims to reach and engage with a target audience through digital platforms like websites, mobile apps, and social media platforms.

    • It allows busines...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep focusing on the things, Which You are interested in and never stop finding out ideas by which you can explore yourself in any field you are in!

Skills evaluated in this interview

Top trending discussions

View All
Interview Hub
2w
a client servicing executive
FeedCard Image
Got a question about Responsive Media Tech Services?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Naukri.com and was interviewed in Oct 2019. There were 3 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Scripting was major focus, program to read the numbers 1 to infinity and convert them to words , ex : 1 as one , 100 as hundred , 1543 as one thousand five hundreden fourty three
  • Ans. 

    A program to convert numbers into their English word representation, handling numbers from 1 to infinity.

    • Use a recursive function to break down numbers into manageable parts.

    • Handle special cases for numbers like 11-19 (e.g., eleven, twelve).

    • Use arrays or dictionaries to map numbers to words for efficiency.

    • Example: 1543 is broken down into 1000 + 500 + 40 + 3, resulting in 'one thousand five hundred forty three'.

  • Answered by AI
  • Q2. Ansible concepts, this was major focus
  • Q3. Jenkins pipeline concepts
  • Q4. Basic other tools questions

Interview Preparation Tips

Interview preparation tips for other job seekers - It wasn't that scary, one technical round, managerial tech round, manager round, hr round, all happened in a single day

Skills evaluated in this interview

Analyst Interview Questions & Answers

Publicis user image Prathamesh Bhosale

posted on 22 Dec 2021

I applied via LinkedIn and was interviewed before Dec 2020. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. What is sem in digital marketing?
  • Ans. 

    SEM stands for Search Engine Marketing, which involves promoting websites by increasing their visibility in search engine results pages.

    • SEM involves paid advertising on search engines like Google and Bing

    • It includes strategies like keyword research, ad copywriting, and bid management

    • SEM can be used to drive traffic, increase brand awareness, and generate leads or sales

    • Examples of SEM platforms include Google Ads, Bing ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - prep well. do well and they will go in detail for each thing on the cv

Skills evaluated in this interview

I applied via LinkedIn and was interviewed in May 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Details of current Role & responsibilities and usual BA questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Easy & quick process, They look for someone of that particular domain.

I applied via Referral and was interviewed before Nov 2021. 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 - One-on-one 

(1 Question)

  • Q1. Focus on the better articulation of thoughts. Highlight sales experience if any.
Round 3 - Technical 

(1 Question)

  • Q1. Testing Sales scenario, objection handling
Round 4 - HR 

(2 Questions)

  • Q1. Flexibility to work in shifts
  • Q2. Willingness to work in a target-based process
  • Ans. 

    Yes, I am willing to work in a target-based process.

    • I have experience working in target-driven environments and have consistently met or exceeded my targets.

    • I am motivated by goals and enjoy the challenge of working towards specific objectives.

    • I am comfortable with the pressure that comes with working towards targets and can effectively manage my time and resources to achieve them.

    • I believe that working in a target-bas...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - - Brush up on comms skills
- Work on sales skills
- Very important to work on objection-handling skills
- Good to learn about the basics of Google Ads

Responsive Media Tech Services HR Interview Questions

4 questions and answers

Q. What are your strengths and weaknesses?
Q. Tell me about yourself.
Q. Why should we hire you?

I appeared for an interview in Feb 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 Minutes
Round difficulty - Hard

The test was at 6 pm with cam on and in fullscreen mode.

  • Q1. 

    Interleaving Two Strings Problem Statement

    You are given three strings 'A', 'B', and 'C'. Determine if 'C' is formed by interleaving 'A' and 'B'.

    String 'C' is an interleaving of 'A' and 'B' if the lengt...

  • Ans. 

    The problem involves determining if a string 'C' is formed by interleaving two given strings 'A' and 'B'.

    • Check if the length of 'C' is equal to the sum of the lengths of 'A' and 'B'.

    • Verify if all characters of 'A' and 'B' exist in 'C' while maintaining their order.

    • Return 'True' if 'C' is an interleaving of 'A' and 'B', otherwise return 'False'.

  • Answered by AI
  • Q2. 

    Construct Binary Tree from Inorder and Postorder Traversal

    Given two lists representing the inorder and postorder traversal of a binary tree of integer type with 'N' nodes, construct the binary tree and r...

  • Ans. 

    Construct a binary tree from inorder and postorder traversal lists and return its root.

    • Create a map to store the indices of elements in the inorder traversal list for quick access during tree construction.

    • Use the postorder list to determine the root of the tree and recursively build left and right subtrees.

    • Construct the tree by recursively dividing the inorder list based on the root index in postorder list.

    • Return the r...

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 45 Minutes
Round difficulty - Easy

At 10:00 AM. Interviewer was very friendly and young but his cam was off.

  • Q1. 

    Find Paths in Binary Tree

    Kevin has sketched a series of integers, forming a diagram that represents a binary tree. Challenged by a friend, Kevin needs to find all paths from the root to the leaf where th...

  • Ans. 

    Find all root-to-leaf paths in a binary tree that sum to a given number K.

    • Use Depth-First Search (DFS) to traverse the tree.

    • Keep track of the current path and its sum as you traverse.

    • When a leaf node is reached, check if the sum equals K.

    • If it does, store the path as a valid result.

    • Example: For tree [5, 6, 4] and K=15, path [5, 6, 4] is valid.

  • Answered by AI
Round 3 - Face to Face 

(1 Question)

Round duration - 45 Minutes
Round difficulty - Easy

It was held at 4 p.m. The interviewer was senior compared to the one in the previous round. Also, his cam was also on, but he wasn't speaking much and neither giving any expressions.

  • Q1. 

    Boxes of Power Problem Statement

    Given a set of boxes represented by an array gainPower, where each box has a certain power value, along with an initial power value 'power', your task is to maximize the t...

  • Ans. 

    Maximize total score by selecting boxes optimally based on power values and operations.

    • Iterate through the boxes and perform operations based on power values and current score

    • Keep track of power, score, and selected boxes to maximize total score

    • Example: For input [3, 50, [20, 30, 40]], select boxes with power 20 and 30 to get a score of 2

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in MumbaiEligibility criteriaNone except no active backlogsMedia.net interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, DP, OOPS, Operating Systems, Computer NetworksTime required to prepare for the interview - 7 monthsInterview preparation tips for other job seekers

Tip 1 : DSA is the key. Starting from scratch, one can become proficients in a couple of months.
Tip 2 : Solve questions just a bit outside your comfort zone. Solve too easy to too hard questions is not of any use.
Tip 3 : Be consistent, make a habit of following good coding practices.
Tip 4 : Get to know the ins and out of your projects. You must be very confident while explaining those.
Tip 5 : Don't just directly to system-design, brush up on OOPS principles, networks, OS, DBMS before that.

Application resume tips for other job seekers

Tip 1 : Keep it crisp and to the point. Make bullet points.
Tip 2 : Bold the things you want to be paid attention to. Use numbers rather than vague sentences.
Tip 3 : Only put the things you are confident about.
Tip 4 : Don't put things irrelevant to the job, it only dilutes the main content.

Final outcome of the interviewRejected

Skills evaluated in this interview

Are these interview questions helpful?
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Group Discussion 

Product knowledge work experience

Interview Preparation Tips

Interview preparation tips for other job seekers - Find a job you love and then do it with passion
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

  • Q1. Out of trade
  • Q2. How to manage distributor of he was shouting on you
  • Ans. 

    Stay calm, listen actively, and address the distributor's concerns professionally to resolve the situation effectively.

    • Remain calm: Take a deep breath and avoid reacting emotionally to the shouting.

    • Listen actively: Allow the distributor to express their concerns fully without interruption.

    • Acknowledge their feelings: Validate their emotions by saying something like, 'I understand this is frustrating for you.'

    • Seek clarif...

  • Answered by AI
Round 1 - One-on-one 

(1 Question)

  • Q1. Tell me something about yourself

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview rounds were amazing they understand the potential of employee

Responsive Media Tech Services Interview FAQs

How many rounds are there in Responsive Media Tech Services interview?
Responsive Media Tech Services interview process usually has 2-3 rounds. The most common rounds in the Responsive Media Tech Services interview process are Resume Shortlist, HR and One-on-one Round.
How to prepare for Responsive Media Tech Services 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 Responsive Media Tech Services. The most common topics and skills that interviewers at Responsive Media Tech Services expect are Back Office, Ad Operations, Digital Marketing, Campaign Management and Design Development.
What are the most common questions asked in Responsive Media Tech Services HR round?

The most common HR questions asked in Responsive Media Tech Services interview are -

  1. What are your strengths and weakness...read more
  2. Where do you see yourself in 5 yea...read more
  3. Why are you looking for a chan...read more

Tell us how to improve this page.

Interview Questions from other companies in Marketing & Advertising Industry

Genxlead Interview Questions
3.8
 • 8 Interviews
ChannelPlay Interview Questions
3.8
 • 25 Interviews
Cheil India Interview Questions
3.0
 • 17 Interviews
Merkle Sokrati Interview Questions
3.8
 • 31 Interviews
GroundTruth Interview Questions
3.4
 • 3 Interviews
Focus Organisation Interview Questions
3.9
 • 23 Interviews
IPG Mediabrands Interview Questions
3.4
 • 22 Interviews
ReturnOnWeb Interview Questions
3.5
 • 5 Interviews
View all

Responsive Media Tech Services Reviews and Ratings

based on 34 reviews

3.7/5

Rating in categories

3.8

Skill development

3.5

Work-life balance

3.2

Salary

3.5

Job security

3.6

Company culture

3.6

Promotions

3.6

Work satisfaction

Explore 34 Reviews and Ratings
Trainee Advertising Operations (AdOps)

Bangalore / Bengaluru

0-1 Yrs

Not Disclosed

Trainee Programmatic Advertising

Bangalore / Bengaluru

0-1 Yrs

Not Disclosed

Trainee Digital Marketing (Search, Social and PPC)

Bangalore / Bengaluru

0-3 Yrs

Not Disclosed

Explore more jobs
Ad Operations Analyst
37 salaries
unlock blur

₹2 L/yr - ₹4 L/yr

Senior Analyst
17 salaries
unlock blur

₹3.5 L/yr - ₹7.4 L/yr

Analyst
14 salaries
unlock blur

₹3 L/yr - ₹4.5 L/yr

AD Operations Executive
13 salaries
unlock blur

₹2 L/yr - ₹3.8 L/yr

Junior Analyst
11 salaries
unlock blur

₹2.2 L/yr - ₹3 L/yr

Explore more salaries
Compare Responsive Media Tech Services with other companies in Marketing & Advertising Industry

Janaksons India

4.3
Compare

Unyscape Infocom

4.3
Compare

Theoremx Solutions

3.2
Compare

Social Prachar

3.8
Compare
write
Share an Interview