Upload Button Icon Add office photos

Filter interviews by

Silverpush Interview Questions, Process, and Tips

Updated 3 Jan 2025

Top Silverpush Interview Questions and Answers

Silverpush Interview Experiences

Popular Designations

5 interviews found

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

I applied via LinkedIn and was interviewed before May 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 Resume tips
Round 2 - One-on-one 

(3 Questions)

  • Q1. How python dictionary is implemented internally ?
  • Ans. 

    Python dictionary is implemented using hash tables.

    • Python dictionary is a collection of key-value pairs.

    • The keys in a dictionary must be unique and immutable.

    • The values in a dictionary can be of any data type.

    • Python dictionary is implemented using hash tables.

    • Hash tables provide constant time complexity for insertion, deletion and retrieval of elements.

    • The hash function used in Python dictionary is based on the key's h...

  • Answered by AI
  • Q2. What is heap sort
  • Ans. 

    Heap sort is a comparison-based sorting algorithm that uses a binary heap data structure.

    • It divides the input into a sorted and an unsorted region.

    • It repeatedly extracts the maximum element from the unsorted region and inserts it into the sorted region.

    • It has a time complexity of O(n log n) and is not stable.

    • Example: [8, 5, 3, 1, 9, 6, 0, 7, 4, 2] -> [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]

  • Answered by AI
  • Q3. Coding question to sort array based on a custom filter

Skills evaluated in this interview

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 (203)
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Jul 2024. There were 3 interview rounds.

Round 1 - One-on-one 

(3 Questions)

  • Q1. Can you tell me about yourself?
  • Ans. 

    I am a highly experienced Programmatic Campaign Manager with a strong background in digital marketing and data analysis.

    • Over 5 years of experience in managing programmatic campaigns for various clients

    • Proficient in using DSPs, DMPs, and ad servers to optimize campaign performance

    • Skilled in analyzing campaign data to make data-driven decisions

    • Strong communication and project management skills

    • Previous experience working ...

  • Answered by AI
  • Q2. What optimizations have you implemented?
  • Ans. 

    I have implemented various optimizations including audience segmentation, bid adjustments, and ad creative testing.

    • Implemented audience segmentation to target specific groups of users more effectively

    • Made bid adjustments based on performance data to maximize ROI

    • Conducted ad creative testing to optimize messaging and visuals for better engagement

  • Answered by AI
  • Q3. How many campaigns did you manage simultaneously?
  • Ans. 

    I managed an average of 10 campaigns simultaneously.

    • Managed up to 15 campaigns at once during peak periods

    • Prioritized tasks based on campaign goals and performance

    • Used project management tools to stay organized and efficient

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Situation based questions
  • Q2. What are the best practices for campaign optimizations?
  • Ans. 

    Best practices for campaign optimizations include continuous monitoring, A/B testing, audience segmentation, and data analysis.

    • Continuous monitoring of campaign performance to identify trends and make real-time adjustments

    • Conducting A/B testing to compare different ad creatives, messaging, or targeting strategies

    • Segmenting audiences based on demographics, behaviors, or interests to deliver more personalized ads

    • Analyzin...

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Salary discussion

Programmatic Campaign Manager Interview Questions asked at other Companies

Q1. What are the best practices for campaign optimizations?
View answer (1)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(2 Questions)

  • Q1. Tell me about yourself
  • Ans. 

    Experienced Category Manager with a background in retail and strong analytical skills.

    • Over 5 years of experience in category management

    • Skilled in data analysis and market research

    • Proven track record of increasing sales and profitability

    • Strong negotiation and vendor management skills

    • Previously managed categories such as electronics and home goods

  • Answered by AI
  • Q2. Why do you want to join silverpush
  • Ans. 

    I want to join Silverpush because of its innovative technology and strong reputation in the industry.

    • Innovative technology: I am excited about the opportunity to work with cutting-edge technology at Silverpush.

    • Strong reputation: Silverpush has a proven track record of success in the industry, and I want to be a part of that.

    • Career growth: I believe that joining Silverpush will provide me with opportunities for professi...

  • Answered by AI

Category Manager Interview Questions asked at other Companies

Q1. If you are to start a men's grooming category in Gurgaon then how many partners will you start with
View answer (2)
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 Mar 2024. There was 1 interview round.

Round 1 - Case Study 

Previous Working details & case study

PPC Executive Interview Questions asked at other Companies

Q1. What is inventory targets and how you define minimum and maximum inventory ?
View answer (3)

Silverpush interview questions for popular designations

 Software Engineer

 (1)

 Category Manager

 (1)

 Programmatic Campaign Manager

 (1)

 Technical Manager

 (1)

 PPC Executive

 (1)

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

I applied via Referral and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Explain image processing
  • Ans. 

    Image processing is the analysis and manipulation of digital images to improve their quality or extract useful information.

    • Image enhancement: adjusting brightness, contrast, etc.

    • Image restoration: removing noise or blurring

    • Image segmentation: dividing an image into different regions

    • Object recognition: identifying objects in an image

    • Medical imaging: analyzing medical images for diagnosis

  • Answered by AI

Technical Manager Interview Questions asked at other Companies

Q1. How do you deliver a release in Agile Scrum? What is the difference between monolith, multitenant and microservices, what do you know about kafka, how did you handle a conflict between 2 employees, how did you handle client expectations and... read more
View answer (5)

Interview questions from similar companies

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

I applied via Company Website and was interviewed before Feb 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 Resume tips
Round 2 - Group Discussion 

Generic

Round 3 - Case Study 

Generic

Round 4 - HR 

(3 Questions)

  • Q1. Where do you see yourself in 5 years?
  • Ans. 

    In 5 years, I see myself as a successful Sales Executive leading a high-performing team and driving significant revenue growth for the company.

    • Leading a team of sales professionals

    • Achieving and exceeding sales targets consistently

    • Developing and implementing effective sales strategies

    • Building strong relationships with key clients

    • Contributing to the overall growth and success of the company

  • Answered by AI
  • Q2. What are your strengths and weaknesses?
  • Ans. 

    My strengths include strong communication skills, ability to build relationships, and a competitive nature. My weaknesses include impatience and a tendency to take on too much at once.

    • Strength: Strong communication skills - I am able to effectively convey information and build rapport with clients.

    • Strength: Relationship building - I excel at establishing and maintaining long-term relationships with customers.

    • Strength: ...

  • Answered by AI
  • Q3. Tell me about yourself.
  • Ans. 

    Experienced sales executive with a proven track record in exceeding targets and building strong client relationships.

    • 10+ years of experience in sales, with expertise in B2B and B2C markets

    • Consistently achieved or surpassed sales targets by 20% or more

    • Developed and maintained a portfolio of key accounts, resulting in a 30% increase in revenue

    • Strong negotiation and communication skills, with the ability to build rapport ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be yourself and genuine with the interviewer.

Interview Preparation Tips

Round: Test
Experience: I was really frustrated because of the rejection from previous companies and in the same time deeply determined to convert this one as this was the last company offering the profile of Business Analyst. I can say this based on my experience that converting a company is solely a matter of your preparation and self-confidence but a tad bit of luck is also a necessity.
Tips: I have been particularly lucky and so have been all the serious CAT aspirants in the online tests. It is not that you need to enroll in TIME with the word go, but rather analyzing your calculation speed, your communication and interpretation skills can do you wonders.
Duration: 60 minutes
Total Questions: 50

