Upload Button Icon Add office photos

Filter interviews by

Broadcom Interview Questions, Process, and Tips

Updated 1 Dec 2024

Top Broadcom Interview Questions and Answers

View all 33 questions

Broadcom Interview Experiences

Popular Designations

41 interviews found

C Developer Interview Questions & Answers

user image Anonymous

posted on 12 Sep 2024

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

I applied via Naukri.com and was interviewed in Sep 2024. There were 3 interview rounds.

Round 1 - Technical 

(6 Questions)

  • Q1. Merge intervals ( Leetcode)
  • Q2. Buy and sell stocks II (Leetcode)
  • Q3. Runtime polymorphism and how it works vptr and vtable
  • Ans. 

    Runtime polymorphism in C++ is achieved through virtual functions, vptr (virtual pointer), and vtable (virtual table).

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

    • Virtual functions are declared in a base class and overridden in derived classes to achieve polymorphism.

    • vptr is a pointer that points to the vtable of an object, allowing dynamic binding of virtual ...

  • Answered by AI
  • Q4. Which version of c++ you use
  • Ans. 

    I primarily use C++17, but I am familiar with earlier versions as well.

    • I am comfortable working with features introduced in C++17 such as structured bindings and constexpr if

    • I have experience with earlier versions like C++11 and C++14

    • I stay updated with the latest features and improvements in C++ standards

  • Answered by AI
  • Q5. Design patterns
  • Q6. Have you used any windows api's?
  • Ans. 

    Yes, I have used Windows API's extensively in my previous projects.

    • I have used Windows API's for tasks such as creating windows, handling messages, and interacting with system resources.

    • Examples include using functions like CreateWindow, SendMessage, and ReadFile.

    • I have also worked with specific Windows API's like Winsock for networking and WinINet for internet-related tasks.

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. One debugging question was given which will test knowledge on copy constructor, copy assignment, their return type move constructor, move assignment shallow copy, deep copy runtime polymorphism pointer ini...
  • Q2. What is dynamic_cast where it can fail and what will happen in that case
  • Ans. 

    dynamic_cast is a C++ operator used for safe downcasting of pointers and references in polymorphic classes.

    • dynamic_cast is used to safely downcast a pointer or reference from a base class to a derived class.

    • It can fail if the object being casted is not of the target type, in which case it returns a null pointer for pointers or throws a std::bad_cast exception for references.

    • Dynamic_cast can only be used with pointers o...

  • Answered by AI
Round 3 - Technical 

(5 Questions)

  • Q1. Same debugging question while making it advance how will you handle in case there is data member of pointer to int array in deep copy how will you ensure that it does delete previous data in case new opera...
  • Q2. What is union in c++
  • Ans. 

    Union in C++ is a data structure that allows storing different data types in the same memory location.

    • Unions are similar to structures but all members share the same memory location.

    • Only one member of a union can be accessed at a time.

    • Unions are useful when you need to store different data types in the same memory space.

    • Example: union MyUnion { int i; float f; };

    • Example: MyUnion u; u.i = 10; // Accessing integer member

  • Answered by AI
  • Q3. What is weak pointer
  • Ans. 

    Weak pointer is a type of smart pointer in C++ that does not control the lifetime of the object it points to.

    • Weak pointers are used to break circular references in shared pointers.

    • They do not increase the reference count of the object.

    • They are used in scenarios where the object may be deleted while there are still weak pointers pointing to it.

  • Answered by AI
  • Q4. What are processes and threads memory is allocated to what process or threads? what is mutex and semaphore how many threads/process can you launch at a time what is meaning of core in 4-core system what is...
  • Ans. 

    Processes and threads are units of execution in a computer system. Memory is allocated to processes. Mutex and semaphore are synchronization mechanisms. Core refers to a processing unit in a multi-core system. Context switching is the process of switching between different processes or threads.

    • Processes are independent units of execution with their own memory space and resources.

    • Threads are lightweight units of executi...

  • Answered by AI
  • Q5. What is this pointer tell me situation where only this pointer can be used nothing else will work

Skills evaluated in this interview

Top Broadcom C Developer Interview Questions and Answers

Q1. what are processes and threads memory is allocated to what process or threads? what is mutex and semaphore how many threads/process can you launch at a time what is meaning of core in 4-core system what is context switching?
View answer (1)

C Developer Interview Questions asked at other Companies

Q1. Merge K Sorted ArraysYou have been given ‘K’ different arrays/lists, which are sorted individually (in ascending order). You need to merge all the given arrays/list such that the output array/list should be sorted in ascending order. Input ... read more
View answer (3)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. Java interface classes packages multithreading
  • Q2. Java collections arraylist hashmap
  • Q3. Springboot microservices
Round 2 - Technical 

(2 Questions)

  • Q1. Redis collection string
  • Q2. Kafka partiotion

Software Development Engineer 3 Interview Questions asked at other Companies

Q1. What are triggers , where can they be used ? What is a mutating trigger problem , how can it be solved?
View answer (1)

Junior Technician Interview Questions & Answers

user image Mahesh mudisetty

posted on 11 Mar 2024

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

I was interviewed in Jul 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Transformers ups
  • Q2. Which type of transformer rating
  • Ans. 

    Transformer rating depends on the type of transformer, such as power rating, voltage rating, and current rating.

    • Transformer rating includes power rating, voltage rating, and current rating

    • Power rating is the maximum power that the transformer can handle

    • Voltage rating is the maximum voltage that the transformer can handle

    • Current rating is the maximum current that the transformer can handle

  • Answered by AI
Round 2 - One-on-one 

(2 Questions)

  • Q1. Transformers ups
  • Q2. DG fire extinguisher equipment

Interview Preparation Tips

Interview preparation tips for other job seekers - Nice 👍

Junior Technician Interview Questions asked at other Companies

Q1. What is Hydraulic valves? How can we operate that?
View answer (3)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via LinkedIn and was interviewed in Apr 2024. There were 3 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. DSA question on DP
  • Q2. Questions C# and SQL
Round 2 - One-on-one 

(1 Question)

  • Q1. DSA Question on DFS
Round 3 - One-on-one 

(1 Question)

  • Q1. LLD question on Designing a system

Interview Preparation Tips

Topics to prepare for Broadcom Senior Technical Staff Member 1 interview:
  • DSA
  • LLD
  • HLD
Interview preparation tips for other job seekers - 1st 2 rounds were good, interviewers were friendly. But LLD last round was taken by some senior guy who was trying to prove what he knows is only correct. LLD round was more like an exam not like discussing on a problem and getting a solution.

Senior Technical Staff Member 1 Interview Questions asked at other Companies

Q1. how to handle dynamic web elements
View answer (1)

Broadcom interview questions for popular designations

 Engineer

 (4)

 Software Engineer

 (4)

 Test Engineer

 (4)

 Software Development Engineer 3

 (2)

 C Developer

 (1)

 Data Analytics Engineer

 (1)

 Design Engineer

 (1)

 Dft Design Engineer

 (1)

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. What is SDLC and expalin its steps
  • Ans. 

    SDLC stands for Software Development Life Cycle, which is a process used by software development teams to design, develop, and test high-quality software.

    • 1. Planning: Define the scope, requirements, and objectives of the project.

    • 2. Analysis: Gather and analyze user requirements.

    • 3. Design: Create a detailed design plan for the software.

    • 4. Implementation: Develop the software based on the design plan.

    • 5. Testing: Test the...

  • Answered by AI
  • Q2. Regression testing and real time example
  • Ans. 

    Regression testing is retesting of software to ensure new changes do not negatively impact existing functionality.

    • Regression testing is performed to verify that recent code changes have not adversely affected existing features.

    • It involves running previously executed test cases to ensure that no new bugs have been introduced.

    • Example: After adding a new feature to a website, regression testing is done to make sure all ex...

  • Answered by AI

Skills evaluated in this interview

Test Engineer Interview Questions asked at other Companies

Q1. 1. What is the frame work u have worked and explain the framework with folder structure? 2. purely based on testing, different testing types like functional and non functional tests 3. real time scenarios like last min bugs before release? ... read more
View answer (4)

Get interview-ready with Top Broadcom Interview Questions

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

I was interviewed in Mar 2024.

Round 1 - Coding Test 

Leetcode easy problem based on binary search

Round 2 - Technical 

(2 Questions)

  • Q1. Design Stock Notification System
  • Ans. 

    Design a system to notify users about stock availability and changes.

    • Create a database to store stock information and user preferences.

    • Implement a notification system to alert users when stock levels change.

    • Allow users to set preferences for specific products or thresholds.

    • Consider using push notifications, emails, or SMS for notifications.

    • Include a user interface for managing preferences and viewing stock information.

  • Answered by AI
  • Q2. Design Snake & Ladder Game
  • Ans. 

    Design a Snake & Ladder game using arrays and logic.

    • Create a 10x10 grid representing the game board.

    • Assign positions for snakes and ladders on the board.

    • Use arrays to store the positions of players and their movements.

    • Implement logic for dice roll and player movement.

    • Include win condition when a player reaches the final position.

  • Answered by AI
Round 3 - One-on-one 

(1 Question)

  • Q1. Round with Hiring Manager. OS Related questions.

Skills evaluated in this interview

Member Technical Staff Interview Questions asked at other Companies

Q1. Buy and Sell StockYou are Harshad Mehta’s friend. He told you the price of a particular stock for the next ‘N’ days. You can either buy or sell a stock. Also, you can only complete at most 2-transactions. Find the maximum profit that you ca... read more
View answer (4)

SDE Interview Questions & Answers

user image Anonymous

posted on 23 Aug 2024

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

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

Round 1 - One-on-one 

(1 Question)

  • Q1. STring manipulation

SDE Interview Questions asked at other Companies

Q1. Longest Increasing SubsequenceFor a given array with N elements, you need to find the length of the longest subsequence from the array such that all the elements of the subsequence are sorted in strictly increasing order. Strictly Increasin... read more
View answer (5)

PreSales Interview Questions & Answers

user image Anonymous

posted on 8 Apr 2024

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

(2 Questions)

  • Q1. Deep Technical understanding
  • Q2. Some queries on Network Communication
Round 2 - One-on-one 

(1 Question)

  • Q1. First steps in a sales process
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(2 Questions)

  • Q1. Level of water between buildings
  • Ans. 

    Determining the level of water between buildings based on various factors

    • Consider the elevation of each building

    • Take into account the distance between the buildings

    • Factor in any natural or man-made barriers that may affect water flow

  • Answered by AI
  • Q2. Valid Number Hard

Interview Preparation Tips

Interview preparation tips for other job seekers - Leetcode well

Software Engineer III Interview Questions asked at other Companies

Q1. Find the highest floor, from where if an egg is dropped will not break. k floor building and n eggs are given.
View answer (2)
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 Apr 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Count freq of elements in array
  • Ans. 

    Count frequency of elements in array of strings

    • Iterate through the array and use a hashmap to store the frequency of each element

    • Use a for loop to go through each element and update the count in the hashmap

    • Return the hashmap with element frequencies

  • Answered by AI

Skills evaluated in this interview

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... read more
View answer (39)

Broadcom Interview FAQs

How many rounds are there in Broadcom interview?
Broadcom interview process usually has 1-2 rounds. The most common rounds in the Broadcom interview process are Technical, One-on-one Round and Coding Test.
How to prepare for Broadcom 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 Broadcom. The most common topics and skills that interviewers at Broadcom expect are Python, Debugging, Linux, C++ and Agile.
What are the top questions asked in Broadcom interview?

Some of the top questions asked at the Broadcom interview -

  1. Purpose of occ controllers. What scan enable signals( pipelined or nonpipleline...read more
  2. How compression ratio can be tweaked, what are the factors ( how coverage, Patt...read more
  3. How have I observed hold violations and setup violations in my design. What I d...read more
How long is the Broadcom interview process?

The duration of Broadcom interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Broadcom Interview Process

based on 23 interviews in last 1 year

Interview experience

3.9
  
Good
View more

People are getting interviews through

based on 20 Broadcom interviews
Referral
Job Portal
Campus Placement
45%
40%
10%
5% candidates got the interview through other sources.
High Confidence
?
High Confidence means the data is based on a large number of responses received from the candidates.

Interview Questions from Similar Companies

Qualcomm Interview Questions
3.8
 • 270 Interviews
Intel Interview Questions
4.3
 • 220 Interviews
Texas Instruments Interview Questions
4.1
 • 123 Interviews
Synopsys Interview Questions
3.9
 • 88 Interviews
D E C Interview Questions
3.7
 • 1 Interview
RS India Interview Questions
4.4
 • 1 Interview
View all

Broadcom Reviews and Ratings

based on 347 reviews

3.4/5

Rating in categories

2.9

Skill development

3.1

Work-Life balance

4.0

Salary & Benefits

2.6

Job Security

2.8

Company culture

2.7

Promotions/Appraisal

2.9

Work Satisfaction

Explore 347 Reviews and Ratings
Software Engineer
134 salaries
unlock blur

₹13.6 L/yr - ₹46.3 L/yr

Senior Software Engineer
133 salaries
unlock blur

₹9.5 L/yr - ₹38 L/yr

Accountant
117 salaries
unlock blur

₹0.6 L/yr - ₹6 L/yr

Principal Software Engineer
50 salaries
unlock blur

₹16 L/yr - ₹55 L/yr

Test Engineer
49 salaries
unlock blur

₹3.2 L/yr - ₹10.6 L/yr

Explore more salaries
Compare Broadcom with

D E C

3.7
Compare

Fedder And Garten

5.0
Compare

Hi Technologies Limited, UAB

4.4
Compare

JK Khanna & Co.

3.0
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