Upload Button Icon Add office photos

Tanishq

Compare button icon Compare button icon Compare

Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

Tanishq Senior Cashier Interview Questions and Answers

Updated 7 May 2022

Tanishq Senior Cashier Interview Experiences

2 interviews found

I appeared for an interview in Apr 2022.

Round 1 - One-on-one 

(1 Question)

  • Q1. What was your Activities From Beginning To Eod

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't Feel Nervous Listen and Answer Smoothly

I applied via Naukri.com and was interviewed in Aug 2019. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. How to tackle to rush in big bazaar
  • Ans. 

    To tackle rush in Big Bazaar, prioritize tasks, increase staff, optimize checkout process, and manage customer flow.

    • Prioritize tasks based on urgency and importance

    • Increase staff during peak hours to handle the rush

    • Optimize the checkout process by ensuring all cash registers are open and functioning properly

    • Manage customer flow by implementing queue management systems or assigning staff to guide customers

    • Train cashiers...

  • Answered by AI
  • Q2. How to tackle a costumer during dhanteras and akhshay tritya..
  • Ans. 

    To tackle customers during Dhanteras and Akshay Tritiya, provide excellent customer service, manage inventory effectively, offer special promotions, and ensure smooth transactions.

    • Ensure sufficient staff is available to handle increased footfall

    • Provide personalized assistance to customers in selecting products

    • Maintain a well-stocked inventory to meet customer demands

    • Offer special discounts or promotions on popular item...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I m thanks full for this opportunity and interviewer are very polite person... Technical question..

Senior Cashier Interview Questions Asked at Other Companies

asked in Tanishq
Q1. How to tackle a costumer during dhanteras and akhshay tritya..
asked in Tanishq
Q2. How to tackle to rush in big bazaar
asked in KFC
Q3. How to handle customer ,how to treat customer don't let the custo ... read more
Q4. How to handle to the customer when his unconditional
asked in Max Fashion
Q5. How Maintained sale and other data daily bases.

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. P2p cycle, what

Interview Preparation Tips

Interview preparation tips for other job seekers - Invoice process, vendor maintenance
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview before Jan 2023.

Round 1 - HR 

(1 Question)

  • Q1. About yourself and your achievements
Round 2 - Technical 

(1 Question)

  • Q1. About accounting knowledge

Interview Preparation Tips

Interview preparation tips for other job seekers - Client introduction round

Accountant Interview Questions & Answers

Goldman Sachs user image Amar Nanubhai Patel

posted on 3 May 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Accounting Concepts & Basics of Accounting

Interview Preparation Tips

Round: Test
Experience: The test had 2 parts. 1)Objective (90 mins) 2) Subjective (90 mins). Both the paper were divided into 3 sections 1) Computer Science 2)Math & 3)Data Science .

To get shortlisted you need to do well on only one of the section.

Round: Technical Interview
Experience: Probability Interview and discussion on projects that I have worked upon on in the institute.

Probability questions were given a quadratic equation whose coefficients are RVs , what is the probability that the roots are real.

College Name: IIT Madras

I applied via Campus Placement and was interviewed in Dec 2016. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. How to create a uniform distribution from 1 to 200 using an ubiased coin?
  • Ans. 

    To create a uniform distribution from 1 to 200 using an unbiased coin, we can use the rejection sampling method.

    • Divide the range into equal parts based on the number of outcomes of the coin toss.

    • Toss the coin and select the corresponding part of the range.

    • If the selected number is outside the desired range, reject it and repeat the process.

    • Repeat until a number within the desired range is obtained.

    • Example: If the coin ...

  • Answered by AI

Interview Preparation Tips

Round: Technical Interview
Experience: Talked about probability and programming questions. The same happened in 4 rounds of interviews.
Tips: Prepare probability and quant questions. Be calm. The interviewers are very helpful.

Skills: Probability And Statistics, Programming
College Name: IIT Madras

I applied via Campus Placement and was interviewed in Dec 2016. There were 3 interview rounds.

Interview Questionnaire 

