Upload Button Icon Add office photos

Filter interviews by

Frontdoor Senior Site Reliability Engineer Interview Questions and Answers

Updated 21 Dec 2022

Frontdoor Senior Site Reliability Engineer Interview Experiences

1 interview found

I applied via Recruitment Consulltant and was interviewed in Jun 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. Architecture related questions
  • Q2. Kafka working and zookeeper role init
  • Ans. 

    Kafka is a distributed streaming platform while Zookeeper is a centralized service for maintaining configuration information.

    • Kafka is used for building real-time data pipelines and streaming apps

    • Zookeeper is responsible for managing and coordinating Kafka brokers

    • Zookeeper stores metadata about Kafka cluster and helps in leader election

    • Kafka brokers use Zookeeper to discover other brokers and to maintain topic partition...

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. Scripting question based on live log example
  • Q2. Kubernetes yaml file explanation
  • Ans. 

    Explanation of Kubernetes YAML file

    • Kubernetes YAML files are used to define and deploy applications on a Kubernetes cluster

    • They contain information about the application's containers, volumes, services, and other resources

    • YAML files can be used to create, update, or delete resources on the cluster

    • They can also be used to define custom resource definitions (CRDs) for custom resources

    • YAML files can be validated using the...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Do not go on interview questions, company has typical american mindset and apart from money they expect to work in very less communication environment and manager will seek immediate turn around as soon as you joins so if you are comfortable joining frontdoor then go for it else look for another opportunity.

Skills evaluated in this interview

Top trending discussions

View All
Interview Hub
2w
a team lead
FeedCard Image
Got a question about Frontdoor?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Referral and was interviewed before Jul 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. About VCB, ACB, UPS, inverter, transformers, DG set, chillers, AHU, fire systems and excel work and PPT

Interview Preparation Tips

Interview preparation tips for other job seekers - Need to take full knowledge, & ensure that I'm capable for this post & ready to take any challenge

Senior Site Reliability Engineer Interview Questions Asked at Other Companies

asked in Gupshup
Q1. What are the different load balancing methods available in AWS?
asked in S&P Global
Q2. What are the different types of Data Pages in Pega?
asked in AutoRABIT
Q3. What is the difference between -sub and -ref in CloudFormation?
asked in Gupshup
Q4. What does load average mean in Linux?
asked in Frontdoor
Q5. kafka working and zookeeper role init

I applied via Recruitment Consultant and was interviewed in Jun 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Work experience in mechanical
  • Ans. 

    I have 10 years of work experience in mechanical engineering.

    • Designed and implemented mechanical systems for various projects

    • Performed analysis and simulations to optimize performance

    • Collaborated with cross-functional teams to ensure project success

    • Managed and supervised junior engineers

    • Implemented cost-saving measures in manufacturing processes

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Once refer your resume first
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Overall previous site infrastructure details
  • Ans. 

    Previous site infrastructure included data centers, networking equipment, servers, and storage systems.

    • Data centers were located in multiple regions for redundancy.

    • Networking equipment included routers, switches, and firewalls.

    • Servers were a mix of physical and virtual machines.

    • Storage systems used SAN and NAS technologies.

    • Backup and disaster recovery plans were in place.

    • Monitoring tools were used to track performance ...

  • Answered by AI
Round 2 - Case Study 

Multiple scenarios of UPS DG CHILLER FAILURES

Skills evaluated in this interview

I appeared for an interview in Dec 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Medium

The round started at 8 PM. There was one question with several test cases and had to pass every test case in order to get a call for interview.

  • Q1. 

    Nth Fibonacci Number Problem Statement

    Calculate the Nth term in the Fibonacci sequence, where the sequence is defined as follows: F(n) = F(n-1) + F(n-2), with initial conditions F(1) = F(2) = 1.

    Input:

    ...
  • Ans. 

    Calculate the Nth Fibonacci number efficiently using iterative or dynamic programming techniques.

    • Fibonacci Definition: F(n) = F(n-1) + F(n-2) with F(1) = F(2) = 1.

    • Iterative Approach: Use a loop to calculate Fibonacci numbers up to N, storing only the last two values to save space.

    • Dynamic Programming: Store previously computed Fibonacci numbers in an array to avoid redundant calculations.

    • Time Complexity: Both iterative ...

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 45 Minutes
Round difficulty - Medium

