Upload Button Icon Add office photos

Filter interviews by

Max Standard Stores Senior Manager Interview Questions and Answers

Updated 7 Sep 2023

Max Standard Stores Senior Manager Interview Experiences

1 interview found

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

I applied via Shine and was interviewed before Sep 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 - One-on-one 

(2 Questions)

  • Q1. What was your exposure in Indirect Taxes
  • Ans. 

    I have extensive exposure in handling various aspects of indirect taxes including VAT, GST, customs duties, and excise duties.

    • Managed VAT compliance for multiple entities across different jurisdictions

    • Implemented GST transition and compliance procedures for a large organization

    • Handled customs duties and import/export tax issues for international transactions

    • Advised on excise duties and other indirect tax implications f

  • Answered by AI
  • Q2. What is RCM and list them?
Round 3 - Assignment 

Reconciliation of GST 2A with Books of Accounts

Interview questions from similar companies

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

I applied via Referral and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Basic react and js interview
Round 2 - Assessment 

(1 Question)

  • Q1. React multiple questions
Round 3 - Coding Test 

Finding kth largest number by creating function without using in-built methods using javascript

Interview Preparation Tips

Interview preparation tips for other job seekers - I recently interviewed for a Sr.Engineer position with this company.After successfully clearing 3 technical rounds, we moved to salary negotiations. Based on market standards and their own job listings for this position, which clearly mentioned a salary bracket of 12-15 LPA, I expected 12 LPA-a fair and reasonable figure for the role and my qualifications.
After discussions, I compromised and agreed to their offer of 9LPA, despite already holding another offer at the same package. However, at the final stage, they abruptly cancelled the offer, citing that my initial expectation was too high. This decision came after wasting significant time and energy throughout the process.
This behavior demonstrates a lack of professionalism, transparency, and respect for candidates. It's disheartening to see companies treating potential hires this way, especially after reaching mutual agreements.
If you're considering applying here, think twice about their commitment to candidate and their hiring ethics.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com

Round 1 - Technical 

(2 Questions)

  • Q1. Basics of kotlin, sealed class, viewmodel implementation,
  • Q2. Caching mechanism
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Feb 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Write a C++ program (logical) and OOPS concept, Basic,C concept such as memory and memory management techniques

Round 2 - Technical 

(6 Questions)

  • Q1. OOPS concepts in C++
  • Ans. 

    OOPS concepts in C++ include encapsulation, inheritance, polymorphism, and abstraction.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit (class).

    • Inheritance: Creating new classes from existing ones, inheriting their attributes and methods.

    • Polymorphism: Ability to present the same interface for different data types.

    • Abstraction: Hiding the complex implementation details and showing only

  • Answered by AI
  • Q2. Difference between C and C++
  • Ans. 

    C is a procedural programming language while C++ is an object-oriented programming language.

    • C is a subset of C++

    • C does not support classes and objects, while C++ does

    • C++ supports function overloading and operator overloading, which C does not

    • C++ has a more complex syntax compared to C

  • Answered by AI
  • Q3. Multi threading
  • Q4. Difference between binary and linear search
  • Ans. 

    Binary search divides the array in half to find the target, while linear search checks each element one by one.

    • Binary search is more efficient for sorted arrays, while linear search works for unsorted arrays.

    • Binary search has a time complexity of O(log n), while linear search has a time complexity of O(n).

    • Example: Binary search - finding a word in a dictionary. Linear search - finding a name in a phone book.

  • Answered by AI
  • Q5. Time complexity of binary search and linear search. Which is better in which scenario
  • Ans. 

    Binary search has O(log n) time complexity, better for sorted arrays. Linear search has O(n) time complexity, better for small unsorted arrays.

    • Binary search has a time complexity of O(log n) as it divides the array in half at each step. It is better for sorted arrays.

    • Linear search has a time complexity of O(n) as it checks each element one by one. It is better for small unsorted arrays.

    • For example, if you have a large ...

  • Answered by AI
  • Q6. Mutex when do u use and example
  • Ans. 

    Mutex is used to prevent multiple threads from accessing shared resources simultaneously.

    • Use mutex when multiple threads need to access shared resources to avoid data corruption

    • Example: Using mutex to protect a critical section of code where shared data is being modified

    • Mutex can be used in multithreading applications to ensure data integrity and prevent race conditions

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