8 Questions

  • Q1. What is the expected number of tosses of a fair coin to get 3 consecutive heads?
  • Ans. 

    Expected number of tosses of a fair coin to get 3 consecutive heads.

    • The probability of getting 3 consecutive heads is 1/8

    • The expected number of tosses to get 3 consecutive heads is 14

    • This can be calculated using the formula E(X) = 2^k + 2^(k-1) + 2^(k-2) + ... + 2^2 + 2^1 + 2^0, where k is the number of consecutive heads required

  • Answered by AI
  • Q2. There is an urn with n red balls and 1 black ball in it. You and your friend play a game where you take turns drawing from the urn. The player who draws the black ball first wins. Should you go first or se...
  • Ans. 

    Go second. The probability of winning is higher when going second.

    • The probability of winning when going first is (1/n+1), while the probability of winning when going second is (n/n+1)

    • This is because the first player has a chance of drawing the black ball on their turn, while the second player has a chance of drawing the black ball on their turn or the first player's turn

    • For example, if there are 10 red balls and 1 blac...

  • Answered by AI
  • Q3. You roll a die until the sum of all die rolls becomes at least 100. What is the most likely value of the last roll?
  • Ans. 

    What is the most likely value of the last roll in a game where a die is rolled until the sum of all rolls is at least 100?

    • The last roll must be at least 4 to reach a sum of 100

    • The probability of rolling a 4, 5, or 6 is 1/2

    • The most likely value of the last roll is 4 or 5

  • Answered by AI
  • Q4. You have an n x n matrix in which all the rows and all the columns are sorted. Given an input number, describe an algorithm to search for the number in the matrix
  • Ans. 

    Algorithm to search for a number in an n x n matrix with sorted rows and columns.

    • Start from the top-right corner of the matrix

    • If the current element is greater than the target, move left

    • If the current element is less than the target, move down

    • Repeat until the target is found or the bottom-left corner is reached

  • Answered by AI
  • Q5. Given two arrays of size n each, describe an algorithm to find the largest common subarray of the two arrays
  • Ans. 

    Algorithm to find largest common subarray of two arrays of size n

    • Create a 2D array to store the lengths of common subarrays

    • Traverse both arrays and fill the 2D array with lengths of common subarrays

    • Find the maximum length and its corresponding ending index in the 2D array

    • Use the ending index to retrieve the largest common subarray from either of the arrays

  • Answered by AI
  • Q6. Why do you want to join Goldman Sachs?
  • Ans. 

    I am excited to join Goldman Sachs because of its reputation for excellence and the opportunities it offers for professional growth.

    • Goldman Sachs is a leader in the financial industry and has a strong reputation for excellence.

    • I am impressed by the firm's commitment to innovation and its focus on delivering value to clients.

    • I believe that working at Goldman Sachs will provide me with the opportunity to learn from some ...

  • Answered by AI
  • Q7. Walk me through your resume
  • Ans. 

    I have experience in marketing and sales, with a focus on digital marketing and lead generation.

    • Started career as a marketing intern at XYZ company

    • Managed social media accounts and email campaigns for ABC company

    • Implemented SEO strategies and increased website traffic by 30%

    • Led a team of 5 sales representatives and exceeded quarterly sales goals by 20%

    • Currently working as a digital marketing specialist at DEF company

  • Answered by AI
  • Q8. There is a 2D plane with infinite parallel, vertical lines with a spacing of 1 unit between them. You drop a rod of length L randomly on the plane, with random position and orientation. What is the probabi...
  • Ans. 

    Probability of a randomly dropped rod of length L intersecting a line on a 2D plane with infinite parallel, vertical lines.

    • The probability depends on the length of the rod L.

    • The probability can be calculated using geometric probability.

    • The probability is 1 - (2L - 1) / infinity.

    • For example, if L = 1, the probability is 0.5.

    • If L = 2, the probability is 0.75.

  • Answered by AI

Interview Preparation Tips

Round: Technical Interview
Experience: Puzzles, probability questions
Tips: Brush up on probability problems

Round: Technical Interview
Experience: Questions on resume, especially interns.
Tips: Know your resume inside out.

Round: Technical Interview
Experience: Puzzles, algorithm questions
Tips: Learn algorithms from geeksforgeeks

Round: Technical + HR Interview
Tips: Be familiar with your resume, prepare for generic HR questions

Skills: Problem Solving Skills, Algorithm, Probability And Statistics, Knowledge Of Your Resume Points
College Name: IIT Madras

Skills evaluated in this interview

I applied via Campus Placement and was interviewed in Dec 2016. There were 3 interview rounds.

Interview Preparation Tips

Round: Test
Experience: Each section had 10 questions, 100 marks, with 45min duration for each. It consisted of Multiple Choice (+10, -3), Fill in the Blanks type(+10,0), and a coding question (+20).
Platform was HackerRank. You had to do good in atleast 2 sections
Tips: CS: DSA, Graph Theory, Time Complexity
Quant: Probability, Probability, Probability.
Machine Learning: Ensemble Methods, Bagging, Boosting, Decision Trees, etc. You need to know the concepts. No mathematical formulation or equations were asked
Duration: 1 hour 35 minutes

