Upload Button Icon Add office photos

Swiggy

Compare button icon Compare button icon Compare

Filter interviews by

Swiggy Devops Engineer Interview Questions, Process, and Tips

Updated 13 Jun 2024

Swiggy Devops Engineer Interview Experiences

1 interview found

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

(2 Questions)

  • Q1. How to check the open files in the linux without using lsof
  • Ans. 

    To check open files in Linux without using lsof, you can use the /proc filesystem.

    • Access the /proc//fd directory to view open files for a specific process.

    • Use the find command to search for open files in the /proc directory.

    • Check the /proc/sys/fs/file-nr file to see the total number of open files system-wide.

Answered by AI
  • Q2. What is /proc linux
  • Ans. 

    The /proc filesystem in Linux is a virtual filesystem that provides detailed information about the system's hardware, processes, and kernel.

    • It is a virtual filesystem located at /proc that allows access to kernel data structures.

    • It provides information about processes, hardware, and kernel configuration.

    • Files in /proc can be read to gather system information, such as CPU usage, memory usage, and network statistics.

  • Answered by AI
    Round 2 - Technical 

    (2 Questions)

    • Q1. Difference between http1.1 vs https2
    • Ans. 

      HTTP/1.1 is a protocol for transferring data over the internet, while HTTPS/2 is a secure version of HTTP/2 with improved performance.

      • HTTP/1.1 is not secure by default, while HTTPS/2 provides encryption and security.

      • HTTP/1.1 uses multiple connections for parallel loading of resources, while HTTPS/2 uses a single connection with multiplexing.

      • HTTPS/2 supports header compression, reducing overhead and improving performanc...

    • Answered by AI
    • Q2. What is grpc ?
    • Ans. 

      gRPC is a high-performance, open-source RPC (Remote Procedure Call) framework developed by Google.

      • gRPC stands for Google Remote Procedure Call.

      • It uses HTTP/2 for transport, Protocol Buffers for serialization, and supports multiple programming languages.

      • gRPC allows for efficient communication between services in a microservices architecture.

      • It enables bi-directional streaming and authentication features.

      • Example: gRPC ca...

    • Answered by AI

    Skills evaluated in this interview

    Interview questions from similar companies

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

    (1 Question)

    • Q1. Last experience of company

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Bad
    Interview experience
    4
    Good
    Difficulty level
    -
    Process Duration
    -
    Result
    -
    Round 1 - Coding Test 

    Write a code to find a loop in linked list

    I appeared for an interview before Jan 2021.

    Round 1 - Coding Test 

    (2 Questions)

    Round duration - 60 minutes
    Round difficulty - Easy

    Two coding questions were given in the first round to be solved in 60 minutes.

    • Q1. 

      Rearrange Array Elements Problem Statement

      Given an array A containing 'N' integers and an integer m, rearrange the elements of the array such that the differences between the array elements and m are sor...

    • Ans. 

      Rearrange array elements based on their differences from a given integer.

      • Calculate the differences between each element and the given integer.

      • Sort the elements based on their differences while maintaining the original order for elements with the same difference.

      • Implement a function to rearrange the array elements as per the given criteria.

    • Answered by AI
    • Q2. 

      Print Nodes at Distance K from a Given Node

      Given an arbitrary binary tree, a node of the tree, and an integer 'K', find all nodes that are at a distance K from the specified node, and return a list of th...

    • Ans. 

      The task is to find all nodes in a binary tree that are at a distance K from a given node.

      • Traverse the binary tree to find the given node

      • From the given node, perform a depth-first search to find all nodes at distance K

      • Use a list to store the values of the nodes at distance K

      • Return the list of values in any order

    • Answered by AI
    Round 2 - Face to Face 

    (4 Questions)

    Round duration - 60 minutes
    Round difficulty - Easy

    This was a technical round with questions based on DSA, DBMS, Computer Networking and project based questions.

    • Q1. 

      Triangle of Numbers Pattern

      Ninja is tasked with printing a triangle pattern based on a given number 'N' for any test case.

      Example:

      Input:
      N = 4
      Output:
         1
      232
      34545
      4567654

      Explanation:

      The pat...

    • Ans. 

      Print a triangle pattern of numbers based on a given number 'N'.

      • Iterate through each row and print the numbers accordingly

      • Use spaces to center-align the numbers in each row

      • Increment the numbers in each row as per the pattern

    • Answered by AI
    • Q2. What is the difference between a web server and an application server?
    • Ans. 

      Web server serves static content over HTTP, while application server runs dynamic content and business logic.

      • Web server handles HTTP requests and responses, serving static content like HTML, images, and CSS.

      • Application server executes business logic, runs dynamic content, and interacts with databases.

      • Web server examples include Apache, Nginx, while application server examples include Tomcat, JBoss.

      • Web server focuses on...

    • Answered by AI
    • Q3. How does the internet work?
    • Ans. 

      The internet is a global network of interconnected computers that communicate using standardized protocols.

      • The internet is made up of a vast number of interconnected networks of computers.

      • Data is transmitted over the internet using protocols such as TCP/IP.

      • Websites are hosted on servers connected to the internet, and users access them using web browsers.

      • Internet Service Providers (ISPs) provide access to the internet f...

    • Answered by AI
    • Q4. Write a SQL query to find the nth highest salary.
    • Ans. 

      SQL query to find the nth highest salary

      • Use the 'SELECT DISTINCT' statement to get unique salary values

      • Order the salaries in descending order using 'ORDER BY' clause

      • Use 'LIMIT' and 'OFFSET' to get the nth highest salary

    • Answered by AI
    Round 3 - HR 

    Round duration - 30 minutes
    Round difficulty - Easy

    Typical HR round with behavioral problems.

    Interview Preparation Tips

    Professional and academic backgroundI completed Information Technology from Chitkara University. Eligibility criteriaAbove 7 CGPAInfo Edge India (Naukri.com) interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

    Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
    Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
    Tip 3 : Do at-least 2 good projects and you must know every bit of them.

    Application resume tips for other job seekers

    Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
    Tip 2 : Every skill must be mentioned.
    Tip 3 : Focus on skills, projects and experiences more.

    Final outcome of the interviewSelected

    Skills evaluated in this interview

    I applied via Referral and was interviewed in May 2017. There were 4 interview rounds.

    Interview Questionnaire 

    2 Questions

    • Q1. What Is job timing
    • Q2. What is salray cycl
    • Ans. 

      Salary cycle refers to the frequency at which employees are paid, such as weekly, bi-weekly, or monthly.

      • Salary cycle can vary depending on the company's policies and practices.

      • Common salary cycles include weekly, bi-weekly (every two weeks), semi-monthly (twice a month), and monthly.

      • Some companies may also offer different salary cycles for different employee groups, such as hourly vs. salaried employees.

      • Understanding t...

    • Answered by AI

    Interview Preparation Tips

    Round: Resume Shortlist
    Experience: I do have 5yrs exp in sales i used to worked with many big company

    General Tips: I gave interview coz of my skill as per my skill i got selected
    Skills: Gd&t Symbols, Sales, Communication, Body Language, Problem Solving, Leadership, Presentation Skills, Time Management, Decision Making Skills
    Duration: <1 week

    I applied via Referral and was interviewed before Mar 2017. There were 6 interview rounds.

    Interview Questionnaire 

    2 Questions

    • Q1. Interview taken by hr
    • Q2. Myself, previous company, Experience

    Interview Preparation Tips

    Round: Test
    Experience: Aptitude test

    Round: Resume Shortlist
    Experience: I had given interview infront of Naveen Kumar Gagwani.
    He short listed my cv

    Round: Case Study Interview
    Experience: The interviewer asked me
    Can you sell me a mobile
    And I sold him.

    General Tips: It's has a selection procedure.
    You can attend interview with good level of confidence.
    Skills: MARKETING APTITUDE, Marketing, Communication, Body Language, Problem Solving, Analytical Skills, Presentation Skills
    Duration: <1 week

    I applied via Naukri.com and was interviewed before Mar 2017. There were 4 interview rounds.

    Interview Questionnaire 

    3 Questions

    • Q1. About Previous profile. The challenges in professional life
    • Q2. How long you would like to work in the company
    • Ans. 

      I am looking to establish a long-term career with the company and grow professionally.

      • I am committed to contributing to the company's success for the foreseeable future

      • I am eager to take on new challenges and responsibilities within the organization

      • I value stability and growth opportunities in my career

    • Answered by AI
    • Q3. About CTC

    Interview Preparation Tips

    Round: Resume Shortlist
    Experience: Based on education and previous work experience.

    Skills: Communication, Body Language, Analytical Skills, Presentation Skills
    Duration: >3 Months

    I applied via LinkedIn and was interviewed before Jul 2021. There were 2 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 

    (1 Question)

    • Q1. Knowledge about data summarisation.and some tools like Power bi and advance excel.

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Always speak first answer like perfect and effective answer without any hesitation...

    I applied via Job Portal and was interviewed before Oct 2020. There were 4 interview rounds.

    Interview Questionnaire 

    3 Questions

    • Q1. Data structure
    • Q2. Java concepts
    • Q3. Handson coding

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Get handson in any language but be confident

    I applied via Recruitment Consultant and was interviewed before Mar 2020. There were 3 interview rounds.

    Interview Questionnaire 

    1 Question

    • Q1. Normal intro

    Interview Preparation Tips

    Interview preparation tips for other job seekers - wear formal

    Swiggy Interview FAQs

    How many rounds are there in Swiggy Devops Engineer interview?
    Swiggy interview process usually has 2 rounds. The most common rounds in the Swiggy interview process are Technical.
    How to prepare for Swiggy Devops Engineer 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 Swiggy. The most common topics and skills that interviewers at Swiggy expect are Devops, Docker, Kubernetes, Linux and Ansible.
    What are the top questions asked in Swiggy Devops Engineer interview?

    Some of the top questions asked at the Swiggy Devops Engineer interview -

    1. How to check the open files in the linux without using l...read more
    2. Difference between http1.1 vs htt...read more
    3. What is grp...read more

    Tell us how to improve this page.

    Swiggy Devops Engineer Interview Process

    based on 1 interview

    Interview experience

    4
      
    Good
    View more

    Interview Questions from Similar Companies

    Udaan Interview Questions
    4.0
     • 334 Interviews
    Meesho Interview Questions
    3.7
     • 329 Interviews
    Info Edge Interview Questions
    3.9
     • 318 Interviews
    Lenskart Interview Questions
    3.2
     • 308 Interviews
    Zepto Interview Questions
    3.5
     • 226 Interviews
    BlackBuck Interview Questions
    3.8
     • 179 Interviews
    Uber Interview Questions
    4.2
     • 150 Interviews
    Tata 1mg Interview Questions
    3.6
     • 147 Interviews
    Digit Insurance Interview Questions
    3.9
     • 142 Interviews
    View all
    Swiggy Devops Engineer Salary
    based on 8 salaries
    ₹5.1 L/yr - ₹12 L/yr
    35% more than the average Devops Engineer Salary in India
    View more details
    Delivery Boy
    874 salaries
    unlock blur

    ₹0.4 L/yr - ₹5 L/yr

    Fleet Manager
    581 salaries
    unlock blur

    ₹2.5 L/yr - ₹6 L/yr

    Sales Manager
    563 salaries
    unlock blur

    ₹2 L/yr - ₹9 L/yr

    Assistant Manager
    510 salaries
    unlock blur

    ₹3 L/yr - ₹13.8 L/yr

    Assistant Store Manager
    430 salaries
    unlock blur

    ₹1.8 L/yr - ₹4 L/yr

    Explore more salaries
    Compare Swiggy with

    Zomato

    3.8
    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