Upload Button Icon Add office photos

Filter interviews by

Puma Source Interview Questions and Answers

Updated 2 May 2024

Puma Source Interview Experiences

2 interviews found

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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. Why should we hire you
Round 3 - HR 

(1 Question)

  • Q1. Briefing on the job

Lead Generation Executive Interview Questions asked at other Companies

Q1. what is lead generation and why it is needed
View answer (1)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before May 2023. There were 3 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. Tell Me about yourself
Round 2 - Aptitude Test 

Audio Listening & Given Answer

Round 3 - Group Discussion 

Tell m3 about yourself and one remember day of your life

Interview Preparation Tips

Interview preparation tips for other job seekers - I Interview is not so difficult but salary is very less.

Lead Generation Executive Interview Questions asked at other Companies

Q1. what is lead generation and why it is needed
View answer (1)

Interview questions from similar companies

I applied via Walk-in and was interviewed before Apr 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 - Assignment 

Interview Preparation Tips

Interview preparation tips for other job seekers - My name is Aliya Tabassum Shaikh azizoddin

I applied via Recruitment Consultant and was interviewed in Feb 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Questions related to efficient and optimized programming from front end technologies as well as back end

Interview Preparation Tips

Interview preparation tips for other job seekers - One should keep their basics clear and be conceptually strong. Try to explore new grounds as much as possible to write efficent and optimized programs whether it's front end or back end

I applied via Naukri.com and was interviewed before Sep 2020. There was 1 interview round.

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare your self, prepare about your profile

I applied via Naukri.com and was interviewed before Dec 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Self introduction.. about family.. Accademic.. rotational shifts... 24*7
  • Q2. Be loud and clearr and have some study about company.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be loud and clear be confident

Interview Questionnaire 

3 Questions

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

    Experienced retail professional with strong leadership skills and a proven track record of driving sales and exceeding targets.

    • Over 5 years of experience in retail management

    • Successfully led a team of 15 sales associates to achieve a 20% increase in sales revenue

    • Implemented new sales strategies that resulted in a 10% growth in customer base

    • Proficient in inventory management and budget planning

  • Answered by AI
  • Q2. Your Expected Salary
  • Ans. 

    I expect a competitive salary that reflects my skills, experience, and the responsibilities of the Assistant Manager role.

    • I have researched the average salary range for Assistant Managers in this industry and location.

    • I have considered my qualifications, experience, and the value I can bring to the company.

    • I am open to discussing the salary package and benefits offered by the company.

    • I believe a fair and competitive sa...

  • Answered by AI
  • Q3. Explan your Retail sector Exp
  • Ans. 

    I have extensive experience in the retail sector, including managing teams, driving sales, and ensuring excellent customer service.

    • Managed a team of 15 sales associates, providing guidance and support to achieve sales targets

    • Implemented strategies to increase customer satisfaction, resulting in a 20% improvement in customer feedback ratings

    • Developed and executed promotional campaigns to drive foot traffic and boost sal...

  • Answered by AI

Interview Questionnaire 

2 Questions

  • Q1. Self introduction
  • Q2. Current job description

Interview Questionnaire 

6 Questions

  • Q1. INPUT : "HI MY NAME IS : ANIRUDDHA , CALL ME MAYBE :)" OUTPUT : "MAYBE ME CALL ANIRUDDHA IS NAME MY HI
  • Q2. Reverse a linked list (iterative AND Recursive)
  • Ans. 

    Reverse a linked list using iterative and recursive methods.

    • Iterative method involves traversing the list and changing the pointers to reverse the order.

    • Recursive method involves calling the function recursively on the next node and changing the pointers.

    • Both methods have O(n) time complexity and O(1) space complexity.

    • Example: 1->2->3->4->5 becomes 5->4->3->2->1.

  • Answered by AI
  • Q3. Clone a FULL linked list given a pointer and a random pointer
  • Ans. 

    Clone a linked list with a random pointer.

    • Create a new node for each node in the original list.

    • Use a hash table to map the original nodes to their clones.

    • Iterate through the original list again and update the random pointers of the clone nodes.

  • Answered by AI
  • Q4. TELL ME ABOUT YOURSELF
  • Q5. QUOTE YOUR STRENGHTS AND WEAKNESS
  • Q6. WHY SHOULD I HIRE YOU?

Interview Preparation Tips

Round: Test
Experience: 50 QUANTITATIVE APTITUDE QUESTIONS CUTOFF 30 out of 50
Total Questions: 50

Round: Test
Experience: WRITTEN ON PAPER CODING QUESTIONS
1) Given a string like
INPUT : ( ( TRUE OR FALSE ) AND ( FALSE OR TRUE ) ) OR FLASE
OUTPUT: TRUE
EVALUATE THE GIVEN EXPRESSION
2) Print all sub strings of maximum length having 2 unique characters
e.g:
INPUT : "hellomorning"
OUTPUT : "ell","llo","omo","nin"
3) Find the max length of subarray having ZERO SUM
INPUT : {3,2,1,1,0,-2,1,3,-5,1,2,1,4} OUTPUT: 7

Round: Test
Experience: 1) An array has 2N elements with N elements are same and another n are mutually different.
So find this repeating element in O(N) time with O(1) space
INPUT : {1,2,3,1}
OUTPUT: 1

2) Print the common words from given two sentences
AND YOU HAVE TO CONSIDER ALL CASES LIKE Colon, Hyphen, Dash, and Semicolons may be EMBEDDED IN BOTH SENTENCES
INPUT: sentence:1:: "HI ALL,RAMESH is mt brother,he has topped in the exam AND MY NAME IS NOT IN THE LIST"

sentence:2:: "all students are advised to READ THE LIST and say hi to RAMESH"

OUTPUT: "HI","ALL","RAMESH","THE","AND","LIST"

3) Sort the give dates collection given in special format like 10-04-2013,10-05-2005,29-02-2000 IN ASCENDING ORDER

OUTPUT: 29-02-2000,10-05-2005,10-04-2013

Round: Technical Interview
Experience: Then he started talking about my projects,Again jumped into coding questions
1. INPUT : "HI MY NAME IS : ANIRUDDHA , CALL ME MAYBE :)"
OUTPUT : "MAYBE ME CALL ANIRUDDHA IS NAME MY HI"
2. Reverse a linked list (iterative AND Recursive)
3. Clone a FULL linked list given a pointer and a random pointer

Round: HR Interview
Experience: TELL ME ABOUT YOURSELF.

QUOTE YOUR STRENGHTS AND WEAKNESS

WHY SHOULD I HIRE YOU?

College Name: NA

Skills evaluated in this interview

Interview Preparation Tips

Round: HR Interview
Experience: This interview is meant to check candidate's background and candidates's interest towards the company.

College Name: NIT BHOPAL

Puma Source Interview FAQs

How many rounds are there in Puma Source interview?
Puma Source interview process usually has 3 rounds. The most common rounds in the Puma Source interview process are HR, Resume Shortlist and One-on-one Round.
How to prepare for Puma Source 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 Puma Source. The most common topics and skills that interviewers at Puma Source expect are Data Entry, part time, typing, Computer Operating and Data Entry Operation.

Tell us how to improve this page.

Puma Source Interview Process

based on 2 interviews

Interview experience

3.5
  
Good
View more

Interview Questions from Similar Companies

Teleperformance Interview Questions
3.9
 • 1.8k Interviews
Nagarro Interview Questions
4.0
 • 759 Interviews
Adidas Interview Questions
3.9
 • 72 Interviews
PUMA Interview Questions
4.3
 • 52 Interviews
NIKE Interview Questions
4.2
 • 34 Interviews
Skechers Interview Questions
4.0
 • 9 Interviews
Under Armour Interview Questions
3.8
 • 4 Interviews
Reebok Interview Questions
4.5
 • 4 Interviews
Asics Interview Questions
4.0
 • 2 Interviews
View all

Puma Source Reviews and Ratings

based on 22 reviews

1.8/5

Rating in categories

1.6

Skill development

1.6

Work-life balance

1.5

Salary

1.8

Job security

1.7

Company culture

1.5

Promotions

1.8

Work satisfaction

Explore 22 Reviews and Ratings
Lead Generation Executive
15 salaries
unlock blur

₹1.5 L/yr - ₹3 L/yr

International Process Associate
5 salaries
unlock blur

₹1.6 L/yr - ₹3 L/yr

Customer Support Executive
4 salaries
unlock blur

₹2.5 L/yr - ₹3 L/yr

Customer Care Executive
4 salaries
unlock blur

₹2 L/yr - ₹2.2 L/yr

Data Entry Operator
3 salaries
unlock blur

₹0.9 L/yr - ₹2 L/yr

Explore more salaries
Compare Puma Source with

NIKE

4.1
Compare

Adidas

3.9
Compare

Under Armour

3.8
Compare

Reebok

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