Upload Button Icon Add office photos

Filter interviews by

Extreme Networks Software Engineer Interview Questions and Answers

Updated 15 Apr 2023

Extreme Networks Software Engineer Interview Experiences

2 interviews found

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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 - Technical 

(2 Questions)

  • Q1. Python basics and modules
  • Q2. Networking protocols basic networking

I applied via Naukri.com and was interviewed in Apr 2021. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Data plane packet forwarding Control plane packet forwarding In my case, mostly I worked in L2, so they asked more details abt L2..
  • Q2. C programming queue data structure Bit wise operation like swapping bytes for endianess Function pointer and calling using function ptr as art..

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong in whatever mentioned in resume and learn OS basics , C programming, data structures.. good technical interview
4rounds of technical as of now completed..
be confident

Software Engineer Interview Questions Asked at Other Companies

asked in Qualcomm
Q1. Bridge and torch problem : Four people come to a river in the nig ... read more
asked in Capgemini
Q2. In a dark room,there is a box of 18 white and 5 black gloves. You ... read more
asked in TCS
Q3. Find DuplicateYou have been given an integer array/list(ARR) of s ... read more
Q4. Tell me something about yourself. Define encapsulation. What is i ... read more
asked in Paytm
Q5. Puzzle : 100 people are standing in a circle .each one is allowed ... read more

Interview questions from similar companies

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

I applied via campus placement at BRACT's Vishwakarma Institute of Information Technology, Pune and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - One-on-one 

(4 Questions)

  • Q1. What is polymorphism
  • Ans. 

    Polymorphism is the ability of a function or method to behave differently based on the object it is acting upon.

    • Polymorphism allows objects of different classes to be treated as objects of a common superclass.

    • It enables a single interface to be used for different data types or classes.

    • Examples include method overloading and method overriding in object-oriented programming.

  • Answered by AI
  • Q2. Find missing number from nth number array.
  • Ans. 

    Find missing number from nth number array.

    • Iterate through the array and calculate the sum of all numbers

    • Calculate the sum of numbers from 1 to n using the formula n*(n+1)/2

    • Subtract the sum of array from the sum of numbers from 1 to n to find the missing number

  • Answered by AI
  • Q3. Explain inheritance and it types
  • Ans. 

    Inheritance is a concept in object-oriented programming where a class inherits properties and behaviors from another class.

    • Inheritance allows a class to reuse code from another class.

    • Types of inheritance include single inheritance, where a class inherits from only one parent class, and multiple inheritance, where a class inherits from multiple parent classes.

    • Example: Class B inherits from Class A, so Class B can access

  • Answered by AI
  • Q4. Find 2nd max elements from aaray
  • Ans. 

    Find 2nd max element from array of strings

    • Sort the array in descending order

    • Skip the first element (max element)

    • Return the second element

  • Answered by AI

Skills evaluated in this interview

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

Hacker rank, 3 questions with 1 hour duration

Round 2 - Technical 

(2 Questions)

  • Q1. Stack parenthesis matching
  • Q2. Linked List reversal
Round 3 - Behavioral 

(3 Questions)

  • Q1. Operating System basics
  • Q2. Behavorial questions
  • Q3. Networking Basics
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at RV College Of Engineering (RVCE) and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Coding Test 

It includes two DSA questions and some aptitude questions

Round 2 - One-on-one 

(3 Questions)

  • Q1. Introduce yourself
  • Q2. Give the maximum element at any point of time for after pop and push
  • Q3. Reverse a string
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Difficult online round

Round 2 - One-on-one 

(2 Questions)

  • Q1. Arrays from neetcode
  • Ans. 

    Arrays are a collection of strings in programming used to store multiple values under a single variable name.

    • Arrays are declared using square brackets []

    • Each element in an array is accessed by its index, starting from 0

    • Example: var fruits = ['apple', 'banana', 'orange']

  • Answered by AI
  • Q2. Linked list from neetcode
Round 3 - One-on-one 

(2 Questions)

  • Q1. Trees in neet code
  • Ans. 

    Trees in neet code refer to the implementation of tree data structures in coding challenges on the platform NeetCode.

    • Trees are a common data structure used in coding challenges to represent hierarchical relationships between data.

    • Common tree operations include traversal (inorder, preorder, postorder), insertion, deletion, and searching.

    • Examples of tree-related coding challenges on NeetCode include implementing a binary...

  • Answered by AI
  • Q2. Trees in leet code
  • Ans. 

    Trees in leetcode are a common topic for coding interviews, involving various tree traversal and manipulation techniques.

    • Understand different tree traversal methods like inorder, preorder, and postorder.

    • Learn about common tree algorithms like finding the height, diameter, and lowest common ancestor.

    • Practice solving tree-related problems on leetcode to improve your skills.

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Inheritance, Contructord, Polymorphism etc
Round 2 - Technical 

(1 Question)

  • Q1. Exception Handing, Datatypes, Unix, Sql
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Nov 2023. There were 3 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 - Coding Test 

Basic coding questions were there related to string operations

Round 3 - Technical 

(4 Questions)

  • Q1. Technical questions were asked related to networking
  • Q2. What is tls handshake
  • Ans. 

    TLS handshake is the process of establishing a secure connection between a client and a server.

    • TLS handshake is initiated by the client and involves a series of steps to negotiate encryption parameters and exchange cryptographic keys.

    • It ensures the authenticity, integrity, and confidentiality of data transmitted over the network.

    • The handshake includes the ClientHello, ServerHello, Certificate Exchange, Key Exchange, an...

  • Answered by AI
  • Q3. What happens when you hit some url in browser
  • Ans. 

    When you hit a URL in a browser, a request is sent to the server and the server responds with the requested webpage.

    • Typically, the browser sends an HTTP GET request to the server.

    • The server processes the request and generates a response.

    • The response may include HTML, CSS, JavaScript, and other resources needed to render the webpage.

    • The browser receives the response and renders the webpage for the user to view and inter...

  • Answered by AI
  • Q4. What are different protocols you have worked on
  • Ans. 

    I have worked on various protocols including HTTP, TCP/IP, and MQTT.

    • HTTP (Hypertext Transfer Protocol) - used for communication between web browsers and servers

    • TCP/IP (Transmission Control Protocol/Internet Protocol) - the foundation of the internet

    • MQTT (Message Queuing Telemetry Transport) - a lightweight messaging protocol for IoT devices

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Aryaka Networks Software Engineer interview:
  • Networking
Interview preparation tips for other job seekers - Be confident and prepare networking questions

Skills evaluated in this interview

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

(1 Question)

  • Q1. Os , CPP , bit manipulation
Round 2 - One-on-one 

(1 Question)

  • Q1. Os , threads,cpp, python
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
-
Result
-

I applied via Campus Placement

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 tips
Round 2 - Technical 

(6 Questions)

  • Q1. Transformer is a static device and transfer power one from to another form current
  • Q2. Current transformer is a series conection and step up to high voltage
  • Q3. There are three function of smart grid electrical protection isolation and control
  • Ans. 

    The three functions of smart grid electrical protection isolation and control are fault detection, fault isolation, and service restoration.

    • Fault detection involves identifying any issues in the electrical system.

    • Fault isolation involves isolating the faulty component to prevent further damage.

    • Service restoration involves restoring power to the affected area as quickly as possible.

    • Examples of smart grid technologies th...

  • Answered by AI
  • Q4. Current is a flow in wire
  • Ans. 

    Yes, current is the flow of electric charge in a wire.

    • Current is measured in amperes (A).

    • It is caused by the movement of electrons in a conductor.

    • The direction of current flow is from positive to negative.

    • Current can be either direct current (DC) or alternating current (AC).

  • Answered by AI
  • Q5. Faraday law is a electro magnetic field induction working
  • Q6. Ohm's law is current between directly proportional voltage
  • Ans. 

    Ohm's law states that current is directly proportional to voltage.

    • Current increases as voltage increases

    • Resistance remains constant

    • Can be expressed as I = V/R

  • Answered by AI
Round 3 - Group Discussion 

SQP, PRS, SRT, TUV, is right answer VXW

Interview Preparation Tips

Topics to prepare for Sterlite Technologies Software Engineer interview:
  • 33/11 kv
Interview preparation tips for other job seekers - I am self motivated and hardworking person and hardware and networking and agricultural drone

Extreme Networks Interview FAQs

How many rounds are there in Extreme Networks Software Engineer interview?
Extreme Networks interview process usually has 2 rounds. The most common rounds in the Extreme Networks interview process are Resume Shortlist and Technical.
How to prepare for Extreme Networks Software 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 Extreme Networks. The most common topics and skills that interviewers at Extreme Networks expect are Python, Analytics, Automation, Linux and Ethernet.
What are the top questions asked in Extreme Networks Software Engineer interview?

Some of the top questions asked at the Extreme Networks Software Engineer interview -

  1. Data plane packet forwarding Control plane packet forwarding In my case, most...read more
  2. C programming queue data structure Bit wise operation like swapping bytes for ...read more
  3. Networking protocols basic network...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 Extreme Networks interview
Job Portal
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.
Extreme Networks Software Engineer Salary
based on 35 salaries
₹4.8 L/yr - ₹16 L/yr
20% more than the average Software Engineer Salary in India
View more details

Extreme Networks Software Engineer Reviews and Ratings

based on 3 reviews

5.0/5

Rating in categories

3.0

Skill development

5.0

Work-Life balance

4.0

Salary & Benefits

3.0

Job Security

2.0

Company culture

2.0

Promotions/Appraisal

3.0

Work Satisfaction

Explore 3 Reviews and Ratings
Software Engineer
35 salaries
unlock blur

₹4.8 L/yr - ₹16 L/yr

Senior Software Engineer
30 salaries
unlock blur

₹11.9 L/yr - ₹42.3 L/yr

Staff Software Engineer
21 salaries
unlock blur

₹26 L/yr - ₹40 L/yr

Associate Software Engineer
19 salaries
unlock blur

₹8 L/yr - ₹13 L/yr

QA Engineer
14 salaries
unlock blur

₹9.1 L/yr - ₹14 L/yr

Explore more salaries
Compare Extreme Networks with

Cisco

4.2
Compare

Juniper Networks

4.2
Compare

Aruba Networks

4.3
Compare

Hewlett Packard Enterprise

4.2
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview