Upload Button Icon Add office photos

Filter interviews by

Disney India Interview Questions and Answers for Experienced

Updated 23 Aug 2024

Disney India Interview Experiences for Experienced

Popular Designations

1 interview found

Janitor Interview Questions & Answers

user image Anonymous

posted on 23 Jun 2024

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Asked questions about how to do it from behind and how it is performed safely

Round 2 - Assignment 

Asked to demonstrate the act

Interview Preparation Tips

Interview preparation tips for other job seekers - Don’t go here

Janitor Interview Questions asked at other Companies

Q1. what's your favorite place to clean?
View answer (1)

Interview questions from similar companies

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

(1 Question)

  • Q1. Market experience
  • Ans. 

    I have 5 years of experience in the market, including sales, customer service, and product management.

    • Managed sales team to increase revenue by 20% in one year

    • Developed and implemented marketing strategies to target new customer segments

    • Analyzed market trends and competitor activities to make informed business decisions

  • Answered by AI

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Where did I work in past?
  • Q2. What kind of assignments I fulfill?

Interview Preparation Tips

Interview preparation tips for other job seekers - Express yourself. Don't exaggerate. You have to earn business from day one.
Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Not Selected

I applied via Walk-in and was interviewed in Nov 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 - One-on-one 

(2 Questions)

  • Q1. Work experience
  • Q2. How many experiance
  • Ans. 

    I have 5 years of experience as an Assistant Manager.

    • I have worked as an Assistant Manager for 5 years.

    • During my time as an Assistant Manager, I successfully led a team of 10 employees.

    • I have experience in budgeting, scheduling, and performance management.

    • I have a proven track record of achieving targets and improving operational efficiency.

    • I am familiar with various management software and tools.

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Current ctc discussion
Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Not Selected

I appeared for an interview in Feb 2025, where I was asked the following questions.

  • Q1. What is JPA
  • Ans. 

    JPA (Java Persistence API) is a specification for managing relational data in Java applications using object-relational mapping.

    • JPA provides a way to map Java objects to database tables.

    • It simplifies database interactions through an object-oriented approach.

    • Common implementations include Hibernate, EclipseLink, and OpenJPA.

    • Example: Using JPA annotations like @Entity to define a persistent class.

    • JPA supports querying wi...

  • Answered by AI
  • Q2. Write a program to find duplicate elements in the list
  • Ans. 

    This program identifies and returns duplicate elements from a given list.

    • Use a set to track seen elements and a list for duplicates.

    • Iterate through the list and check if an element is in the set.

    • If it is, add it to the duplicates list; otherwise, add it to the set.

    • Example: For the list [1, 2, 3, 2, 4, 3], the output should be [2, 3].

  • Answered by AI
Interview experience
3
Average
Difficulty level
Easy
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Job Portal and was interviewed before Aug 2023. There was 1 interview round.

Round 1 - HR 

(1 Question)

  • Q1. Tell me about yourself
  • Ans. 

    I am a data analyst with a strong background in statistics and data visualization.

    • Graduated with a degree in Statistics

    • Proficient in programming languages like Python and R

    • Experience in analyzing large datasets and creating data visualizations

    • Strong problem-solving skills

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Dec 2024.

Round 1 - HR 

(2 Questions)

  • Q1. What is your name?
  • Ans. 

    My name is John Smith.

    • My name is John Smith.

    • I go by John.

    • My full name is John Smith.

  • Answered by AI
  • Q2. What do you do?

Interview Preparation Tips

Interview preparation tips for other job seekers - I have a need a job for financial reasons.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed before Feb 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Do not use an unprofessional email address such as cool_boy@email.com. It shows a lack of professionalism by the candidate.
View all tips
Round 2 - Aptitude Test 

Never loss your Eye contact with the interviewer.

Round 3 - Why you need this job 

(2 Questions)

  • Q1. I need this job because this is a opportunity for me to achieve something.
  • Q2. About your family and where are u from?
  • Ans. There are five members in my family mom, dad, elder brother, younger sister n myself from indore, madhya pradesh.
  • Answered Anonymously

Interview Preparation Tips

Interview preparation tips for other job seekers - Never underestimate yourself, be confident like the job needs you.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Campus Placement and was interviewed in Jan 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Questions about Basic finance and overall like any CET exams questions

Round 2 - Group Discussion 

Easy as you will get chance to talk about your views on topic given by interviewer

Round 3 - HR 

(3 Questions)

  • Q1. Tell me about Yourself
  • Q2. Tell me About projects you have done
  • Q3. What you have done in your internship

Interview Preparation Tips

Interview preparation tips for other job seekers - Important thing is prepare you CV. They will asked questions only on your CV. So write all things currently that you can explain.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Company Website

Round 1 - Technical 

(2 Questions)

  • Q1. Life cycle of thread
  • Ans. 

    Thread life cycle includes new, runnable, running, blocked, and terminated states.

    • Thread is created in 'new' state

    • It becomes 'runnable' when start() method is called

    • Thread enters 'running' state when CPU starts executing its run() method

    • It can go to 'blocked' state if it's waiting for a resource

    • Finally, thread reaches 'terminated' state when run() method completes or stop() method is called

  • Answered by AI
  • Q2. İnternal working of hash map
  • Ans. 

    Hash map is a data structure that stores key-value pairs and uses a hash function to map keys to their corresponding values.

    • Hash map consists of an array of buckets, each containing a linked list of key-value pairs.

    • When inserting a key-value pair, the hash function is used to determine the index of the bucket where the pair should be stored.

    • To retrieve a value, the hash function is used to find the corresponding bucket...

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. Salary expectations
  • Q2. Why I want to change the job
  • Ans. 

    Seeking new challenges, growth opportunities, and a better work-life balance.

    • Looking for new challenges and opportunities to learn and grow

    • Seeking a better work-life balance

    • Interested in working with new technologies or in a different industry

    • Wanting to advance career progression

  • Answered by AI

Skills evaluated in this interview

Disney India Interview FAQs

How many rounds are there in Disney India interview for experienced candidates?
Disney India interview process for experienced candidates usually has 2 rounds. The most common rounds in the Disney India interview process for experienced candidates are Aptitude Test and Assignment.
How to prepare for Disney India interview for experienced candidates?
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 Disney India. The most common topics and skills that interviewers at Disney India expect are Cameraman Activities, Technical Process and Video Editing.
What are the top questions asked in Disney India interview for experienced candidates?

Some of the top questions asked at the Disney India interview for experienced candidates -

  1. How to process large amount of data? Which tool would you pref...read more
  2. How to process large amount of lo...read more
  3. Design APIs for user based cont...read more

Tell us how to improve this page.

Disney India Interview Process for Experienced

based on 1 interview

Interview experience

1
  
Bad
View more

Disney India Reviews and Ratings

based on 20 reviews

3.5/5

Rating in categories

3.2

Skill development

3.8

Work-life balance

3.7

Salary

3.8

Job security

3.5

Company culture

3.0

Promotions

3.2

Work satisfaction

Explore 20 Reviews and Ratings
Senior Analyst
11 salaries
unlock blur

₹8.5 L/yr - ₹13.6 L/yr

HR BP
10 salaries
unlock blur

₹25 L/yr - ₹30 L/yr

Assistant Manager
8 salaries
unlock blur

₹10 L/yr - ₹27.1 L/yr

Manager
5 salaries
unlock blur

₹18.2 L/yr - ₹35.1 L/yr

Senior Executive
5 salaries
unlock blur

₹6.3 L/yr - ₹17 L/yr

Explore more salaries
Compare Disney India with

Karvy Financial Services

3.8
Compare

Tradebulls

3.2
Compare

Sonata Finance

3.9
Compare

Axis Sales

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