Upload Button Icon Add office photos

Filter interviews by

Oberoi Mall Interview Questions and Answers

Updated 3 Apr 2022

Oberoi Mall Interview Experiences

2 interviews found

Interview Questionnaire 

4 Questions

  • Q1. What is something and true about you and you want to share with us?
  • Q2. Suppose you are not in front interviewer how can you behave?
  • Q3. What is something which bother you most in your entire life?
  • Q4. How can you spend your birthday and with whom?

Interview Preparation Tips

Interview preparation tips for other job seekers - Candidates should be free to speak in any language they are comfortable with.

International Sales Manager Interview Questions asked at other Companies

Q1. The average yield in the SCM industry is between 10-12 and if the customer is big MNC then the yield differ and can be lower than 10 depending on the volume.
View answer (1)

Technical managers Interview Questions & Answers

user image Anonymous

posted on 26 Apr 2021

I applied via Referral and was interviewed in Mar 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. SLD , BREAKER SAFETY HT/LT,Transformer mentenance, chiller safety,assets handled at previous site,reporting persons.

Interview Preparation Tips

Interview preparation tips for other job seekers - Make sure u know all the things whatever u have written in your CV or resume.

Interview questions from similar companies

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

I was interviewed in Jan 2025.

Round 1 - One-on-one 

(1 Question)

  • Q1. Take one to one interview and ask many questions related to my profile
Round 2 - One-on-one 

(1 Question)

  • Q1. Take personal interview and asked about p&l
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I was interviewed in Aug 2024.

Round 1 - One-on-one 

(2 Questions)

  • Q1. No any questions
  • Q2. No any questions
Round 2 - Case Study 

Examination of a person, group, event, or situation. It's a research method used to understand how something works or to learn more about it. Case studies are used in many fields, including psychology, medicine, education, and social work.
How case studies are conducted
Researchers define the research question and scope of the case
They identify the evidence they want to collect and the insights they expect to gain
They gain access to the individual, group, or situation being studied
They analyze nearly every aspect of the subject's life and history
They look for patterns and causes of behavior
Case study examples
John Martin Marlow's case study on Phineas Gage
Sigmund Freud's case studies, Little Hans and The Rat Man
Case study writing tips Introduce the topic area, Outline the purpose of the case study, Identify the theory used, and Summarize recommendations.
Case study limitations
Case studies can be highly subjective, and it can be difficult to generalize results to a larger population.

Round 3 - Coding Test 

The process of running code to check if it produces the expected results. It's a key part of software development that helps identify bugs and errors.
How is code testing done?

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

Mobile industry discussion

Round 2 - Technical 

(2 Questions)

  • Q1. What type of processor is used in ultra devices?
  • Q2. What is a megapixel?
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Jul 2024. 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 - HR 

(2 Questions)

  • Q1. Profile interview
  • Q2. What are the key performance indicators (KPIs) for marketing and the role of marketing communications (Marcom)?
  • Ans. 

    KPIs for marketing include metrics like ROI, lead generation, brand awareness. Marcom plays a key role in achieving these KPIs.

    • Key performance indicators for marketing include ROI, lead generation, customer acquisition cost, customer lifetime value, brand awareness, and conversion rates.

    • Marketing communications (Marcom) plays a crucial role in achieving these KPIs by creating and delivering targeted messaging to the ri...

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Team management and event management
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Good 2 set of problems

Round 2 - Aptitude Test 

Elitmus test in second round

Round 3 - Technical 

(2 Questions)

  • Q1. Basic string questions
  • Q2. Sub array question , easy in leetcode

Senior QA Tester Interview Questions & Answers

The TJX Companies user image ANKITA PRIYADARSHINI NAYAK

posted on 5 Aug 2024

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

(1 Question)

  • Q1. WHAT IS HASHMAP
  • Ans. 

    HashMap is a data structure in Java that stores key-value pairs and allows for fast retrieval of values based on keys.

    • HashMap is part of the Java Collections framework.

    • It uses hashing to store and retrieve elements efficiently.

    • Each key in a HashMap must be unique.

    • Example: HashMap map = new HashMap<>(); map.put("apple", 5); int value = map.get("apple");

  • Answered by AI
