Upload Button Icon Add office photos

Filter interviews by

Alan Scott Interview Questions and Answers

Updated 2 Dec 2022

Alan Scott Interview Experiences

1 interview found

Head Production- Plant Head Interview Questions & Answers

user image Anonymous

posted on 2 Dec 2022

I applied via Recruitment Consulltant and was interviewed before Dec 2021. 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 

(1 Question)

  • Q1. About my family background and experiences
Round 3 - Technical 

(2 Questions)

  • Q1. On my experience technically and commercially
  • Q2. About my compensation

Interview Preparation Tips

Topics to prepare for Alan Scott Head Production- Plant Head interview:
  • Techno-commercial Operations
Interview preparation tips for other job seekers - Before going to interview,
1.Please be prepared yourself about your experience.
2.Give the answers confidentially.
3.If your able to answer the questions then say yes otherwise don't try to show that you have the answer (wondering- moving your eyes here and there)
4.Accept the fact

Interview questions from similar companies

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

I applied via LinkedIn and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Here is everything asked in round 1 after they ghosted me # Find if string contains all unique character. # STR1 = 'DDISCOVERY' return TRUE # STR2 = 'WARNER BROTHERS DISCOVERY' return FALSE # fro...
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed before Jan 2024.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Tell me about your self.
  • Q2. What is that you will bring to this organisation.
Round 2 - One-on-one 

(2 Questions)

  • Q1. Tell me about your working experience.
  • Q2. Tell me about your self.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I was interviewed in Dec 2024.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Where do you see yourself
  • Q2. Give examples of your past work

Interview Preparation Tips

Interview preparation tips for other job seekers - informative, in person, detailed
Interview experience
3
Average
Difficulty level
Hard
Process Duration
4-6 weeks
Result
Not Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. What is an LVM
  • Ans. 

    LVM stands for Logical Volume Manager, a tool used in Linux systems to manage disk space by creating logical volumes from physical volumes.

    • LVM allows for dynamic resizing of logical volumes without needing to unmount the filesystem

    • It provides features like striping, mirroring, and snapshots for data management

    • Common LVM commands include pvcreate, vgcreate, lvcreate, lvextend, lvreduce

    • Example: Creating a new logical vol...

  • Answered by AI
  • Q2. How to check the open ports
  • Ans. 

    To check open ports, use tools like netstat, nmap, or telnet

    • Use netstat command to display all open ports on a system

    • Use nmap tool to scan for open ports on a remote system

    • Use telnet command to check if a specific port is open on a remote host

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. What is a file storage and block storage
  • Ans. 

    File storage stores data in files and folders, while block storage stores data in blocks or chunks.

    • File storage organizes data in a hierarchical structure of files and folders, similar to a traditional file system.

    • Block storage breaks data into blocks or chunks and stores them in a raw format without any file system structure.

    • File storage is commonly used for storing documents, images, videos, etc., while block storage...

  • Answered by AI
  • Q2. How do you troubleshoot a server
  • Ans. 

    To troubleshoot a server, start by checking for hardware issues, then move on to software problems and network connectivity.

    • Check hardware components such as power supply, CPU, RAM, and storage devices for any issues or failures.

    • Review system logs and error messages to identify any software-related issues or conflicts.

    • Verify network connectivity by checking cables, switches, routers, and firewall settings.

    • Use diagnosti...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - There will be 3 -4 rounds of interviews.
It would be best if you prepared from the basics to the advanced level of the topic.
1st round will be an online test, the next rounds will be face-to-face(both video and in-person)
You have to tick all the boxes, for every skill they are looking. Even if you miss one skill or topic you will be gone.

Skills evaluated in this interview

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

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

Round 1 - Coding Test 

1. How to make an api call in java and count the number of items in the response?
2. Longest Incresing subsequence (leetcode)

with some MCQs in Java and microservices

Round 2 - Technical 

(4 Questions)

  • Q1. What is java8. its features and uses
  • Ans. 

    Java 8 is a major release of the Java programming language with new features like lambda expressions, streams, and default methods.

    • Lambda expressions allow functional programming in Java.

    • Streams provide a new way to work with collections in a more concise and efficient manner.

    • Default methods allow interfaces to have method implementations.

    • Java 8 also introduced the new Date and Time API for better handling of date and ...

  • Answered by AI
  • Q2. Use of microsevices in java. and its implmenatation
  • Ans. 

    Microservices in Java are a way to design software applications as a collection of small, loosely coupled services.

    • Microservices architecture breaks down a large application into smaller, independent services that can be developed, deployed, and scaled independently.

    • Each microservice typically focuses on a specific business function and communicates with other services through APIs.

    • Java is a popular language for implem...

  • Answered by AI
  • Q3. Design patterns in java.
  • Ans. 

    Design patterns in Java are reusable solutions to common problems in software design.

    • Design patterns help in creating maintainable and scalable code.

    • Examples include Singleton, Factory, Observer, Strategy, and Decorator patterns.

    • Each design pattern has its own purpose and implementation details.

    • Design patterns promote code reusability and flexibility in software development.

  • Answered by AI
  • Q4. Find the height of binary tree using recursion?
  • Ans. 

    Recursively find the height of a binary tree by comparing the heights of left and right subtrees.

    • Start by checking if the root is null, return -1 if so.

    • Recursively find the height of the left subtree and right subtree.

    • Return the maximum of the heights of the left and right subtrees, plus 1 for the current node.

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. Discussion about carrer summery. what is your roles and responsibilities in projects done by you. challanges faced in the developmenet area. how to identifty problems in code.
  • Q2. Find the longest substring in string without repeating characters
  • Ans. 

    Find the longest substring in a string without repeating characters.

    • Use a sliding window approach to iterate through the string.

    • Keep track of the characters seen so far in a set.

    • Update the start of the window when a repeating character is encountered.

    • Calculate the length of the current substring and update the longest substring found.

    • Repeat until the end of the string is reached.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - In my interview all are basic questions only. but asked in tough format and real time scenarios.
so which makes us difficult. learn practical implications of this where we use and where not.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
Not Selected

I applied via Campus Placement

Round 1 - Aptitude Test 

SHL platform, choose the best answer form cse concept,apti,

Round 2 - Technical 

(1 Question)

  • Q1. Face to face in college campus
Round 3 - HR 

(1 Question)

  • Q1. It only for clearing the technical round
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. HTML5 CSS3 Basics and Advanced
  • Q2. Javascript Basics and Advanced
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected
Round 1 - Technical 

(1 Question)

  • Q1. RO basic questions Wiring Installation Electrical consumption unit Hvac
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I was interviewed before Jan 2024.

Round 1 - Coding Test 

Leet code question medium

Round 2 - Coding Test 

Leetcode questions medium

Round 3 - Technical 

(2 Questions)

  • Q1. Design barber shop booking system
  • Q2. How would you scale it

Interview Preparation Tips

Interview preparation tips for other job seekers - Company is becoming unstable due to lack of vision and clarity. Multiple senior members were hired lead to rapid unnecessary hiring and firing without any reason.

3 massive layoff in a year . Which clearly shows lack of vision and planning. Excessive burns are happening, townhall gets rescheduled. Leadership don't want to tell how company is doing , clearly lack of visibility

The tech is good, they want to release fast without breaking production same is expected from critical releases.

Alan Scott Interview FAQs

How many rounds are there in Alan Scott interview?
Alan Scott interview process usually has 3 rounds. The most common rounds in the Alan Scott interview process are Resume Shortlist, HR and Technical.
How to prepare for Alan Scott interview?
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 Alan Scott. The most common topics and skills that interviewers at Alan Scott expect are TDS, Analytical skills, Foreign Remittance, GIT and Leadership Skills.

Tell us how to improve this page.

Interview Questions from Similar Companies

PVR Inox Interview Questions
4.0
 • 158 Interviews
Comcast Interview Questions
4.0
 • 72 Interviews
Cinépolis Interview Questions
3.9
 • 56 Interviews
HT Media Interview Questions
3.3
 • 49 Interviews
Pocket FM Interview Questions
2.9
 • 49 Interviews
DAZN Interview Questions
2.6
 • 29 Interviews
View all
Plant Head
4 salaries
unlock blur

₹15 L/yr - ₹15 L/yr

Explore more salaries
Compare Alan Scott with

PVR Inox

4.0
Compare

Cinépolis

3.9
Compare

HT Media

3.3
Compare

Zee Entertainment Enterprises

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