Round: Technical Interview
Experience: First of all, the GS panelists were really nice, kind and helpful. They provide with several hints, given you are sincere and have that attitude of solving the problem.
There were 6 technical rounds in all, with different teams of GS.
3 rounds consisted of questions from Probability, Expectation, Markov process, etc.
1 round for algorithm puzzles.
1 round for strategy puzzles.
1 round for Finance (discussed on derivatives, call options, etc.)
Tips: Be thorough with the basics. Don't beat around the bush. Given a problem, discuss the solution first and then go about doing it.

Skills: Probability And Statistics, Algorithm, Knowledge Of Your Resume Points, Aptitude, Finance Basics
College Name: IIT Madras

I appeared for an interview in Dec 2016.

Interview Preparation Tips

Round: Resume Shortlist
Experience: For CSE and EE students , CPI was not at all seem to be a criteria for shortlisting and almost all who have a decent profile got shortlisted for the test. However, for other department students they shortlisted above 9 CPI students.

Round: Test
Experience: It was a 2 hour test. It consisted of 3 sections-Quant , Machine Learning and Computer Science . Each section had 10 questions and 45 minutes were allotted for each section.
Being from non-CSE background I attempted only 2 sections ie. Quant and Machine Learning. Machine Learning section was fairly easy this time and almost all questions were standard. If someone has done an introductory course on Machine Learning and basic stats , this section was a cake walk for him. However , attempting quant section required some preparation of solving probability puzzles (computing expectations etc.) ,basic linear algebra and geometry base questions.
Duration: 2 hours

Round: Technical Interview
Experience: I had 2 rounds of interview. Both were technical ones.
In the first interview , they asked some probability puzzles (from 50 challenging problems in probability book) . Since I had completed that book before , I was able to solve them . Then they asked 1-2 algorithm based questions like formulate an efficient algorithm for solving a particular problem. I was not able to solve them completely but tried to give them the overview of y approach. The interviewer didn't seem to be satisfied though. It lasted for around 20-25 minutes.He told me to wait outside . To my surprise, I was called for the 2nd round.
The second went better than the first round. They again asked questions on computing probability , expectations , constructing a Markov Chain for a a given problem etc. Since I had done 1 course in Fiance also , he asked me questions from it also which were quite easy. Then he began asking algorithms and asked me to explain a sorting algorithm and I chose Quick Sort. While explaining it , I got struck at one point but the interviewer was helping me by giving hints and I was able to explain it fully. The second round was quite exhaustive as it went on for around 45-60 minutes.

Skills: Problem Solving Abilties, Mathematical Aptitude, Algorithmic Approach To Problem Solving, Machine Learning, Statistical Method Basics
College Name: IIT Kanpur

Tanishq Interview FAQs

How many rounds are there in Tanishq Senior Cashier interview?
Tanishq interview process usually has 1 rounds. The most common rounds in the Tanishq interview process are One-on-one Round.
What are the top questions asked in Tanishq Senior Cashier interview?

Some of the top questions asked at the Tanishq Senior Cashier interview -

  1. How to tackle a costumer during dhanteras and akhshay tritya...read more
  2. How to tackle to rush in big baz...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

BYJU'S Interview Questions
3.1
 • 2.1k Interviews
Senco Gold Interview Questions
4.5
 • 560 Interviews
ZS Interview Questions
3.3
 • 449 Interviews
Goldman Sachs Interview Questions
3.5
 • 376 Interviews
Synechron Interview Questions
3.5
 • 363 Interviews
Lenskart Interview Questions
3.2
 • 308 Interviews
Randstad Interview Questions
3.8
 • 263 Interviews
Whitehat jr Interview Questions
3.4
 • 262 Interviews
View all

Fast track your campus placements

View all
Tanishq Senior Cashier Salary
based on 34 salaries
₹1.8 L/yr - ₹6 L/yr
35% more than the average Senior Cashier Salary in India
View more details

Tanishq Senior Cashier Reviews and Ratings

based on 11 reviews

4.7/5

Rating in categories

4.7

Skill development

4.0

Work-life balance

4.5

Salary

4.8

Job security

4.7

Company culture

3.9

Promotions

4.6

Work satisfaction

Explore 11 Reviews and Ratings
Retail Sales Officer
551 salaries
unlock blur

₹0.8 L/yr - ₹6.5 L/yr

Store Manager
198 salaries
unlock blur

₹2.6 L/yr - ₹10.8 L/yr

Sales Executive
188 salaries
unlock blur

₹1 L/yr - ₹5 L/yr

Cashier
167 salaries
unlock blur

₹1.1 L/yr - ₹5.4 L/yr

Retail Sales Executive
155 salaries
unlock blur

₹1.2 L/yr - ₹5.4 L/yr

Explore more salaries
Compare Tanishq with

BYJU'S

3.1
Compare

Shapoorji Pallonji Group

4.1
Compare

Vivo

4.1
Compare

Hyundai Motor India Limited

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