Upload Button Icon Add office photos

Swiggy

Compare button icon Compare button icon Compare

Filter interviews by

Swiggy Senior Devops Engineer Interview Questions and Answers for Experienced

Updated 26 Jul 2024

Swiggy Senior Devops Engineer Interview Experiences for Experienced

1 interview found

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

(1 Question)

  • Q1. Explain different LB types in k8s.
  • Ans. 

    Different LB types in k8s include NodePort, LoadBalancer, and Ingress.

    • NodePort: Exposes the service on each Node's IP at a static port.

    • LoadBalancer: Creates an external load balancer in the cloud provider's network.

    • Ingress: Manages external access to services in a cluster.

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

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

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

Round 1 - Coding TestΒ 

I was asked question on sliding window on finding the largest subarray with all distinct numbers. The interviewer was very helpful.

Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - TechnicalΒ 

(2 Questions)

  • Q1. Insert node in BST
  • Ans. 

    Insert a node in a Binary Search Tree (BST)

    • Start at the root node and compare the value of the node to be inserted with the current node

    • If the value is less than the current node, move to the left child. If greater, move to the right child

    • Repeat the process until reaching a leaf node, then insert the new node as a left or right child

  • Answered by AI
  • Q2. Design Lift system
  • Ans. 

    Design a lift system for efficient vertical transportation

    • Consider the number of floors in the building

    • Include safety features like emergency stop button

    • Optimize for speed and energy efficiency

    • Implement a user-friendly interface for passengers

  • Answered by AI

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Sep 2021.Β There were 4 interview rounds.

Interview QuestionnaireΒ 

4 Questions

  • Q1. 1. Count the number of flips require to convert a binary string of 0 and 1 such that resultant string has alternate 0 and 1
  • Ans. 

    Count the number of flips required to convert a binary string to alternate 0 and 1.

    • Iterate through the string and count the number of flips required to make it alternate.

    • Keep track of the current character and the expected character.

    • Example: 001101 -> 010101 requires 2 flips.

    • Example: 101010 -> 010101 requires 3 flips.

  • Answered by AI
  • Q2. 2. From an array of integers which contains values for a particular stock . Find the value at which a person should buy and sell such that the profit is maximum.
  • Ans. 

    Find the maximum profit from buying and selling a stock given an array of its values.

    • Iterate through the array and keep track of the minimum value seen so far.

    • Calculate the profit at each index and update the maximum profit seen.

    • Return the maximum profit.

  • Answered by AI
  • Q3. 3. Boundary traversal of a tree.
  • Ans. 

    Boundary traversal of a tree

    • Boundary traversal involves visiting the nodes on the boundary of a tree in a specific order

    • Start with the root node and traverse the left boundary, then the leaf nodes from left to right, and finally the right boundary

    • Use recursion to traverse the left and right subtrees

    • Exclude the leaf nodes that are also part of the left or right boundary

  • Answered by AI
  • Q4. 4. Reverse a linked list in groups of k nodes.
  • Ans. 

    Reverse a linked list in groups of k nodes.

    • Divide the linked list into groups of k nodes

    • Reverse each group of k nodes

    • Connect the reversed groups to form the final linked list

    • Use recursion or iteration to implement the solution

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - 1. Focus on data structures and algorithm (2 rounds)
2. Technologies you are applying for and DSA could also be asked (3rd round )

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - TechnicalΒ 

(1 Question)

  • Q1. Low Level Design for Chess
  • Ans. 

    Low level design for a chess game including classes, functions, and data structures.

    • Create classes for pieces (e.g. Pawn, Rook, Bishop) with properties like position and color

    • Implement functions for moving pieces, checking valid moves, and capturing opponent pieces

    • Use data structures like 2D arrays to represent the chess board and track piece positions

  • Answered by AI

Skills evaluated in this interview

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

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

Round 1 - One-on-oneΒ 

(1 Question)

  • Q1. Design Splitwise Application (LLD)
  • Ans. 

    Design a Splitwise application for managing shared expenses among friends.

    • Implement user authentication and authorization for secure access.

    • Create a user-friendly interface for adding expenses and splitting them among friends.

    • Develop algorithms for calculating balances and settling debts between users.

    • Include features for adding comments, attaching receipts, and generating reports.

    • Consider scalability and performance o...

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Selected Selected

I applied via Instahyre and was interviewed before Mar 2023.Β There were 3 interview rounds.

Round 1 - Coding TestΒ 

DSA, 1 hour with 2 LC medium questions

Round 2 - One-on-oneΒ 

