Upload Button Icon Add office photos

Filter interviews by

Brocade Communications Systems Interview Questions and Answers

Updated 9 Jul 2024

Brocade Communications Systems Interview Experiences

Popular Designations

4 interviews found

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

I applied via LinkedIn and was interviewed before Jul 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

It was a technical & aptitude pen-paper test. the paper contained 45 questions to be answered in 1 hr

Round 2 - Technical 

(3 Questions)

  • Q1. Related to linked list coding
  • Q2. From graph search algorithm
  • Q3. From pointer applicability in linked list
  • Ans. 

    Pointers are used in linked lists to store memory addresses of next nodes, allowing for efficient traversal and manipulation.

    • Pointers in linked lists point to the next node in the sequence

    • They allow for constant time insertion and deletion operations

    • Example: Node *next; points to the next node in a linked list

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Brocade Communications Systems Software Engineer interview:
  • linked list
  • graph search
  • pointers

Skills evaluated in this interview

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (181)

I applied via Company Website and was interviewed in Jun 2022. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. He should have good skills,he should be quick learning capability and hard working.

Interview Preparation Tips

Topics to prepare for Brocade Communications Systems Management Trainee interview:
  • Communication Skills
  • Computer Skills
  • Networking
Interview preparation tips for other job seekers - Dont ask questions in english.If person is not in fluent in english .Then he can't be selected for that job.If he has the ability others doesn't have that person is out of that job right.

Management Trainee Interview Questions asked at other Companies

Q1. What do you mean by balance sheet reconciliation could you explain briefly?
View answer (45)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Jun 2022. There were 6 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 

Networking, Coding problems

Round 3 - One-on-one 

(1 Question)

  • Q1. Coding Questions
Round 4 - One-on-one 

(1 Question)

  • Q1. Networking and OS
Round 5 - Technical 

(1 Question)

  • Q1. General OS and Networking
Round 6 - HR 

(1 Question)

  • Q1. Why did you leave earlier Companies

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (181)

Programmer Analyst-3 Interview Questions & Answers

user image vaishali k

posted on 23 Jul 2021

Interview Questionnaire 

2 Questions

  • Q1. What were the various projects handled in previous organization.
  • Q2. T&H projects

Brocade Communications Systems interview questions for popular designations

 Software Engineer

 (2)

 Management Trainee

 (1)

Interview questions from similar companies

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

I was interviewed in Jan 2025.

Round 1 - Aptitude Test 

General knowledge and technical questions.

Round 2 - Technical 

(4 Questions)

  • Q1. What is your experience regarding interviews conducted by department heads?
  • Q2. What is your knowledge of quality management tools?
  • Q3. What is your knowledge of control plans and Failure Mode and Effects Analysis (FMEA)?
  • Q4. How to handle customer complaint?
Round 3 - HR 

(1 Question)

  • Q1. Discuss with salary.

Interview Preparation Tips

Interview preparation tips for other job seekers - There is an outstanding opportunity to learn and improve career prospects.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Jan 2025.

Round 1 - One-on-one 

(5 Questions)

  • Q1. Self introduction
  • Q2. Communication skills
  • Q3. Job orientedquestion
  • Q4. Your are computer student but Why you can choose this company
  • Ans. 

    I chose this company because of its reputation for excellent customer service and opportunities for growth in the tech industry.

    • I am passionate about technology and enjoy working with customers to solve their issues.

    • I have researched the company and believe in its values and commitment to employee development.

    • I see this role as a great opportunity to apply my technical skills in a customer-focused environment.

    • I am exci...

  • Answered by AI
  • Q5. How many languages you know
  • Ans. 

    I am fluent in three languages: English, Spanish, and French.

    • Fluent in English, Spanish, and French

    • Able to communicate effectively in all three languages

    • Experience in multilingual customer service roles

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected
Round 1 - Technical 

(2 Questions)

  • Q1. BOQ Knowledge Material knowledge Operation of a Project. SOP delay and Back up plan Vendor pool
  • Q2. Design Understanding
Round 2 - HR 

(2 Questions)

  • Q1. Current CTC which u geting
  • Ans. 

    My current CTC is $80,000 per year.

    • My current CTC is $80,000 per year.

    • I am currently earning $80,000 annually.

    • My current salary is $80,000 per year.

  • Answered by AI
  • Q2. Expected CTC
Round 3 - HR 

(2 Questions)

  • Q1. Offer and Terms and conditions
  • Q2. Joing date and notice period

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared as your experience
Support your reply with simple examples
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - One-on-one 

(6 Questions)

  • Q1. Difference b/w deep copy and shallow copy
  • Ans. 

    Deep copy creates a new copy of an object with all nested objects also copied, while shallow copy creates a new object with references to the original nested objects.

    • Deep copy creates a new object and recursively copies all nested objects, resulting in a completely independent copy.

    • Shallow copy creates a new object but only copies the references to nested objects, so changes in nested objects reflect in both the origin...

  • Answered by AI
  • Q2. Difference between foreach and map
  • Ans. 

    foreach is used to iterate over an array and perform a function on each element, while map creates a new array by applying a function to each element.

    • foreach does not return a new array, while map does

    • foreach is used for side effects, while map is used for transformation

    • Example: forEach - let numbers = [1, 2, 3]; numbers.forEach(num => console.log(num)); // prints 1, 2, 3

    • Example: map - let numbers = [1, 2, 3]; let doub...

  • Answered by AI
  • Q3. Pure impure pipe
  • Q4. Ngonchanges usage
  • Q5. Basic array methods
  • Q6. Difference null undefined empty values in js
  • Ans. 

    null is an intentional absence of any value, undefined means a variable has been declared but not assigned a value, and empty values are variables that have been assigned a value of empty string, empty array, or empty object.

    • null is used to represent the intentional absence of any value

    • undefined means a variable has been declared but not assigned a value

    • Empty values can be empty string (''), empty array ([]), or empty

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. How do agile methodologies function in B2B projects?
  • Ans. 

    Agile methodologies in B2B projects involve frequent communication, adaptability, and collaboration with stakeholders.

    • Agile methodologies in B2B projects prioritize customer collaboration and responding to change over following a strict plan.

    • Regular feedback from stakeholders helps in adjusting project scope and priorities in real-time.

    • Cross-functional teams work together closely to deliver incremental value to the B2B...

  • Answered by AI
  • Q2. What is your experience with barcode scanners?
  • Ans. 

    I have extensive experience working with barcode scanners in various automation projects.

    • Implemented barcode scanning functionality in warehouse management system to track inventory

    • Integrated barcode scanners with automated testing tools for regression testing

    • Utilized barcode scanners in manufacturing processes to improve efficiency and accuracy

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
-

I applied via Approached by Company and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. What is your experience with parallelizing transformers, and how do you approach splitting them across multiple devices to minimize latency?
  • Ans. 

    I have experience parallelizing transformers by splitting them across multiple devices to minimize latency.

    • I have utilized frameworks like TensorFlow and PyTorch to parallelize transformers.

    • I approach splitting transformers by dividing the input data into chunks and distributing them across devices.

    • I optimize communication overhead by minimizing data transfer between devices.

    • I leverage techniques like data parallelism ...

  • Answered by AI

Brocade Communications Systems Interview FAQs

How many rounds are there in Brocade Communications Systems interview?
Brocade Communications Systems interview process usually has 3 rounds. The most common rounds in the Brocade Communications Systems interview process are Technical, One-on-one Round and HR.
What are the top questions asked in Brocade Communications Systems interview?

Some of the top questions asked at the Brocade Communications Systems interview -

  1. from pointer applicability in linked l...read more
  2. He should have good skills,he should be quick learning capability and hard work...read more
  3. related to linked list cod...read more

Tell us how to improve this page.

Brocade Communications Systems Interview Process

based on 2 interviews

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

IBM Interview Questions
4.0
 • 2.4k Interviews
Cisco Interview Questions
4.1
 • 396 Interviews
Dell Interview Questions
4.0
 • 392 Interviews
VMware Software Interview Questions
4.4
 • 157 Interviews
NetApp Interview Questions
3.9
 • 64 Interviews
Fortinet Interview Questions
4.2
 • 12 Interviews
Aruba Networks Interview Questions
4.1
 • 8 Interviews
View all

Brocade Communications Systems Reviews and Ratings

based on 15 reviews

4.7/5

Rating in categories

4.7

Skill development

4.6

Work-life balance

4.7

Salary

4.6

Job security

4.7

Company culture

4.6

Promotions

4.7

Work satisfaction

Explore 15 Reviews and Ratings
Devops Engineer
6 salaries
unlock blur

₹6.4 L/yr - ₹8.5 L/yr

Software Engineer
5 salaries
unlock blur

₹4 L/yr - ₹4.9 L/yr

Software Engineer2
4 salaries
unlock blur

₹13 L/yr - ₹20.1 L/yr

Assistant Manager
3 salaries
unlock blur

₹11.4 L/yr - ₹14 L/yr

R&D Engineer
3 salaries
unlock blur

₹34 L/yr - ₹45.5 L/yr

Explore more salaries
Compare Brocade Communications Systems with

Cisco

4.1
Compare

Juniper Networks

4.2
Compare

Hewlett Packard Enterprise

4.2
Compare

Dell

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