Upload Button Icon Add office photos

Filter interviews by

Mittal Brothers Senior Manager Interview Questions and Answers

Updated 6 Nov 2023

Mittal Brothers Senior Manager Interview Experiences

1 interview found

Senior Manager Interview Questions & Answers

user image Raj Narayan Nigam

posted on 6 Nov 2023

Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Preparation of COS, reconciliation, client billing
Round 2 - One-on-one 

(1 Question)

  • Q1. Only preparation of COS, client billing, reconciliation

Interview Preparation Tips

Interview preparation tips for other job seekers - Cos, client billing, reconciliation of material

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Oct 2024. There were 5 interview rounds.

Round 1 - Coding Test 

The test was conducted on HackerRank. One Javascript question and has to be solved.

Round 2 - Technical 

(1 Question)

  • Q1. Discussion on building a scalable system.
Round 3 - One-on-one 

(1 Question)

  • Q1. Peer panel round - Discussion on how a feature has been built. What tradeoffs you thought of etc
Round 4 - HR 

(1 Question)

  • Q1. Behavioural and culture fit
Round 5 - Behavioral 

(1 Question)

  • Q1. General discussion on what is expected from the role and what are my expectations etc
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Jul 2024.

Round 1 - Case Study 

A UI/UX case study was provided, and I am expected to explain it.

Interview Preparation Tips

Interview preparation tips for other job seekers - Good process to handle & timely process
Interview experience
3
Average
Difficulty level
-
Process Duration
Less than 2 weeks
Result
Not Selected

I was interviewed in Aug 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. What are ways to do async operations in JS & TS?
  • Ans. 

    Ways to do async operations in JS & TS include callbacks, promises, async/await, and event listeners.

    • Callbacks: Passing a function as an argument to be executed once the async operation is completed.

    • Promises: Representing a value that may be available now, in the future, or never.

    • Async/Await: Syntactic sugar built on top of promises to write asynchronous code that looks synchronous.

    • Event Listeners: Using event-driven p

  • Answered by AI
  • Q2. What is difference b/w prototype inheritance & classic inheritance ?
  • Ans. 

    Prototype inheritance is dynamic and objects inherit directly from other objects, while classic inheritance is static and classes define the inheritance hierarchy.

    • Prototype inheritance allows objects to inherit directly from other objects, without the need for classes.

    • Classic inheritance involves defining classes and creating instances of those classes.

    • In prototype inheritance, changes to the prototype object are refle...

  • Answered by AI

Skills evaluated in this interview

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

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

Round 1 - Technical 

(1 Question)

  • Q1. Merge sorted arrays
Round 2 - Technical 

(1 Question)

  • Q1. Checking cache using python
  • Ans. 

    Use Python's built-in 'functools' module to check cache for function results.

    • Import 'functools' module

    • Use 'lru_cache' decorator to cache function results

    • Specify 'maxsize' parameter to limit cache size

    • Use 'cache_info()' method to get cache statistics

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - basic python questions

Skills evaluated in this interview

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

I applied via Walk-in and was interviewed in Jun 2023. 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 - Versant 

(3 Questions)

  • Q1. It was good, will check your vocabulary and grammar.
  • Q2. Tell me something about your last customer care executive good experience.
  • Q3. How you will handle an aggressive customer.
  • Ans. 

    I would remain calm, listen actively, empathize with the customer, and offer solutions to address their concerns.

    • Remain calm and composed

    • Listen actively to understand the customer's concerns

    • Empathize with the customer's emotions

    • Offer solutions to address the customer's issues

    • Seek assistance from a supervisor if necessary

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Be confident and personable.
  • Q2. Well whats your salary in privious company

Interview Preparation Tips

Interview preparation tips for other job seekers - All the very best and be confident.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Mar 2023. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Coding Test 

Create code based out of design patterns

Round 3 - One-on-one 

(1 Question)

  • Q1. Strong oops concepts
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Sep 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Technical 

(4 Questions)

  • Q1. What is object oriented programming
  • Ans. 

    Object oriented programming is a programming paradigm based on the concept of objects, which can contain data and code to manipulate that data.

    • Objects are instances of classes, which define the structure and behavior of the objects.

    • Encapsulation is a key principle, where data is kept private within the object and only accessible through methods.

    • Inheritance allows classes to inherit attributes and methods from other cla...

  • Answered by AI
  • Q2. What is static Constructor?
  • Ans. 

    Static constructor is a special type of constructor in a class that is called only once when the class is loaded into memory.

    • Static constructor is used to initialize static data members of a class.

    • It is automatically called by the .NET Framework when the class is first loaded.

    • Static constructor does not take any parameters and cannot be called explicitly.

    • Example: public class MyClass { static MyClass() { // initializat

  • Answered by AI
  • Q3. What are solid Principles
  • Ans. 

    SOLID principles are a set of five design principles that help make software designs more understandable, flexible, and maintainable.

    • Single Responsibility Principle (SRP) - A class should have only one reason to change.

    • Open/Closed Principle (OCP) - Software entities should be open for extension but closed for modification.

    • Liskov Substitution Principle (LSP) - Objects of a superclass should be replaceable with objects o...

  • Answered by AI
  • Q4. What is dependency injection
  • Ans. 

    Dependency injection is a design pattern in which components are given their dependencies rather than creating them internally.

    • Allows for easier testing by providing mock dependencies

    • Promotes loose coupling between components

    • Improves code reusability and maintainability

    • Commonly used in frameworks like Spring in Java

  • Answered by AI
Round 3 - Coding Test 

What is static Constructor

Interview Preparation Tips

Interview preparation tips for other job seekers - Confidence is key , keep your basic strong.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. C# fundamentals, database
Round 2 - One-on-one 

(1 Question)

  • Q1. Behavioural question

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well for technical questions & fundamentals of the technology
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Feb 2023. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Array,linked list,basic dsa
Round 2 - Coding Test 

DSA, linked list, unity movement code,basic unity questions

Round 3 - HR 

(1 Question)

  • Q1. Salary expectations and basic info were asked

Mittal Brothers Interview FAQs

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

Some of the top questions asked at the Mittal Brothers Senior Manager interview -

  1. Only preparation of COS, client billing, reconciliat...read more
  2. preparation of COS, reconciliation, client bill...read more

Tell us how to improve this page.

Mittal Brothers Senior Manager Interview Process

based on 1 interview

Interview experience

2
  
Poor
View more
Mittal Brothers Senior Manager Salary
based on 5 salaries
₹6 L/yr - ₹9.6 L/yr
66% less than the average Senior Manager Salary in India
View more details
Sales Manager
13 salaries
unlock blur

₹4.2 L/yr - ₹8.4 L/yr

Senior Sales Manager
8 salaries
unlock blur

₹4.8 L/yr - ₹8.5 L/yr

Legal Advisor
7 salaries
unlock blur

₹2 L/yr - ₹4.5 L/yr

Executive Accountant
7 salaries
unlock blur

₹2.4 L/yr - ₹4.2 L/yr

Sales Executive
7 salaries
unlock blur

₹2 L/yr - ₹5.5 L/yr

Explore more salaries
Compare Mittal Brothers with

Godrej Properties

3.7
Compare

DLF

4.0
Compare

Sobha

3.9
Compare

Prestige Group

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