It was first round for 45mins and only one question was asked.

  • Q1. 

    Sum Of Zeroes Coverage Calculation

    You are provided with a binary matrix containing dimensions 'N * M', comprised only of 0s and 1s. Your task is to compute the aggregated sum of coverages for all the zer...

  • Ans. 

    Calculate the total coverage of zeros in a binary matrix based on adjacent ones in a defined neighborhood.

    • Matrix Traversal: Iterate through each cell in the N x M matrix to identify zeros.

    • Neighbor Counting: For each zero, check its top, bottom, left, and right neighbors to count the number of adjacent ones.

    • Boundary Conditions: Ensure that checks for neighbors do not go out of matrix bounds to avoid errors.

    • Example: In a...

  • Answered by AI
Round 3 - Video Call 

(1 Question)

Round duration - 45 Minutes
Round difficulty - Easy

It was again 45 min interview and after an intro we quickly jumped in coding.

  • Q1. 

    Word Occurrence Counting

    Given a string 'S' of words, the goal is to determine the frequency of each word in the string. Consider a word as a sequence of one or more non-space characters. The string can h...

  • Ans. 

    Count the frequency of each unique word in a given string, handling multiple spaces and ignoring leading/trailing spaces.

    • Input Handling: Trim the string to remove leading/trailing spaces and split it by spaces to get individual words.

    • Word Counting: Use a dictionary to count occurrences of each word as you iterate through the list of words.

    • Output Format: Print each unique word along with its count, ensuring each output ...

  • Answered by AI
Round 4 - Video Call 

(1 Question)

Round duration - 45 minutes
Round difficulty - Medium

It was an Technical + HR round. The interviewer was very understanding and he checked the overall knowledge of the subject.

  • Q1. 

    Kth Smallest Element Problem Statement

    You are provided with an array of integers ARR of size N and an integer K. Your task is to find and return the K-th smallest value present in the array. All elements...

  • Ans. 

    The Kth Smallest Element problem involves finding the K-th smallest number in a distinct integer array.

    • Sorting Method: Sort the array and return the element at index K-1. Example: For ARR = [3, 1, 4, 2, 5] and K = 3, sorted array is [1, 2, 3, 4, 5], so return 3.

    • Time Complexity: Sorting the array takes O(N log N) time, which is efficient given the constraints.

    • Direct Access: Since all elements are distinct, accessing the...

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Software Engineer in HyderabadEligibility criteriaNoCompass Group interview preparation:Topics to prepare for the interview - Data Structures and Algorithms, Dynamic Programming, Object Oriented Programming, DBMS, Operating SystemTime required to prepare for the interview - 10 monthsInterview preparation tips for other job seekers

Tip 1 : Competitive Coding helps initially, later Leetcode, GFG
Tip 2 : Add at least 2 projects in your resume
 

Application resume tips for other job seekers

Tip 1 : Add atleast two projects on Resume
Tip 2 : Study in depth from Resume and make your friend take your mock interview

Final outcome of the interviewRejected

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Basic logical pogrmaminh

Round 2 - Assignment 

Smaall cart mabnagenebt system i have to built from scratch in laravel

Round 3 - One-on-one 

(2 Questions)

  • Q1. Technical question about technologies
  • Q2. Negaotiation ha done in this
Be interview-ready. Browse the most asked HR questions.
illustration image

I applied via Recruitment Consulltant and was interviewed before Jun 2021. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. What is Specific power consumption
  • Ans. 

    Specific power consumption is the amount of power consumed per unit of output.

    • It is a measure of energy efficiency.

    • It is calculated by dividing the power consumed by the output produced.

    • It is commonly used in industries to optimize energy usage.

    • Examples include kWh/ton in cement production and kWh/kg in textile manufacturing.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - technical and management related knowledge is required.