Round 2 - Coding Test 

WRITE A PROGRAM FOR FIBONACCI SERIES

Round 3 - Technical 

(1 Question)

  • Q1. STATIC VS FINAL
  • Ans. 

    STATIC vs FINAL - STATIC is used to define a class-level variable or method that can be accessed without creating an instance of the class. FINAL is used to define constants or prevent inheritance or method overriding.

    • STATIC variables and methods belong to the class itself, while FINAL variables cannot be changed once initialized.

    • STATIC variables are shared among all instances of a class, while FINAL variables are uniq...

  • Answered by AI

Skills evaluated in this interview

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 Mar 2024. There were 2 interview rounds.

Round 1 - Coding Test 

- write code for permutations & combination out of n numbers with k possibilities

Round 2 - Technical 

(3 Questions)

  • Q1. - diff between generator & decorator - write code for recursive decorator
  • Ans. 

    Generator produces a sequence of values while decorator adds functionality to an existing function. Recursive decorator calls itself within the decorator function.

    • Generator produces values lazily while decorator enhances functionality of a function.

    • Generators use 'yield' keyword to yield values one at a time.

    • Decorators use '@' symbol to apply additional functionality to a function.

    • Example of recursive decorator: def re...

  • Answered by AI
  • Q2. Explain generators
  • Ans. 

    Generators are functions in Python that allow you to pause and resume execution, yielding multiple values over time.

    • Generators are defined using a function with 'yield' statements instead of 'return'.

    • They can be iterated over using a for loop or by calling the next() function.

    • Generators are memory efficient as they do not store all values in memory at once.

    • They are useful for generating large sequences of values or pro...

  • Answered by AI
  • Q3. Sample application using flask
  • Ans. 

    A sample application using Flask, a Python web framework

    • Create a virtual environment for the project

    • Install Flask using pip

    • Create routes and views for different pages

    • Use templates to render HTML pages

    • Connect to a database using Flask-SQLAlchemy

  • 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 Referral and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - HR 

(6 Questions)

  • Q1. Tell something about your self
  • Q2. About work experience
  • Q3. How did u know about the job
  • Q4. As delhi is new pace for u how will u manage
  • Q5. Salary expectation
  • Q6. What r u looking in the company future growth...

Tell us how to improve this page.

Interview Questions from Similar Companies

MR.DIY Interview Questions
3.3
 • 29 Interviews
Falabella Interview Questions
3.3
 • 14 Interviews
Bazar India Interview Questions
3.7
 • 14 Interviews
Inorbit Mall Interview Questions
4.3
 • 13 Interviews
Tresor Systems Interview Questions
4.0
 • 10 Interviews
Ambience Mall Interview Questions
3.9
 • 3 Interviews
View all

Oberoi Mall Reviews and Ratings

based on 5 reviews

4.5/5

Rating in categories

4.5

Skill development

4.5

Work-life balance

4.2

Salary

4.4

Job security

4.4

Company culture

4.5

Promotions

4.5

Work satisfaction

Explore 5 Reviews and Ratings
Senior Marketing Executive
4 salaries
unlock blur

₹4 L/yr - ₹6 L/yr

Security Executive
4 salaries
unlock blur

₹4.4 L/yr - ₹4.9 L/yr

Security Officer
4 salaries
unlock blur

₹4 L/yr - ₹4.5 L/yr

Assistant Waiter
3 salaries
unlock blur

₹2.5 L/yr - ₹2.5 L/yr

Senior Operations Manager
3 salaries
unlock blur

₹11 L/yr - ₹11 L/yr

Explore more salaries
Compare Oberoi Mall with

Phoenix Marketcity

3.9
Compare

Inorbit Mall

4.3
Compare

DLF Mall of India

4.2
Compare

Ambience Mall

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