(2 Questions)

  • Q1. Low level design
  • Q2. Design lld for Dream 11
  • Ans. 

    Designing the low-level design for Dream 11 platform.

    • Use microservices architecture for scalability and flexibility.

    • Implement a robust database schema to handle large amounts of user data.

    • Utilize caching mechanisms to improve performance, especially during peak usage times.

    • Include authentication and authorization mechanisms to ensure data security.

    • Design APIs for seamless integration with third-party services.

    • Implement...

  • Answered by AI
Round 3 - One-on-oneΒ 

(2 Questions)

  • Q1. High level design
  • Q2. Design HLD for rider management system
  • Ans. 

    Design HLD for rider management system

    • Use microservices architecture for scalability and flexibility

    • Implement user authentication and authorization for security

    • Include features like ride tracking, payment processing, and feedback system

    • Utilize databases for storing rider information and ride history

  • Answered by AI

Skills evaluated in this interview

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

I applied via Instahyre and was interviewed in May 2024.Β There were 2 interview rounds.

Round 1 - Coding TestΒ 

Two medium DSA questions based on strings.

Round 2 - Design TestΒ 

(1 Question)

  • Q1. Design Google Meet
  • Ans. 

    Design a video conferencing platform similar to Google Meet.

    • Implement real-time video and audio streaming

    • Include features like screen sharing, chat, and participant management

    • Ensure scalability to support large number of users

    • Focus on security and privacy measures

    • Optimize for low latency and high quality video/audio

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Zepto Senior Software Engineer interview:
  • Coding
  • System Design
Interview preparation tips for other job seekers - Give some mock interviews before going to the interview.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - TechnicalΒ 

(1 Question)

  • Q1. Design LLD of google calendar
  • Ans. 

    Design LLD of google calendar

    • Use microservices architecture for scalability and maintainability

    • Implement features like event creation, editing, deletion, reminders, and sharing

    • Utilize databases for storing user data and events

    • Include user authentication and authorization for security

    • Integrate with external APIs for syncing with other calendars

  • Answered by AI

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - TechnicalΒ 

(1 Question)

  • Q1. Design Booking Management System
  • Ans. 

    Design a Booking Management System for handling reservations and scheduling.

    • Create a user-friendly interface for customers to make bookings

    • Implement a database to store booking information

    • Include features for managing availability, cancellations, and payments

  • Answered by AI

Skills evaluated in this interview

Swiggy Interview FAQs

How many rounds are there in Swiggy Senior Devops Engineer interview for experienced candidates?
Swiggy interview process for experienced candidates usually has 1 rounds. The most common rounds in the Swiggy interview process for experienced candidates are Technical.

Tell us how to improve this page.

Swiggy Senior Devops Engineer Interview Process for Experienced

based on 1 interview

Interview experience

2
Β Β 
Poor
View more

Interview Questions from Similar Companies

Indiamart Intermesh Interview Questions
3.6
Β β€’Β 646 Interviews
Udaan Interview Questions
3.9
Β β€’Β 336 Interviews
Meesho Interview Questions
3.7
Β β€’Β 335 Interviews
Info Edge Interview Questions
3.9
Β β€’Β 326 Interviews
Lenskart Interview Questions
3.2
Β β€’Β 320 Interviews
Zepto Interview Questions
3.5
Β β€’Β 246 Interviews
BlackBuck Interview Questions
3.8
Β β€’Β 180 Interviews
Tata 1mg Interview Questions
3.6
Β β€’Β 153 Interviews
Uber Interview Questions
4.2
Β β€’Β 149 Interviews
Digit Insurance Interview Questions
3.9
Β β€’Β 146 Interviews
View all
Swiggy Senior Devops Engineer Salary
based on 11 salaries
β‚Ή25 L/yr - β‚Ή45.5 L/yr
112% more than the average Senior Devops Engineer Salary in India
View more details
Delivery Boy
877 salaries
unlock blur

β‚Ή0.4 L/yr - β‚Ή5 L/yr

Sales Manager
581 salaries
unlock blur

β‚Ή2 L/yr - β‚Ή9.5 L/yr

Fleet Manager
572 salaries
unlock blur

β‚Ή2.5 L/yr - β‚Ή6 L/yr

Assistant Manager
490 salaries
unlock blur

β‚Ή2.6 L/yr - β‚Ή13 L/yr

Assistant Store Manager
443 salaries
unlock blur

β‚Ή1.7 L/yr - β‚Ή4.2 L/yr

Explore more salaries
Compare Swiggy with

Eternal Limited

3.7
Compare

Dunzo

3.4
Compare

FoodPanda

3.7
Compare

Rapido

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