Upload Button Icon Add office photos

Filter interviews by

Big City Promotions Interview Questions and Answers

Updated 6 Aug 2024

Big City Promotions Interview Experiences

Popular Designations

3 interviews found

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

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

Round 1 - HR 

(5 Questions)

  • Q1. Self introduction
  • Q2. Salary expectation
  • Q3. What's your strength
  • Ans. 

    My strength lies in my ability to empathize with customers and provide personalized solutions to their problems.

    • Strong communication skills to effectively understand and address customer concerns

    • Ability to remain calm and patient in high-pressure situations

    • Experience in actively listening to customers and tailoring solutions to meet their needs

  • Answered by AI
  • Q4. What's your weekness
  • Ans. 

    My weakness is that I tend to be overly critical of my own work, which can sometimes lead to perfectionism.

    • I have a tendency to spend too much time on tasks to ensure they are perfect

    • I can be overly self-critical and have high expectations for myself

    • I am working on finding a balance between striving for excellence and accepting imperfection

  • Answered by AI
  • Q5. Tell me about banglore for two minutes
  • Ans. 

    Bangalore, also known as Bengaluru, is the capital of the Indian state of Karnataka and is known for its pleasant climate, vibrant culture, and booming IT industry.

    • Known as the 'Silicon Valley of India' due to its thriving IT sector

    • Home to numerous multinational corporations and tech startups

    • Famous for its pleasant weather throughout the year

    • Has a rich cultural heritage with historic landmarks like Bangalore Palace and...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Good company for it and BPO jobs

Customer Support Executive Interview Questions asked at other Companies

Q1. Understanding customer problems,whT i know about BPO nd how they work,how i will handle a difficult nd angry customer,i can satisfied my client.
View answer (22)

I applied via Approached by Company and was interviewed in Jan 2022. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Your strength, weaknesses goals
  • Q2. Why do you want to join us, what is your next goal

Senior Sales Executive Interview Questions asked at other Companies

Q1. As a sales and marketing person how to fix a price for your product
View answer (3)

I applied via Naukri.com and was interviewed before Aug 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Core PHP concept, OOPS Concept, Array Concepts, Javascript basics, HTML Basics, Coding Round.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong in OOPS concept, Array concept of PHP, as its highly used in Practical Application as well, Javascript Basics will be helpful as well.

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (43)

Jobs at Big City Promotions

View all

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Dec 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 

(2 Questions)

  • Q1. About Battery Technology.
  • Q2. About Market Requirement
Round 3 - HR 

(2 Questions)

  • Q1. Why switching the Job
  • Q2. Salary negotiation on FIXED + Variable

Interview Preparation Tips

Interview preparation tips for other job seekers - Smooth and transperent process... Hike they can give 25-30 % maximum.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed before Dec 2023. There was 1 interview round.

Round 1 - HR 

(2 Questions)

  • Q1. Personal information
  • Q2. Ask about my skills and projects
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

HackerRank Test, basic questions related to the profile.

Round 2 - Technical 

(1 Question)

  • Q1. Coding Interview with the team manager
Interview experience
4
Good
Difficulty level
Easy
Process Duration
-
Result
No response

I applied via LinkedIn and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. What are synthetic Events?
  • Ans. 

    Synthetic Events are events that are created by the browser to mimic real user events.

    • Synthetic Events are used in React to handle events in a consistent manner across different browsers.

    • They are created by React to wrap native browser events and provide additional functionality.

    • Examples include onClick, onChange, and onSubmit events in React.

  • Answered by AI
  • Q2. What is event bubbling?
  • Ans. 

    Event bubbling is the process where an event triggered on a child element is propagated up through its parent elements.

    • Event bubbling allows a single event handler to be attached to a parent element, which will be triggered for all its children.

    • When an event occurs on a child element, it first runs the event handlers on the child, then on its parent, and so on up the DOM tree.

    • Event bubbling can be stopped using event.s

  • Answered by AI

Skills evaluated in this interview