Are these interview questions helpful?

I applied via Referral and was interviewed before Dec 2020. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Roles and responsibilities
  • Q2. Working hours
  • Q3. Facilities other than salary

Interview Preparation Tips

Interview preparation tips for other job seekers - The interview was more technical. They test your skills at work place management are the main requirement for the company.

I applied via Recruitment Consultant

Interview Questionnaire 

6 Questions

  • Q1. I need job Chennai city
  • Q2.  same job for me
  • Q3. I am happy with work tenon
  • Q4. I love with my work
  • Q5. Give your support all time
  • Q6. Thank you giving for net support

Interview Preparation Tips

Interview preparation tips for other job seekers - I am working with housekeeping department Chennai give your support with wall tenon group

I applied via Naukri.com and was interviewed in Sep 2021. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. What is the difference between HT & LT cable.
  • Ans. 

    HT cables are used for high voltage transmission while LT cables are used for low voltage transmission.

    • HT cables are designed to handle high voltage levels, typically above 11kV.

    • LT cables are designed to handle low voltage levels, typically below 1kV.

    • HT cables are used for long distance transmission of electricity while LT cables are used for short distance transmission.

    • HT cables are more expensive than LT cables due t...

  • Answered by AI
  • Q2. Why we will use BTD & RTD in DG'S
  • Ans. 

    BTD & RTD are used in DG's for accurate measurement of temperature and resistance.

    • BTD stands for Bearing Temperature Detector and RTD stands for Resistance Temperature Detector.

    • BTD is used to measure the temperature of bearings in DG's to prevent overheating and damage.

    • RTD is used to measure the resistance of the winding in DG's to ensure proper functioning.

    • Both BTD and RTD provide accurate and reliable measurements fo...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident
Keep smiling
Keep eye to eye contact
Be in fresh mind

Frontdoor Interview FAQs

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

Some of the top questions asked at the Frontdoor Senior Site Reliability Engineer interview -

  1. kafka working and zookeeper role i...read more
  2. kubernetes yaml file explanat...read more
  3. scripting question based on live log exam...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Sodexo Interview Questions
4.1
 • 179 Interviews
Leadec India Interview Questions
4.0
 • 97 Interviews
BVG India Interview Questions
4.0
 • 56 Interviews
OCS Group Interview Questions
4.1
 • 45 Interviews
GSH Group Interview Questions
4.2
 • 10 Interviews
View all
Frontdoor Senior Site Reliability Engineer Salary
based on 4 salaries
₹32.1 L/yr - ₹52 L/yr
53% more than the average Senior Site Reliability Engineer Salary in India
View more details

Frontdoor Senior Site Reliability Engineer Reviews and Ratings

based on 2 reviews

3.0/5

Rating in categories

3.8

Skill development

2.2

Work-life balance

2.4

Salary

2.6

Job security

3.6

Company culture

1.8

Promotions

3.6

Work satisfaction

Explore 2 Reviews and Ratings
Software Engineer
14 salaries
unlock blur

₹14.6 L/yr - ₹27.6 L/yr

Software Engineer III
6 salaries
unlock blur

₹18.5 L/yr - ₹23.3 L/yr

Senior Software Engineer
5 salaries
unlock blur

₹20 L/yr - ₹60.8 L/yr

Senior Software Engineer Testing
4 salaries
unlock blur

₹34 L/yr - ₹62 L/yr

Senior Site Reliability Engineer
4 salaries
unlock blur

₹32.1 L/yr - ₹52 L/yr

Explore more salaries
Compare Frontdoor with

Sodexo

4.1
Compare

Compass Group Support Services

4.0
Compare

ISS Facility Services

4.0
Compare

BVG India

4.0
Compare
write
Share an Interview