(7 Questions)

  • Q1. F2F round. What is memory management and how to achieve this
  • Q2. They give pen and paper. Write the code for wait in multi threading. Mutex and all...
  • Q3. How to implement string1 is equal to string2 without using inbuilt function. Create your own method/ function
  • Ans. 

    Create a custom method to check if two strings are equal without using inbuilt functions.

    • Iterate through each character of both strings and compare them one by one.

    • If the lengths of the strings are different, they are not equal.

    • Return true only if all characters match, otherwise return false.

  • Answered by AI
  • Q4. What is memcpy.
  • Ans. 

    memcpy is a function in C programming used to copy a block of memory from one location to another.

    • memcpy stands for memory copy.

    • It is used to copy a specified number of bytes from one memory location to another.

    • It is commonly used in C programming to copy arrays or structures.

    • Example: memcpy(destination, source, num_bytes);

  • Answered by AI
  • Q5. Difference between synchronous and asynchronous in multi threading.
  • Ans. 

    Synchronous means tasks are executed one after the other, while asynchronous allows tasks to run independently.

    • Synchronous execution waits for each task to finish before moving on to the next one.

    • Asynchronous execution allows tasks to start and finish independently of each other.

    • Synchronous threading can lead to blocking if one task takes a long time to complete.

    • Asynchronous threading can improve performance by allowin...

  • Answered by AI
  • Q6. Write a code to find if the string is present or not. Given character array of strings. {(ABC), (BCA), (DCA)} etc.
  • Ans. 

    Code to find if a string is present in an array of strings.

    • Iterate through the array of strings and compare each string with the target string.

    • Return true if the target string is found, false otherwise.

    • Use a loop and conditional statement to implement the search algorithm.

  • Answered by AI
  • Q7. Two cats are rotating in circular motion. What is the probability that they won't collide

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared for F2F round as well

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What are the essential skill for becoming a HR
  • Ans. 

    Essential skills for becoming a HR include communication, problem-solving, interpersonal skills, and knowledge of labor laws.

    • Strong communication skills to effectively interact with employees and management.

    • Problem-solving abilities to address conflicts and find solutions to workplace issues.

    • Interpersonal skills to build relationships and collaborate with diverse teams.

    • Knowledge of labor laws and regulations to ensure ...

  • Answered by AI
  • Q2. Why Are you interest in this job
  • Ans. 

    I am interested in this job because of the opportunity to lead a team and drive strategic initiatives to achieve company goals.

    • Opportunity to lead a team

    • Drive strategic initiatives

    • Achieve company goals

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. About the project. and asked what i did in project. how to create schema in pyspark. what is ADE. what are the difficulties i faced in project. what is spark submit command how we write sparksubmit command...
  • Q2. No of occurrences of letter in a string.
  • Ans. 

    Count occurrences of a letter in a string.

    • Iterate through each character in the string and count occurrences of the specified letter.

    • Use a hashmap to store the count of each letter.

    • Handle both uppercase and lowercase letters to ensure accurate counting.

  • Answered by AI

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Jan 2024. There were 3 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. About your introduction
  • Q2. About your career experience
Round 2 - One-on-one 

(2 Questions)

  • Q1. Job introduction and careers details
  • Q2. Planning about business and idea about business
Round 3 - One-on-one 

(2 Questions)

  • Q1. Reading a tea shop how many can be installed and revenue generated
  • Ans. 

    The number of tea shops that can be installed and the revenue generated depend on various factors such as location, target market, competition, and marketing strategies.

    • Consider the population density and demographics of the area to determine the potential customer base.

    • Analyze the competition in the area to understand the market saturation and demand for tea shops.

    • Evaluate the foot traffic and visibility of potential ...

  • Answered by AI
  • Q2. Career background and new business idea
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. DS Algo type questions, string manipulation etc was asked and explored with more detailed questions
Round 2 - One-on-one 

(1 Question)

  • Q1. In depth android, kotlin discussions and high level mapping questions
Round 3 - HR 

(1 Question)

  • Q1. General managerial questions and working agreements type discussion
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Normal . Keep calm stay focused. Study hard work smart.
Great

Round 2 - HR 

(2 Questions)

  • Q1. Nicely done... friendly Tell me about yourself
  • Q2. Where are you from ?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be you. It's good to see everything happening the it should be.
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Basic to medium questions related to DotNet Core MVC, SQL Server, etc
Round 2 - Technical 

(1 Question)

  • Q1. Completely unprofessional behavior of the interviewer. - No Introduction Direct start asking questions. - Asking too many misleading questions (First ask what you worked on, then ask did you heard about th...

Max Standard Stores Interview FAQs

How many rounds are there in Max Standard Stores Senior Manager interview?
Max Standard Stores interview process usually has 3 rounds. The most common rounds in the Max Standard Stores interview process are Assignment, Resume Shortlist and One-on-one Round.
What are the top questions asked in Max Standard Stores Senior Manager interview?

Some of the top questions asked at the Max Standard Stores Senior Manager interview -

  1. What was your exposure in Indirect Ta...read more
  2. What is RCM and list th...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 Max Standard Stores interview
Job Portal
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.
Unit Head
7 salaries
unlock blur

₹6.5 L/yr - ₹9.7 L/yr

Department Manager
5 salaries
unlock blur

₹4.5 L/yr - ₹5 L/yr

Sales Executive
5 salaries
unlock blur

₹2 L/yr - ₹3 L/yr

Manager
5 salaries
unlock blur

₹3 L/yr - ₹4.6 L/yr

Accountant
5 salaries
unlock blur

₹2.8 L/yr - ₹3.9 L/yr

Explore more salaries
Compare Max Standard Stores with

Dhoot Transmission

3.7
Compare

Genius Consultants

3.8
Compare

Apotex Research

4.1
Compare

Athena BPO

3.2
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview