Upload Button Icon Add office photos

Filter interviews by

Clear (1)

Palo Alto Networks DevOps Site Reliability Engineer Interview Questions, Process, and Tips

Updated 23 Apr 2023

Palo Alto Networks DevOps Site Reliability Engineer Interview Experiences

1 interview found

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Mar 2023. 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 Resume tips
Round 2 - Technical 

(4 Questions)

  • Q1. What is HA proxy
  • Ans. 

    HAProxy is a free, open-source load balancer and proxy server software.

    • HAProxy stands for High Availability Proxy.

    • It is used to distribute traffic across multiple servers to ensure high availability and scalability.

    • It supports TCP and HTTP-based applications.

    • It can perform SSL/TLS termination, content switching, and request routing.

    • It is highly configurable and can be used in various deployment scenarios.

    • Examples of co...

  • Answered by AI
  • Q2. What is Rest Api
  • Ans. 

    REST API is a web-based API that uses HTTP requests to access and manipulate data.

    • REST stands for Representational State Transfer

    • It is an architectural style for building web services

    • It uses HTTP methods like GET, POST, PUT, DELETE to perform operations on resources

    • Responses are usually in JSON or XML format

    • Examples include Twitter API, Facebook API, and Google Maps API

  • Answered by AI
  • Q3. When will you use tcp and UDP
  • Ans. 

    TCP for reliable data transfer, UDP for low latency and loss tolerance

    • TCP is used when reliable data transfer is required, such as in file transfers or email communication

    • UDP is used when low latency and loss tolerance are more important than reliability, such as in online gaming or video streaming

    • TCP is connection-oriented while UDP is connectionless

    • TCP provides flow control and congestion control while UDP does not

    • TC...

  • Answered by AI
  • Q4. What is sha how will you use it
  • Ans. 

    SHA is a cryptographic hash function used for data integrity and security.

    • SHA stands for Secure Hash Algorithm

    • It generates a fixed-length hash value from input data

    • Used for data integrity, digital signatures, and password storage

    • Examples include SHA-1, SHA-256, SHA-512

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Palo Alto has a very bad hiring system I literally answered everything they asked still I got email that I was not selected

Skills evaluated in this interview

Interview questions from similar companies

I was interviewed before Mar 2021.

Round 1 - Technical 

(3 Questions)

  • Q1. How to check a number is power of 2
  • Ans. 

    To check if a number is a power of 2, we can use bitwise operations.

    • A power of 2 has only one bit set to 1, so we can use the bitwise AND operator to check if the number is a power of 2.

    • If n is a power of 2, then n & (n-1) will be 0.

    • For example, 8 (1000 in binary) is a power of 2, and 8 & 7 (0111 in binary) is 0.

  • Answered by AI
  • Q2. Sort a stack without using another data structure
  • Ans. 

    Sort a stack without using another data structure

    • Use recursion to pop the top element and insert it at the bottom of the remaining stack

    • Repeat until the stack is sorted in ascending order

    • Time complexity: O(n^2), space complexity: O(n) due to recursion

  • Answered by AI
  • Q3. Check weather array have continuous increasing than decreasing value
  • Ans. 

    Check if array has continuous increasing and decreasing values

    • Loop through the array and check if each element is greater than the previous one

    • Once you find the maximum element, check if the remaining elements are in decreasing order

    • If yes, return true else false

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Design a cricinfo (LLD)
  • Ans. 

    Design a cricinfo (LLD)

    • Identify the entities: players, teams, matches, scorecards, tournaments, etc.

    • Define the relationships between entities

    • Create a database schema to store the data

    • Implement APIs to fetch and update data

    • Design a UI to display the information

    • Consider scalability and performance

    • Ensure data security and privacy

  • Answered by AI
Round 3 - HR 

(3 Questions)

  • Q1. Share details of your previous job.
  • Q2. Why should we hire you?
  • Q3. What are your strengths and weaknesses?

Interview Preparation Tips

Interview preparation tips for other job seekers - Do study basic Data Structure questions and also prepare for Low level design.
Do work on behavioral questions too.

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
No response

I applied via Recruitment Consulltant and was interviewed in Jul 2023. There were 5 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 Resume tips
Round 2 - Coding Test 

Coding string related programming

Round 3 - Coding Test 

Hacker rank data structure linked list

Round 4 - Technical 

(1 Question)

  • Q1. System design high level
Round 5 - Coding Test 

Hacker rank data structure trees

Interview Preparation Tips

Interview preparation tips for other job seekers - They will ghost you even if you clear all round
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Assignment 

Was asked to understand a project in python and translate it to NodeJS. This had to be done during the interview with you explaining you thought process through every step.

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Feb 2022. There were 5 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 Resume tips
Round 2 - Coding Test 

Hacker rank codinv problems level medium

Round 3 - Technical 

(1 Question)

  • Q1. Coding round again D and S
Round 4 - Technical 

(1 Question)

  • Q1. System design tech dummies
Round 5 - HR 

(1 Question)

  • Q1. Common questions , why we should hire you , achievements

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for D and S and system design depends on team and role in terms of difficulty
Round 1 - Technical 

