Upload Button Icon Add office photos

PhonePe

Compare button icon Compare button icon Compare

Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

PhonePe Site Reliability Engineer Interview Questions, Process, and Tips

Updated 8 Feb 2024

PhonePe Site Reliability Engineer Interview Experiences

1 interview found

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Selected Selected

I applied via Campus Placement

Round 1 - Aptitude Test 

Had some basic SQL, Networking and Linux multiple choice questions along with two paragraphs at the end

Round 2 - Technical 

(5 Questions)

  • Q1. Linux Command to List CPU's in the system
  • Ans. 

    Command to list CPUs in Linux system

    • Use the 'lscpu' command to list detailed information about CPUs

    • Use the 'nproc' command to display the number of processing units available

    • Use the 'cat /proc/cpuinfo' command to view information about each CPU core

  • Answered by AI
  • Q2. How to copy contents of a file to another file?
  • Ans. 

    To copy contents of a file to another file, you can use file handling methods in programming languages.

    • Open the source file in read mode and the destination file in write mode

    • Read the contents of the source file and write them to the destination file

    • Close both files after the copying process is complete

  • Answered by AI
  • Q3. How to rename a file
  • Ans. 

    To rename a file, use the 'mv' command in the terminal or use a file manager with a rename option.

    • In the terminal, use the 'mv' command followed by the current file name and the new file name.

    • Example: mv oldfile.txt newfile.txt

    • In a file manager, right-click on the file and select the 'Rename' option.

    • Enter the new file name and press Enter.

  • Answered by AI
  • Q4. Why I used specific technologies in my Projects
  • Q5. Command to check free disk space
  • Ans. 

    Command to check free disk space

    • Use the 'df' command to check free disk space

    • The '-h' option displays the output in human-readable format

    • The '-T' option shows the filesystem type

    • The '-x' option excludes specific filesystem types

    • The '-t' option filters the output based on filesystem type

  • Answered by AI
Round 3 - Technical 

(4 Questions)

  • Q1. Explain OSI Model
  • Ans. 

    The OSI Model is a conceptual framework that standardizes the functions of a communication system into seven layers.

    • The OSI Model stands for Open Systems Interconnection Model.

    • It was developed by the International Organization for Standardization (ISO) in 1984.

    • The model is divided into seven layers: Physical, Data Link, Network, Transport, Session, Presentation, and Application.

    • Each layer has a specific function and in...

  • Answered by AI
  • Q2. Difference between NoSQL and SQL
  • Ans. 

    NoSQL is a non-relational database that provides flexible schema and horizontal scalability, while SQL is a relational database with structured schema and vertical scalability.

    • NoSQL databases are schema-less and can handle unstructured data.

    • SQL databases use structured query language and have predefined schemas.

    • NoSQL databases are horizontally scalable, allowing for easy distribution of data across multiple servers.

    • SQL...

  • Answered by AI
  • Q3. Command to check free memory space
  • Ans. 

    Command to check free memory space

    • Use the 'free' command to check free memory space

    • The 'free' command displays the total, used, and free memory space in the system

    • It also shows the amount of memory used for buffers and cache

    • The 'free' command can be used with options like '-h' for human-readable output

  • Answered by AI
  • Q4. Copy files to a remote machine
  • Ans. 

    To copy files to a remote machine, use a file transfer protocol like SCP or SFTP.

    • Use SCP (Secure Copy) command to copy files between local and remote machines

    • Example: scp /path/to/local/file username@remote:/path/to/destination

    • Use SFTP (Secure File Transfer Protocol) for interactive file transfers

    • Example: sftp username@remote, then use put command to upload files

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - The process is very easy, Just make sure you get selected in the aptitude and paragraph part.

Skills evaluated in this interview

Site Reliability Engineer Jobs at PhonePe

View all

Interview questions from similar companies

I appeared for an interview before Sep 2020.

Round 1 - Coding Test 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Medium

It was held in the evening around 4 pm. The camera was on during the test to invigilate the activity of students. On any doubtful action, warning was given. Platform was easy to code in.

  • Q1. 

    Replace 0s Problem Statement

    You are given a matrix where every element is either a 1 or a 0. The task is to replace 0 with 1 if it is surrounded by 1s. A 0 (or a set of 0s) is considered to be surrounded...

  • Ans. 

    Given a matrix of 1s and 0s, replace 0s surrounded by 1s with 1s.

    • Iterate through the matrix and check each 0 surrounded by 1s.

    • If a 0 is surrounded by 1s, replace it with 1.

    • Update the matrix in place without printing or returning it.

  • Answered by AI
  • Q2. 

    Ways To Make Coin Change

    Given an infinite supply of coins of varying denominations, determine the total number of ways to make change for a specified value using these coins. If it's not possible to make...

  • Ans. 

    The task is to determine the total number of ways to make change for a specified value using given denominations.

    • Use dynamic programming to keep track of the number of ways to make change for each value up to the target value.

    • Iterate through each denomination and update the number of ways to make change for each value based on the current denomination.

    • Handle base cases such as making change for 0 or using only the smal...

  • Answered by AI
  • Q3. 

    Minimum Subset Sum Difference Problem

    Given an array of non-negative integers, your task is to partition this array into two subsets such that the absolute difference between the sums of the subsets is mi...

  • Ans. 

    Given an array, partition it into two subsets to minimize the absolute difference between their sums.

    • Use dynamic programming to calculate all possible subset sums.

    • Iterate through the subset sums to find the minimum absolute difference.

    • Consider all possible partitions of the array elements.

    • Example: For input [1, 6, 11, 5], the minimum absolute difference is 1.

    • Example: For input [1, 2, 3], the minimum absolute difference

  • Answered by AI
Round 2 - Face to Face 

(4 Questions)

Round duration - 60 minutes
Round difficulty - Medium

It was held in the morning around 11:30 am. The interview was scheduled on google meet. The interviewer was quite friendly. He started by a brief introduction. This round was mostly based on Data structures and algorithms. At the end he asked some concepts of OOPs and Operating System.

  • Q1. 

    String Transformation Problem

    Given a string (STR) of length N, you are tasked to create a new string through the following method:

    Select the smallest character from the first K characters of STR, remov...

  • Ans. 

    Given a string and an integer K, create a new string by selecting the smallest character from the first K characters of the input string and repeating the process until the input string is empty.

    • Iterate through the input string, selecting the smallest character from the first K characters each time.

    • Remove the selected character from the input string and append it to the new string.

    • Continue this process until the input ...

  • Answered by AI
  • Q2. 

    SpecialStack Design Problem

    Design a stack that efficiently supports the getMin() operation in O(1) time with O(1) extra space. This stack should include the following operations: push(), pop(), top(), is...

  • Ans. 

    Design a stack that supports getMin() operation in O(1) time with O(1) extra space using inbuilt stack data structure.

    • Use two stacks - one to store the actual data and another to store the minimum value at each level.

    • When pushing a new element, check if it is smaller than the current minimum and update the minimum stack accordingly.

    • When popping an element, also pop the top element from the minimum stack if it matches t...

  • Answered by AI
  • Q3. 

    Geometric Progression Subsequences Problem Statement

    Given an array of ‘N’ integers, determine the number of subsequences of length 3 that form a geometric progression with a specified common ratio ‘R’.

    ...

  • Ans. 

    Count the number of subsequences of length 3 forming a geometric progression with a specified common ratio in an array of integers.

    • Iterate through the array and for each element, check for possible subsequences of length 3 with the given common ratio.

    • Use a hashmap to store the count of possible subsequences for each element as the middle element.

    • Return the total count of subsequences modulo 10^9 + 7.

    • Example: For input ...

  • Answered by AI
  • Q4. What are the conditions for a deadlock to occur?
  • Ans. 

    Deadlock occurs when two or more processes are waiting for each other to release resources, resulting in a standstill.

    • Two or more processes must be holding resources and waiting for resources held by other processes

    • Processes cannot proceed because they are stuck in a circular wait

    • Resources cannot be forcibly released by the operating system

    • Examples: Process A holds Resource 1 and waits for Resource 2, while Process B h

  • Answered by AI
Round 3 - Face to Face 

(2 Questions)

Round duration - 45 minutes
Round difficulty - Medium

It was held in the afternoon around 3pm. The interviewer was quite friendly. She started with my introduction. She asked 2-3 problems related to data structures and then asked about python libraries which I used in my projects.

  • Q1. 

    Group Anagrams Problem Statement

    Given an array or list of strings called inputStr, your task is to return the strings grouped as anagrams. Each group should contain strings that are anagrams of one anoth...

  • Ans. 

    Group anagrams in an array of strings based on their characters.

    • Iterate through each string in the input array/list.

    • For each string, sort the characters alphabetically to create a key for grouping.

    • Use a hashmap to group strings with the same key.

    • Return the grouped anagrams as separate arrays of strings.

  • Answered by AI
  • Q2. 

    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. 

    Find the K-th smallest element in a given array of distinct integers.

    • Sort the array in ascending order.

    • Return the element at index K-1 from the sorted array.

    • Handle edge cases like K being out of bounds or array being empty.

  • Answered by AI
Round 4 - Face to Face 

(1 Question)

Round duration - 45 minutes
Round difficulty - Medium

It was held in the evening around 6 pm. The interviewer started with a brief introduction of me. He asked about my projects and then asked some concepts of Operating System and problems related to data structures. I had projects of Machine Learning and Deep learning. Discussion about projects continued for about 25 minutes.

  • Q1. 

    Middle of a Linked List

    You are given the head node of a singly linked list. Your task is to return a pointer pointing to the middle of the linked list.

    If there is an odd number of elements, return the ...

  • Ans. 

    Return the middle element of a singly linked list, or the one farther from the head node if there are even elements.

    • Traverse the linked list with two pointers, one moving twice as fast as the other

    • When the fast pointer reaches the end, the slow pointer will be at the middle

    • Return the element pointed to by the slow pointer

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Dr. B.R. Ambedkar National Institute of Technology. I applied for the job as Software Engineer in NoidaEligibility criteriaAbove 7 cgpaPaytm (One97 Communications Limited) interview preparation:Topics to prepare for the interview - Data Structures and Algorithms, OOPS, C programming, C++ Programming, Machine Learning, Operating System, Deep learning.Time required to prepare for the interview - 10 monthsInterview preparation tips for other job seekers

Tip 1 : Practice problems related to data structures and algorithms 
Tip 2 : Brush up fundamental concepts deeply
Tip 3 : You should have a deep knowledge of your projects and related technology.

Application resume tips for other job seekers

Tip 1 : It should not be more than a page.
Tip 2 : It should be precise and university projects or prior experience like industrial training or internship should be mentioned.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Referral and was interviewed before May 2021. There were 3 interview rounds.

Round 1 - Coding Test 

I dont remember exact questions but they are like leetcode easy and medium

Round 2 - One-on-one 

(2 Questions)

  • Q1. How web/internet works?
  • Ans. 

    The web/internet is a network of interconnected devices that communicate through standardized protocols to share information.

    • Devices connect to the internet through ISPs

    • Data is transmitted through packets using TCP/IP protocols

    • Web browsers use HTTP/HTTPS protocols to request and receive web pages

    • DNS servers translate domain names to IP addresses

    • Web servers host web pages and respond to requests

    • Search engines use web cr

  • Answered by AI
  • Q2. Coding questions with complete explanation
Round 3 - One-on-one 

(1 Question)

  • Q1. Coding and managerial round similar to round 2

Interview Preparation Tips

Interview preparation tips for other job seekers - practice coding well and some development skill. you are good to go

Skills evaluated in this interview

Interview Questionnaire 

2 Questions

  • Q1. What is solid principles
  • Ans. 

    SOLID principles are a set of five design principles for writing maintainable and scalable code.

    • S - Single Responsibility Principle

    • O - Open/Closed Principle

    • L - Liskov Substitution Principle

    • I - Interface Segregation Principle

    • D - Dependency Inversion Principle

  • Answered by AI
  • Q2. What are internal working of has set
  • Ans. 

    HashSet is a collection that stores unique elements by using a hash table.

    • Elements are stored based on their hash code

    • Uses hashCode() and equals() methods to check for duplicates

    • Does not maintain insertion order

    • Allows null values

    • Example: HashSet set = new HashSet<>(); set.add("apple"); set.add("banana");

Answered by AI

Skills evaluated in this interview

I applied via Campus Placement and was interviewed before Jun 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Normal coding question medium level , approach focusing rounds actually how you get up to result

Interview Preparation Tips

Interview preparation tips for other job seekers - "GfG must do" should be solved properly alteast , otherwise go keep on practicing on any platform .

I applied via Company Website and was interviewed in Oct 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Rate Limiter Design, Code Hash map from scratch, Integer to roman, rectangle overlap, repeating non overlapping subsequence in a given string
  • Q2. Few questions related to SQL, Merchant Onboard ing design, Restaurant design

Interview Preparation Tips

Interview preparation tips for other job seekers - Leetcode, Interviewbit PayPal questions

I appeared for an interview before Dec 2020.

Round 1 - Video Call 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Easy

The interview was held in the evening on a weekday, Interview was nice and quite experienced, he asked me about my previous experience in the area and they told me about the team and work for which they were hiring, we did some discussion on that. Meanwhile, I was also asked a few questions on Database and SQL.

  • Q1. 

    Find Magic Index in Sorted Array

    Given a sorted array A consisting of N integers, your task is to find the magic index in the given array, where the magic index is defined as an index i such that A[i] = i...

  • Ans. 

    Find the magic index in a sorted array where A[i] = i.

    • Iterate through the array and check if A[i] = i for each index i

    • Utilize binary search for a more efficient solution

    • Handle cases where there are multiple magic indices or none at all

  • Answered by AI
Round 2 - Coding Test 

(1 Question)

Round duration - 60 minutes
Round difficulty - Medium

The interview was in the afternoon. There were some glitches with the teams meeting but it got sorted out in a few minutes. This round was purely coding based. He started with questions on arrays, linked lists, and string manipulation with an increasing level of hardness. The tricky part was that the online editor I was given for writing the code was not an IDE but a simple text editor, so I wasn't getting any help in terms of code completion or syntax errors or syntax highlighting.

  • Q1. 

    Find All Pairs Adding Up to Target

    Given an array of integers ARR of length N and an integer Target, your task is to return all pairs of elements such that they add up to the Target.

    Input:

    The first line ...
  • Ans. 

    The task is to find all pairs of elements in an array that add up to a given target.

    • Iterate through the array and for each element, check if the difference between the target and the element exists in a hash set.

    • If it exists, add the pair to the result. If not, add the element to the hash set.

    • Handle cases where the same element is used twice in a pair.

    • Return (-1, -1) if no pair is found.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Software Engineer in BangaloreEligibility criteriaNone, as I am experienced professionalPaypal interview preparation:Topics to prepare for the interview - Data structures, Algorithms, System Design, Javascript, Database, OOPsTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Always keep your focus on learning the basics, they should be rock solid
Tip 2 : Don't try to cram things days or weeks before interviews, that never helps. Try to learn little by little every day incrementally.
Tip 3 : Don't try to target any specific company, it almost never works out, just stay true to yourself and keep doing the hard work, opportunity will come to you eventually.
Tip 4 : If you need to prepare in a short time, I would suggest doing the 30-day interview challenge on Leetcode

