Upload Button Icon Add office photos

Filter interviews by

Clear (1)

WatchGuard Technologies Software Developer Intern Interview Questions, Process, and Tips

Updated 9 Jul 2024

Top WatchGuard Technologies Software Developer Intern Interview Questions and Answers

  • Q1. Party Over: Sorting Strings Problem Help Ninja sort the provided list of strings according to a specific condition given by a monster. The condition is to sort the strin ...read more
  • Q2. Treasure Hunt Problem Statement Alex and Rome are engaged in a treasure hunt game. Rome has a treasure box that Alex aims to open, using one of the N uniquely numbered k ...read more
  • Q3. Covid Vaccination Distribution Problem As the Government ramps up vaccination drives to combat the second wave of Covid-19, you are tasked with helping plan an effective ...read more

WatchGuard Technologies Software Developer Intern Interview Experiences

2 interviews found

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

I applied via Campus Placement and was interviewed in Jan 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

First round was aptitude + coding. 60 questions in 60 mi , 30 about aptitude (mostly quants) , 30 about coding mcqs related to dsa ,oops. There was negative marking also.

Round 2 - Technical 

(2 Questions)

  • Q1. 3 dsa question and 1 pattern question. Interviewer give me choice to select 3 data structures and asked about them with optimal solution and time complexity for each.
  • Q2. Oops questions, oops is very important for this company in cs fundamental subject
Round 3 - HR 

(1 Question)

  • Q1. There were basic questions, but it depends on their mood. Tell they all true and what inside your mind spontaneous. Do not take time to think.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare dsa and cs fundamental. Write in resume only those things for which you are confident about.

I was interviewed in Apr 2021.

Round 1 - Video Call 

(3 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

It was basically to check my problem solving and OOPS concepts. Also , concepts related to development were asked

  • Q1. 

    Alpha Pattern Problem Statement

    Ninja wants to create a pattern using characters in a specified number of rows ‘N’. The pattern arranges characters in increasing order, such that the first row has 1 chara...

  • Ans. 

    Generate a pattern of characters in increasing order based on the number of rows specified.

    • Iterate through each row from 1 to N

    • For each row, print the corresponding character repeated row number of times

    • Increment the character for each row

  • Answered by AI
  • Q2. 

    Covid Vaccination Distribution Problem

    As the Government ramps up vaccination drives to combat the second wave of Covid-19, you are tasked with helping plan an effective vaccination schedule. Your goal is...

  • Ans. 

    Maximize vaccines administered on a specific day while following certain rules.

    • Iterate through each test case and calculate the maximum number of vaccines distributed on the specified day.

    • Distribute vaccines in a way that the difference between consecutive days is at most 1 and the total does not exceed the maximum allowed.

    • Ensure to maximize the number of vaccines administered on the specified day.

    • Return the maximum nu...

  • Answered by AI
  • Q3. 

    Treasure Hunt Problem Statement

    Alex and Rome are engaged in a treasure hunt game. Rome has a treasure box that Alex aims to open, using one of the N uniquely numbered keys placed by Rome in boxes numbere...

  • Ans. 

    Given a list of key numbers in sequentially numbered boxes, help Alex determine the box containing the correct key.

    • Iterate through the list of key numbers and compare each with the target key number.

    • Use binary search for efficient search in the sorted list of key numbers.

    • Return the box number if the correct key is found, otherwise indicate that it is not present.

  • Answered by AI
Round 2 - Video Call 

(2 Questions)

Round duration - 90 Minutes
Round difficulty - Easy

It was an HR cum Technical round taken by a senior member of the technical team

  • Q1. 

    Party Over: Sorting Strings Problem

    Help Ninja sort the provided list of strings according to a specific condition given by a monster. The condition is to sort the strings based on the last letter. If two...

  • Ans. 

    Sort the list of strings based on the last character, then second last character, and so on.

    • Iterate through each string in the list

    • Sort the strings based on the last character first, then second last character, and so on

    • Use a custom sorting function to achieve the required sorting order

  • Answered by AI
  • Q2. 

    Mirror Diagonals Problem Statement

    Ninja has a square 2D array arr of size N x N. Your task is to determine if the numbers on the left diagonal are the same as those on the right diagonal of the matrix.

    ...

  • Ans. 

    Check if the numbers on the left diagonal are the same as those on the right diagonal of a square matrix.

    • Iterate through the matrix to compare the numbers on the left and right diagonals.

    • Keep track of the numbers on both diagonals and check for equality.

    • Return 'true' if the diagonals are equal, otherwise return 'false'.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Chitkara University. Eligibility criteriaCGPA no less than 8 in all the semsWatchGuard Technologies interview preparation:Topics to prepare for the interview - Dynamic Programming, Data Structures, OOPS, DBMS, Operating SystemTime required to prepare for the interview - 6 MonthsInterview preparation tips for other job seekers

Tip 1 : Stay Calm & Composed during the Interview
Tip 2 : Prepare for OOPS & DSA well
Tip 3 : Make at least 2 to 3 projects

Application resume tips for other job seekers

Tip 1 : Make a concise & precise resume.
Tip 2 : Do not add too many projects. Add only 2-3 good projects

Final outcome of the interviewSelected

Skills evaluated in this interview

Software Developer Intern Interview Questions Asked at Other Companies

Q1. Sum of Maximum and Minimum Elements Problem Statement Given an ar ... read more
asked in Amazon
Q2. Fish Eater Problem Statement In a river where water flows from le ... read more
asked in Apple
Q3. Kevin and his Fruits Problem Statement Kevin has 'N' buckets, eac ... read more
asked in CommVault
Q4. Sliding Maximum Problem Statement Given an array of integers ARR ... read more
Q5. Reverse Words in a String: Problem Statement You are given a stri ... read more

Interview questions from similar companies

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

(1 Question)

  • Q1. Data structures, Algorithm
Interview experience
1
Bad
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Not Selected

I applied via Company Website and was interviewed in May 2024. There was 1 interview round.

Round 1 - Assignment 

The task was a Codility type

I was interviewed before Jan 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 70 Minutes
Round difficulty - Medium

This was an Online Coding+MCQ round where we had a total of 50 MCQ questions and 1 coding problem. The coding problem was of easy to medium level but was a bit implementation heavy.

  • Q1. 

    LRU Cache Design Question

    Design a data structure for a Least Recently Used (LRU) cache that supports the following operations:

    1. get(key) - Return the value of the key if it exists in the cache; otherw...

  • Ans. 

    Design a Least Recently Used (LRU) cache data structure that supports get and put operations with capacity constraint.

    • Implement a doubly linked list to maintain the order of recently used keys.

    • Use a hashmap to store key-value pairs for quick access.

    • When capacity is reached, evict the least recently used item before inserting a new item.

    • Update the position of a key in the linked list whenever it is accessed or updated.

    • H...

  • Answered by AI
Round 2 - Face to Face 

(3 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

This round had 1 coding question in which I was first required to explain my approach and then discuss the time and space complexities. After this , some basic questions from OOPS and Java were asked.

  • Q1. 

    Detect and Remove Loop in Linked List

    For a given singly linked list, identify if a loop exists and remove it, adjusting the linked list in place. Return the modified linked list.

    Expected Complexity:

    A...

  • Ans. 

    Detect and remove loop in a singly linked list in place with O(n) time complexity and O(1) space complexity.

    • Use Floyd's Cycle Detection Algorithm to identify the loop in the linked list.

    • Once the loop is detected, use two pointers to find the start of the loop.

    • Adjust the pointers to remove the loop and return the modified linked list.

  • Answered by AI
  • Q2. What is the difference between ArrayList and LinkedList in Java?
  • Ans. 

    ArrayList is implemented using a dynamic array while LinkedList is implemented using a doubly linked list.

    • ArrayList provides fast random access but slow insertion and deletion operations.

    • LinkedList provides fast insertion and deletion operations but slow random access.

    • Example: ArrayList is suitable for scenarios where frequent access and traversal of elements is required, while LinkedList is suitable for scenarios wher...

  • Answered by AI
  • Q3. What is the difference between abstraction and inheritance?
  • Ans. 

    Abstraction focuses on hiding implementation details, while inheritance allows a class to inherit properties and behavior from another class.

    • Abstraction is the concept of hiding the complex implementation details and showing only the necessary features of an object.

    • Inheritance is a mechanism where a new class inherits properties and behavior from an existing class.

    • Abstraction is achieved through interfaces and abstract...

  • Answered by AI
Round 3 - Face to Face 

(3 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

This round had questions from OS and OOPS. The interviewer also tested my problem solving skills by asking me some puzzles in the end.

  • Q1. Can you explain piping in Unix/Linux?
  • Ans. 

    Piping in Unix/Linux allows the output of one command to be used as the input for another command.

    • Piping is done using the | symbol

    • Multiple commands can be piped together

    • Piping allows for the creation of complex command chains

    • Example: ls -l | grep txt

  • Answered by AI
  • Q2. What is a static variable in C?
  • Ans. 

    A static variable in C is a variable that retains its value between function calls.

    • Static variables are declared using the 'static' keyword.

    • They are initialized only once and retain their value throughout the program's execution.

    • Static variables have a default value of 0 if not explicitly initialized.

    • They are stored in the data segment of the program's memory.

    • Example: static int count = 0; declares a static variable 'c

  • Answered by AI
  • Q3. How can you measure exactly 4 liters of water using only a 3-liter can and a 5-liter can?

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPACisco 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 was interviewed before Nov 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 60 minutes
Round difficulty - Medium

The test was in the evening which was not too late. It was conducted on Hackerrank which is a very common platform and was hence familiar. There were 26 questions:
Q1: Coding Question
3 languages were allowed: c, java8, python3
Q2 - Q26: Multiple Choice Questions

  • Q1. 

    Intersection of Linked List Problem

    You are provided with two singly linked lists containing integers, where both lists converge at some node belonging to a third linked list.

    Your task is to determine t...

  • Ans. 

    Find the node where two linked lists merge, return -1 if no merging occurs.

    • Traverse both lists to find the lengths and the last nodes

    • Align the starting points of both lists by moving the longer list's pointer ahead by the difference in lengths

    • Traverse both lists simultaneously until a common node is found, which is the merging point

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in BangaloreEligibility criteriaDegree & Specialisation : B.Tech (Computer Science) B.Tech (Information Technology) B.Tech (Electronics & Communication) B.Tech (Electrical & Electronics) MCA M.Sc (Computer Science), Year of Graduation : 2021, CGPA : 7.5 and above, No Current BacklogsCisco interview preparation:Topics to prepare for the interview - Data Communication and Networks, Data Structures, SQL, OOPS, C, C++, JavaTime required to prepare for the interview - 2 MonthsInterview preparation tips for other job seekers

Tip 1 : Practice competitive programming as much as possible. It's never too late. Start now. But it is important to practice before appearing for the paper.
Tip 2 : Try to start making projects early on as it plays a major role during the interviews. 
Tip 3 : Be involved in extra curricular activities and events like Hackathons even if you don't win all of them. It gives a lot of exposure and experience.
Tip 4 : Don't lose touch with your core subjects.
Tip 5 : An internship/training from a good organization always helps (though don't lose hope if you don't have it).
Tip 6 : Focus on your communication skills along with your core subjects as it helps in giving a good impression during the interviews.

Application resume tips for other job seekers

Tip 1 : Maintain a good CGPA (above 7.5)
Tip 2 : Mention your projects as they are noticed in the interview
Tip 3 : Having an internship experience especially from a good organization helps
Tip 4 : Focus on extra curricular activities too
Tip 5 : Do not put things you are not sure about

Final outcome of the interviewRejected

Skills evaluated in this interview

I was interviewed before Jun 2021.

Round 1 - Face to Face 

(1 Question)

Round duration - 45 Minutes
Round difficulty - Medium

The interviewer was nice and he made me feel comfortable 
Topics :- Data structures, string manipulation and pointers
Timing :- Afternoon

  • Q1. 

    Remove Duplicates from String Problem Statement

    You are provided a string STR of length N, consisting solely of lowercase English letters.

    Your task is to remove all duplicate occurrences of characters i...

  • Ans. 

    Remove duplicate occurrences of characters in a given string.

    • Use a hash set to keep track of characters seen so far.

    • Iterate through the string and add non-duplicate characters to a new string.

    • Return the new string without duplicate characters.

  • Answered by AI
Round 2 - Face to Face 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Medium

The interviewer was very supportive and we had a good discussion regarding his role in cisco etc.
Questions on various topics were asked including my courses, resume and internship

  • Q1. 

    Binary Tree Traversals

    You are provided with a binary tree consisting of integer-valued nodes. The task is to compute the In-Order, Pre-Order, and Post-Order traversals for the given binary tree.

    Input:

    ...
  • Ans. 

    Compute In-Order, Pre-Order, and Post-Order traversals for a given binary tree.

    • Implement tree traversal algorithms like In-Order, Pre-Order, and Post-Order.

    • Use recursion to traverse the binary tree efficiently.

    • Maintain separate lists for each traversal type and return them as nested lists.

  • Answered by AI
Round 3 - HR 

(2 Questions)

Round duration - 30 Minutes
Round difficulty - Medium

It was the HR round

  • Q1. Can you describe your strengths and weaknesses?
  • Q2. What changes have you experienced in yourself since you joined college?

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - Intern in BangaloreEligibility criteriaAbove 7.5 CGPACisco interview preparation:Topics to prepare for the interview - Data Structures, OOPS, Pointers, Machine learning , Dynamic programmingTime required to prepare for the interview - 1 MonthInterview preparation tips for other job seekers

Tip 1 : Practice coding questions of each difficulty level in the ratio of 3:2:1 (easy:medium:hard)
Tip 2 : Make sure that you have thorough knowledge of your projects/internships

Application resume tips for other job seekers

Tip 1 : Update your resume to highlight your strengths
Tip 2 : Remove unnecessary courses in which you aren’t confident

Final outcome of the interviewSelected

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed before Mar 2023. There were 4 interview rounds.

Round 1 - Coding Test 

7 easy coding questions

Round 2 - Technical 

(1 Question)

  • Q1. Data Structures and Algorithms, SQL and DataBase design, Java concepts, OOPS concepts, OS
Round 3 - Technical 

(1 Question)

  • Q1. DSA Medium level, SQL Medium level, Java, OOPS
Round 4 - Technical 

(1 Question)

  • Q1. Managerial round - Resume, Projects, behavioural questions. Interview was very friendly

Interview Preparation Tips

Interview preparation tips for other job seekers - Preparation is key. Be strong in fundamentals
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Feb 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Basic question asked

Round 2 - One-on-one 

(4 Questions)

  • Q1. Computer networking based question
  • Q2. Dsa question based on graph and dp
  • Q3. Based on operating system
  • Q4. Function of oops
  • Ans. 

    Object-oriented programming paradigm that focuses on objects and classes for code organization and reusability.

    • Encapsulation: bundling data and methods that operate on the data into a single unit (object)

    • Inheritance: ability of a class to inherit properties and behavior from another class

    • Polymorphism: ability to present the same interface for different data types

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Behavior question asked

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare well practice on dsa question

I was interviewed in Aug 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 70 Minutes
Round difficulty - Medium

This was an Online Coding+MCQ round where we had a total of 50 MCQ questions and 1 coding problem. The coding problem was of easy to medium level but was a bit implementation heavy.

  • Q1. 

    Intersection of Linked List Problem

    You are provided with two singly linked lists containing integers, where both lists converge at some node belonging to a third linked list.

    Your task is to determine t...

  • Ans. 

    Find the node where two linked lists merge, return -1 if no merging occurs.

    • Traverse both lists to find their lengths and the difference in lengths

    • Move the pointer of the longer list by the difference in lengths

    • Traverse both lists simultaneously until they meet at the merging point

  • Answered by AI
Round 2 - Video Call 

(4 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

The interviewer asked 1 coding problem related to Sliding Window in this round and then the rest of the questions were preety much revolving around Computer Networks and OOPS.

  • Q1. 

    Longest Substring Without Repeating Characters Problem Statement

    Given a string S of length L, determine the length of the longest substring that contains no repeating characters.

    Example:

    Input:
    "abac...
  • Ans. 

    Find the length of the longest substring without repeating characters in a given string.

    • Use a sliding window approach to keep track of the longest substring without repeating characters.

    • Use a hashmap to store the index of each character as it appears in the string.

    • Update the start index of the window when a repeating character is found.

    • Calculate the maximum length of the window as you iterate through the string.

    • Return

  • Answered by AI
  • Q2. Can you explain what DNS is?
  • Ans. 

    DNS stands for Domain Name System, which translates domain names to IP addresses.

    • DNS is like a phone book for the internet, translating human-readable domain names (like google.com) to IP addresses (like 172.217.3.206).

    • It helps users access websites by typing in easy-to-remember domain names instead of complex IP addresses.

    • DNS servers store records of domain names and their corresponding IP addresses, allowing for effi...

  • Answered by AI
  • Q3. Explain why MAC addresses are necessary even though we have IP addresses.
  • Ans. 

    MAC addresses are necessary for local network communication and are used to uniquely identify devices on a network.

    • MAC addresses are used at the data link layer of the OSI model to identify devices within the same local network.

    • IP addresses are used at the network layer to identify devices across different networks.

    • MAC addresses are hardcoded into network interface cards (NICs) and are used for communication within the...

  • Answered by AI
  • Q4. How does C++ support polymorphism?
  • Ans. 

    C++ supports polymorphism through virtual functions and inheritance.

    • C++ supports polymorphism through virtual functions and inheritance

    • Virtual functions allow a function to be overridden in a derived class

    • Base class pointers can point to derived class objects, enabling polymorphic behavior

    • Example: class Animal { virtual void makeSound() { cout << 'Animal sound'; } }; class Dog : public Animal { void makeSound() {...

  • Answered by AI
Round 3 - Video Call 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Medium

This round had questions revolving around Computer Networks and Operating Systems.

Tip : Concepts related to Computer Networks is quite frequently asked in Cisco interviews . So its better to remain equipped with all the fundamental concepts. I prepared all the core subjects from my notes and for revision I would suggest the guided paths of Coding Ninjas , they are very useful for quick revision and also the questions over there are very frequently asked in interviews.

  • Q1. What is the ARP protocol?
  • Ans. 

    ARP stands for Address Resolution Protocol, used to map IP addresses to MAC addresses in a local network.

    • ARP is used to find the MAC address of a device based on its IP address

    • It operates at the data link layer of the OSI model

    • ARP requests are broadcasted to all devices on the local network

    • Example: When a device wants to communicate with another device on the same network, it uses ARP to find the MAC address of the des

  • Answered by AI
  • Q2. What are the different types of semaphores?
  • Ans. 

    Different types of semaphores include binary semaphores, counting semaphores, and mutex semaphores.

    • Binary semaphores: Can only have two states - 0 or 1. Used for mutual exclusion.

    • Counting semaphores: Can have multiple states. Used for synchronization among multiple processes.

    • Mutex semaphores: Similar to binary semaphores but with additional features like priority inheritance and deletion safety.

  • Answered by AI
  • Q3. What is thrashing in operating systems?
  • Ans. 

    Thrashing in operating systems is a situation where the system is spending more time swapping data between memory and disk than actually executing tasks.

    • Occurs when the system is overwhelmed with too many processes competing for limited resources

    • Results in a decrease in overall system performance

    • Can be alleviated by optimizing memory usage or adding more physical memory

    • Example: A system with insufficient RAM running mu

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPACisco 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

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

WatchGuard Technologies Interview FAQs

How many rounds are there in WatchGuard Technologies Software Developer Intern interview?
WatchGuard Technologies interview process usually has 3 rounds. The most common rounds in the WatchGuard Technologies interview process are Aptitude Test, Technical and HR.
What are the top questions asked in WatchGuard Technologies Software Developer Intern interview?

Some of the top questions asked at the WatchGuard Technologies Software Developer Intern interview -

  1. There were basic questions, but it depends on their mood. Tell they all true a...read more
  2. 3 dsa question and 1 pattern question. Interviewer give me choice to select 3 d...read more
  3. Oops questions, oops is very important for this company in cs fundamental subj...read more

Recently Viewed

INTERVIEWS

WatchGuard Technologies

No Interviews

INTERVIEWS

WatchGuard Technologies

No Interviews

INTERVIEWS

WatchGuard Technologies

No Interviews

SALARIES

Source Engineering And Technology Services

INTERVIEWS

WatchGuard Technologies

No Interviews

INTERVIEWS

WatchGuard Technologies

No Interviews

SALARIES

Meesho

INTERVIEWS

H&R Block

No Interviews

DESIGNATION

SALARIES

Renesas Electronics India

Tell us how to improve this page.

WatchGuard Technologies Software Developer Intern Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Cisco Interview Questions
4.1
 • 372 Interviews
Nvidia Interview Questions
3.7
 • 103 Interviews
BT Business Interview Questions
4.0
 • 79 Interviews
Arista Networks Interview Questions
4.2
 • 43 Interviews
McAfee Interview Questions
4.0
 • 30 Interviews
View all
Associate Software Engineer
20 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
19 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
16 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Full Stack Developer
7 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Technical Lead
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare WatchGuard Technologies with

Cisco

4.1
Compare

Palo Alto Networks

3.9
Compare

Fortinet

4.2
Compare

Sophos Technologies

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