(2 Questions)

  • Q1. Reverse linked list using the recursion
  • Ans. 

    Reverse a linked list using recursion

    • Create a recursive function that takes the head of the linked list as input

    • Base case: if the head is null or the next node is null, return the head

    • Recursively call the function with the next node as input

    • Set the next node's next pointer to the current node

    • Set the current node's next pointer to null

    • Return the new head of the reversed linked list

  • Answered by AI
  • Q2. Find max number in the linked list using stack.
  • Ans. 

    To find max number in linked list using stack.

    • Create an empty stack.

    • Traverse the linked list and push each element onto the stack.

    • Pop elements from the stack and compare with max value.

    • Return the max value.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basics. Be confident
. Give answer properly

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Apr 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all Resume tips
Round 2 - Aptitude Test 

Aptitude relates questions... It was modratley difficult

Round 3 - Technical 

(3 Questions)

  • Q1. Twchnical rouns. Qas easy... Asked questions oc C and some. Projects
  • Q2. Reverse linked list using recursion
  • Ans. 

    Reverse a linked list using recursion

    • Create a recursive function that takes the head of the linked list as input

    • Base case: if the head is null or the next node is null, return the head

    • Recursively call the function with the next node as input

    • Set the next node's next pointer to the current node

    • Set the current node's next pointer to null

    • Return the new head of the reversed linked list

  • Answered by AI
  • Q3. What is difference between mutex semaphore?
  • Ans. 

    Mutex is a locking mechanism to ensure exclusive access to a shared resource, while semaphore is a signaling mechanism to control access to a shared resource.

    • Mutex allows only one thread to access the shared resource at a time, while semaphore can allow multiple threads to access the shared resource simultaneously.

    • Mutex is binary, meaning it has only two states - locked and unlocked, while semaphore can have multiple s...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just give your best.
. Interview will be easy
Rest all was good

Skills evaluated in this interview

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

I applied via Referral and was interviewed before Oct 2022. There were 5 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all Resume tips
Round 2 - Aptitude Test 

Checked general aptitude

Round 3 - Coding Test 

Multiple coding rounds each tougher than the last

Round 4 - Technical 

(1 Question)

  • Q1. Mostly related to Python and Kubernetes
Round 5 - HR 

(1 Question)

  • Q1. Mostly related to salaries
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Coding Test 

One take home assignment

Round 2 - Technical 

(2 Questions)

  • Q1. Questions on JS basics
  • Q2. Angular deep dive
Round 3 - HR 

(1 Question)

  • Q1. General discussion with hiring manager

Interview Preparation Tips

Interview preparation tips for other job seekers - Just focus more on JS fundamentals, Angular, NgRx, RxJs you will be good.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Referral and was interviewed before Sep 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Two problems, one easy and another medium level.

Round 2 - Technical 

(2 Questions)

  • Q1. One linked list Problem
  • Ans. 

    Reverse a linked list

    • Iterate through the linked list and reverse the pointers

    • Use three pointers to keep track of current, previous, and next nodes

    • Update the pointers accordingly to reverse the list

  • Answered by AI
  • Q2. Questions on project and solutions we porvided
Round 3 - Behavioral 

(2 Questions)

  • Q1. About the current project
  • Q2. Some behavioural questions

Skills evaluated in this interview

Contribute & help others!
anonymous
You can choose to be anonymous

Palo Alto Networks Interview FAQs

How many rounds are there in Palo Alto Networks DevOps Site Reliability Engineer interview?
Palo Alto Networks interview process usually has 2 rounds. The most common rounds in the Palo Alto Networks interview process are Resume Shortlist and Technical.
What are the top questions asked in Palo Alto Networks DevOps Site Reliability Engineer interview?

Some of the top questions asked at the Palo Alto Networks DevOps Site Reliability Engineer interview -

  1. What is sha how will you use...read more
  2. When will you use tcp and ...read more
  3. What is HA pr...read more

Recently Viewed

SALARIES

Bottomline

INTERVIEWS

Palo Alto Networks

No Interviews

INTERVIEWS

Grant Thornton Bharat

No Interviews

INTERVIEWS

Pattern Technologies

No Interviews

SALARIES

Microsoft Corporation

INTERVIEWS

Palo Alto Networks

No Interviews

INTERVIEWS

Palo Alto Networks

No Interviews

INTERVIEWS

Palo Alto Networks

No Interviews

SALARIES

NextGen Healthcare

INTERVIEWS

Flexera Software

No Interviews

Tell us how to improve this page.

Palo Alto Networks DevOps Site Reliability Engineer Interview Process

based on 1 interview

Interview experience

1
  
Bad
View more

Interview Questions from Similar Companies

Cisco Interview Questions
4.1
 • 372 Interviews
CitiusTech Interview Questions
3.4
 • 270 Interviews
Altimetrik Interview Questions
3.8
 • 215 Interviews
Xoriant Interview Questions
4.1
 • 180 Interviews
Globant Interview Questions
3.8
 • 172 Interviews
ThoughtWorks Interview Questions
3.9
 • 146 Interviews
Apexon Interview Questions
3.3
 • 137 Interviews
View all
Senior Staff Engineer
50 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
30 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

TAC Engineer
30 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Principal Engineer
29 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Staff Engineer
27 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Palo Alto Networks with

Check Point Software Technologies

3.8
Compare

Fortinet

4.2
Compare

FireEye

4.3
Compare

Gen

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