Application resume tips for other job seekers

Tip 1 : Keep it short and simple, don't clutter with lots of text, try to convey things using bullet points instead of paragraphs
Tip 2 : Don't use fancy graphics and make sure the resume is not more than 1 page (or maybe 2 in case you have more experience)

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview Questionnaire 

2 Questions

  • Q1. Coding skills checked
  • Q2. Get the 3rd highest salary from the table

Interview Questionnaire 

1 Question

  • Q1. How is MongoDB scalable?
  • Ans. 

    MongoDB is scalable due to its ability to horizontally partition data across multiple servers.

    • MongoDB uses sharding to distribute data across multiple servers.

    • Sharding allows for horizontal scaling by adding more servers to the cluster.

    • MongoDB also supports replica sets for high availability and fault tolerance.

    • Indexes can be created on any field in a MongoDB document, allowing for efficient querying of large datasets.

  • Answered by AI

Skills evaluated in this interview

I applied via Company Website and was interviewed in Jan 2021. There were 5 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Basics of Data structures
  • Q2. Basics on oops

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well on Data Structures and oops concept in depth

PhonePe Interview FAQs

How many rounds are there in PhonePe Site Reliability Engineer interview?
PhonePe interview process usually has 3 rounds. The most common rounds in the PhonePe interview process are Technical and Aptitude Test.
How to prepare for PhonePe Site Reliability 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 PhonePe. The most common topics and skills that interviewers at PhonePe expect are MySQL, Financial Services, Perl, Linux and Medical Insurance.
What are the top questions asked in PhonePe Site Reliability Engineer interview?

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

  1. How to copy contents of a file to another fi...read more
  2. Linux Command to List CPU's in the sys...read more
  3. Command to check free disk sp...read more

Tell us how to improve this page.

PhonePe Site Reliability Engineer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Paytm Interview Questions
3.3
 • 752 Interviews
PayPal Interview Questions
3.9
 • 207 Interviews
HighRadius Interview Questions
2.9
 • 184 Interviews
Fiserv Interview Questions
3.0
 • 173 Interviews
Razorpay Interview Questions
3.6
 • 148 Interviews
Visa Interview Questions
3.5
 • 138 Interviews
KFintech Interview Questions
3.5
 • 138 Interviews
Angel One Interview Questions
4.0
 • 135 Interviews
MasterCard Interview Questions
3.9
 • 134 Interviews
View all
PhonePe Site Reliability Engineer Salary
based on 34 salaries
₹12 L/yr - ₹26 L/yr
23% more than the average Site Reliability Engineer Salary in India
View more details

PhonePe Site Reliability Engineer Reviews and Ratings

based on 5 reviews

4.3/5

Rating in categories

4.4

Skill development

3.8

Work-life balance

3.8

Salary

3.4

Job security

3.6

Company culture

3.4

Promotions

3.9

Work satisfaction

Explore 5 Reviews and Ratings
Site Reliability Engineer - 1

Pune

0-6 Yrs

Not Disclosed

Site Reliability Engineer

Bangalore / Bengaluru

4-8 Yrs

Not Disclosed

Site Reliability Engineer

Bangalore / Bengaluru

1-6 Yrs

Not Disclosed

Explore more jobs
Key Accounts Executive
686 salaries
unlock blur

₹2.8 L/yr - ₹7.5 L/yr

Territory Sales Manager
545 salaries
unlock blur

₹4.7 L/yr - ₹10.5 L/yr

Business Development Executive
514 salaries
unlock blur

₹1.1 L/yr - ₹5.1 L/yr

Business Development Associate
318 salaries
unlock blur

₹2.4 L/yr - ₹5.9 L/yr

Software Engineer
309 salaries
unlock blur

₹12 L/yr - ₹47 L/yr

Explore more salaries
Compare PhonePe with

Paytm

3.3
Compare

Fiserv

3.0
Compare

KFintech

3.5
Compare

Angel One

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