Round: Group Discussion
Experience: Obviously the topic was on Indo-Sino relations, which I was quite aware of. As this a topic on foreign policy, very few people were actually aware of this topic, so I had an obvious advantage. This is the most trite advice but still I will say this "Read, Read,Read".
Tips: There are always some people who are well informed of the given topic and some who are not and it is always helpful to be in the first group in GDs. I like to be up to date on current affairs and at the same time reading novels from the likes of Shashi Tharoor and my personal favorite Khaled Hosseini prepared me for group discussions. It is always helpful to proceed by looking @ the problem from different perspectives like legal, social, academic and technical or else if you are particularly unlucky you might face an abstract topic, where you might need to use your imagination, like one my friend faced "Yellow shoes with pink laces". Even now I cannot aptly describe this topic.

Skills: Communication Skills, Calculations, Verbal, Knowledge on current affairs
College Name: NIT BHOPAL
Motivation: My only motivation was the post the company was offering. As it will be helpful for future plans of working in an Investment Bank or pursuing an MBA.
Funny Moments: In the Interview round, they asked me why do you want join this company. In reply I started with the word 'Firstly' and said because of its profile and did not not think of the second reason and they asked this very thing. I took my moment and realized honesty is best possible way now and replied that you are last non-core company visiting this campus and if you guys reject me I might leave this campus unplaced (because of my weak technical background). On hearing this they started laughing and at that very moment I knew I might not after all.

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

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

Silverpush Interview FAQs

How many rounds are there in Silverpush interview?
Silverpush interview process usually has 1-2 rounds. The most common rounds in the Silverpush interview process are One-on-one Round, HR and Resume Shortlist.
How to prepare for Silverpush 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 Silverpush. The most common topics and skills that interviewers at Silverpush expect are Python, Data Science, Angularjs, Flask and Javascript.
What are the top questions asked in Silverpush interview?

Some of the top questions asked at the Silverpush interview -

  1. What are the best practices for campaign optimizatio...read more
  2. How python dictionary is implemented internall...read more
  3. What optimizations have you implement...read more

Recently Viewed

INTERVIEWS

CSB Bank

No Interviews

INTERVIEWS

Pramata Knowledge Solutions

No Interviews

JOBS

Malhotra Book Depot Nagpur

No Jobs

JOBS

Burning Glass Technologies

No Jobs

INTERVIEWS

South Indian Bank

No Interviews

JOBS

M.M Infra Engineering

No Jobs

JOBS

Veolia Water Technologies

No Jobs

SALARIES

Pramata Knowledge Solutions

SALARIES

Pramata Knowledge Solutions

Tell us how to improve this page.

Silverpush Interview Process

based on 6 interviews

Interview experience

3.8
  
Good
View more

Interview Questions from Similar Companies

Freshworks Interview Questions
3.5
 • 158 Interviews
InMobi Interview Questions
3.5
 • 35 Interviews
MoEngage Interview Questions
4.0
 • 25 Interviews
InsanelyGood Interview Questions
4.1
 • 19 Interviews
Vegrow Interview Questions
4.1
 • 17 Interviews
CleverTap Interview Questions
3.6
 • 15 Interviews
WebEngage Interview Questions
4.0
 • 15 Interviews
Kaleyra Interview Questions
4.1
 • 3 Interviews
View all

Silverpush Reviews and Ratings

based on 32 reviews

3.9/5

Rating in categories

3.8

Skill development

3.9

Work-life balance

3.7

Salary

3.8

Job security

3.8

Company culture

3.6

Promotions

3.5

Work satisfaction

Explore 32 Reviews and Ratings
Associate Software Engineer
10 salaries
unlock blur Lock Unlock

₹0 L/yr - ₹0 L/yr

Assistant Manager
9 salaries
unlock blur Lock Unlock

₹0 L/yr - ₹0 L/yr

Associate Product Manager
9 salaries
unlock blur Lock Unlock

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
8 salaries
unlock blur Lock Unlock

₹0 L/yr - ₹0 L/yr

Software Engineer
7 salaries
unlock blur Lock Unlock

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Silverpush with

InMobi

3.5
Compare

Vizury

5.0
Compare

MoEngage

4.0
Compare

CleverTap

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