I applied via Recruitment Consultant and was interviewed in Dec 2021. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Basics of Campaign building
  • Q2. What is Ad network and Ad exchange
  • Ans. 

    Ad network is a platform that connects advertisers with publishers to display ads. Ad exchange is a marketplace for buying and selling ad inventory.

    • Ad network connects advertisers with publishers to display ads

    • Ad exchange is a marketplace for buying and selling ad inventory

    • Ad network typically charges a commission on ad spend

    • Ad exchange uses real-time bidding to determine the price of ad inventory

    • Examples of ad network...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Always know about each and every term that you write in your resume. Do not brag about something that you don't know. Be transparent and calculative about your knowledge and offer.

Skills evaluated in this interview

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

I appeared for an interview before Mar 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. About datorama explain how it works
  • Q2. More about digital marketing
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Aug 2023. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Difference between union and union all in SQL?
  • Ans. 

    Union combines and removes duplicates, Union All combines without removing duplicates.

    • Union combines result sets and removes duplicates

    • Union All combines result sets without removing duplicates

    • Union is slower than Union All as it involves removing duplicates

    • Example: SELECT column1 FROM table1 UNION SELECT column1 FROM table2;

    • Example: SELECT column1 FROM table1 UNION ALL SELECT column1 FROM table2;

  • Answered by AI
  • Q2. How to show top 5 in pandas?
  • Ans. 

    To show top 5 in pandas, use the nlargest() function.

    • Use the nlargest() function with the 'n' parameter set to 5 to get the top 5 values in a pandas DataFrame.

    • For example: df['column_name'].nlargest(5) will return the top 5 values in the specified column.

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. If we have 3 numerical columns, which chart is a better representation these column?
  • Ans. 

    A scatter plot is a better representation for 3 numerical columns.

    • Use a scatter plot to show the relationship between the numerical columns.

    • Scatter plots are effective for visualizing correlations and patterns in data.

    • Each point on the plot represents a data point with values from all 3 columns.

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Omnicom Media Group Data Analyst interview:
  • SQL Server
  • Pandas
  • Power Bi

Skills evaluated in this interview

Big City Promotions Interview FAQs

How many rounds are there in Big City Promotions interview?
Big City Promotions interview process usually has 1 rounds. The most common rounds in the Big City Promotions interview process are HR.
How to prepare for Big City Promotions 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 Big City Promotions. The most common topics and skills that interviewers at Big City Promotions expect are B2B Sales, Corporate Sales, Sales, media sales and Cold Calling.
What are the top questions asked in Big City Promotions interview?

Some of the top questions asked at the Big City Promotions interview -

  1. Tell me about banglore for two minu...read more
  2. Core PHP concept, OOPS Concept, Array Concepts, Javascript basics, HTML Basics,...read more

Tell us how to improve this page.

Big City Promotions Interview Process

based on 2 interviews

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Cogent Interview Questions
3.2
 • 18 Interviews
Xapads Media Interview Questions
4.3
 • 10 Interviews
Creative Group Interview Questions
4.1
 • 9 Interviews
TSR Darashaw Interview Questions
3.4
 • 7 Interviews
View all

Big City Promotions Reviews and Ratings

based on 15 reviews

4.2/5

Rating in categories

3.6

Skill development

3.7

Work-life balance

3.5

Salary

4.0

Job security

3.7

Company culture

3.5

Promotions

3.6

Work satisfaction

Explore 15 Reviews and Ratings
Business Development Manager

Bangalore / Bengaluru

2-7 Yrs

Not Disclosed

Senior Graphic Designer

Bangalore / Bengaluru

3-6 Yrs

Not Disclosed

Explore more jobs
Business Development Manager
9 salaries
unlock blur

₹6.2 L/yr - ₹12 L/yr

Associate Software Engineer
8 salaries
unlock blur

₹3 L/yr - ₹5.5 L/yr

Software Engineer
7 salaries
unlock blur

₹5 L/yr - ₹9 L/yr

Senior Business Development Manager
7 salaries
unlock blur

₹15 L/yr - ₹20 L/yr

Software Developer
6 salaries
unlock blur

₹4 L/yr - ₹7.5 L/yr

Explore more salaries
Compare Big City Promotions with

Modern V.R. Security Force

4.0
Compare

Omnicom Media Group

2.9
Compare

Cogent

3.2
Compare

River Engineering

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