[Updated] Goldman Sachs Aptitude Test Questions and Answers
Practice List of TCS Digital Coding Questions !!!
Take 50+ FREE!! Online Data Interpretation Mock test to crack any Exams.

Broadcom Technical Interview Questions, Broadcom Interview Questions for Experienced

Home > Experience Archives > Broadcom Ltd > Interview Question Set 5
Telephonic Round First Round (F-2-F) Second Round (F-2-F)

    1 / 8

    Can you briefly introduce yourself, and about your projects.

    Answer:
    No Discussion on this question yet!
    Please Login First :
    Tags:

    No Tags on this question yet!

    2 / 8

    What is TCP/UDP. Difference between both.

    Answer:
    No Discussion on this question yet!
    Please Login First :
    Tags:

    No Tags on this question yet!

    3 / 8

    How TCP handles reliable delivery, flow control and congestion control?

    Answer:
    No Discussion on this question yet!
    Please Login First :
    Tags:

    No Tags on this question yet!

    4 / 8

    Explain OSPF, RIP and BGP protocols in details.

    Answer:
    No Discussion on this question yet!
    Please Login First :
    Tags:

    No Tags on this question yet!

    5 / 8

    What data structure you will used for routing table in optimize way.

    Answer:
    No Discussion on this question yet!
    Please Login First :
    Tags:

    No Tags on this question yet!

    6 / 8

    In an array, how will you find the elements whose sum is "S". Tell all the steps you will do.

    Answer:

    1) Sort the array in ascending order.

    2) Initialize two index variables to find the 'S'

       elements in the sorted array.

           (a) Initialize first to the leftmost index: l = 0

           (b) Initialize second  the rightmost index:  r = ar_size-1

    3) Loop while l < r.

           (a) If (A[l] A[r] == S)  then return 1

           (b) Else if( A[l] A[r] <  sum )  then l

           (c) Else r--    

    4) No 'S' in whole array - return 0

    Please Login First :
    Tags:

    No Tags on this question yet!

    7 / 8

    In case of crash dump for a process from a customer, How can the line number be known wherein the problem was caused?

    Answer:
    No Discussion on this question yet!
    Please Login First :
    Tags:

    No Tags on this question yet!

    8 / 8

    What are you looking for in "Broadcom". Why do you want to join Broadcom.

    Answer:
    No Discussion on this question yet!
    Please Login First :
    Tags:

    No Tags on this question yet!

Telephonic Round First Round (F-2-F) Second Round (F-2-F)

    1 / 13

    Tell me about yourself, and about current project.

    Answer:
    No Discussion on this question yet!
    Please Login First :
    Tags:

    No Tags on this question yet!

    2 / 13

    What is Quality of Service (QoS)?

    Answer:
    No Discussion on this question yet!
    Please Login First :
    Tags:

    No Tags on this question yet!

    3 / 13

    What is the effect of egress scheduling configuration on QoS?

    Answer:
    No Discussion on this question yet!
    Please Login First :
    Tags:

    No Tags on this question yet!

    4 / 13

    What is egress scheduling?

    Answer:
    No Discussion on this question yet!
    Please Login First :
    Tags:

    No Tags on this question yet!

    5 / 13

    What is address alignment?

    Answer:

    A processor will have processing word length as that of data bus size. On a 32 bit machine, the processing word size will be 4 bytes.



    Data structure alignment is the way data is arranged and accessed in computer memory. It consists of two separate but related issues: data alignment and data structure padding.



     
    Please Login First :
    Tags:

    No Tags on this question yet!

    6 / 13

    What will be the output of this code fragment. What would be the output if it's union?

    struct xx {
    char a;
    int b;
    };
    printf("%d", sizeof(struct xx));

    Answer:

    8 in case of union it will be 4 

    Please Login First :
    Tags:

    No Tags on this question yet!

    7 / 13

    How would you identify which process has crashed in customer environment, if there are multiple process crash at same time?

    Answer:
    No Discussion on this question yet!
    Please Login First :
    Tags:

    No Tags on this question yet!

    8 / 13

    How to identify deadlocks? When should we use multithreading? and What is virtualization?

    Answer:
    No Discussion on this question yet!
    Please Login First :
    Tags:

    No Tags on this question yet!

    9 / 13

    Can you Design an algorithm for below.
    There's one input message queue where can we read from, and there is three output message queue that you can write to. The message has alphanumeric key value. There could be duplicate key values coming out of the input queue and once we put a key value say "ABC1234" to output queue-1, whenever we get a key value ABC1234 it should go to queue-1 only. Also, we should try to balance the load among the 3 output queues.

    Answer:
    No Discussion on this question yet!
    Please Login First :
    Tags:

    No Tags on this question yet!

    10 / 13

    Why does BGP uses full-mesh ?

    Answer:
    No Discussion on this question yet!
    Please Login First :
    Tags:

    No Tags on this question yet!

    11 / 13

    Difference between OSPF and RIP, which routing protocol can be used if there are 50 nodes in each area?

    Answer:
    No Discussion on this question yet!
    Please Login First :
    Tags:

    No Tags on this question yet!

    12 / 13

    What is network/subnet mask. Explain how a host A sends a message/packet to host B in below scenario.
    (a) When both are on same network.
    (b) When both are on different networks.
    Explain which layer takes routing decision and how.

    Answer:
    [Host-A]-----------------------------[Host-B]

    When both are on the same network (Scenario: a)
    Host-A:192.168.2.2
    Subnet mask of Host-A: 255.255.255.0
    Host-B: 192.168.2.100

    When both are on different networks: (Scenario: b)
    Host-A: 192.168.2.2
    Subnet mask of Host-A: 255.255.255.0
    Host-B: 192.168.1.100

    Subnet mask of destination IP is not required. Consider both the scenarios, Now if Host-A tries to send some packets to Host-B it is obvious to identify the immediate hop where host-A should forward the packets.This is achieved by below manipulation

    1. Perform bitwise AND operation between Host A IP and subnet mask of the source and let the result be subnet address 'x' ( In scenario (a) if we do that we get x =192 .168.2.0 and similarly for scenario (b) x= 192.168.2.0)
    2. Perform bitwise AND operation between Host B IP and subnet mask of the source and let the result be subnet address 'y' (In scenario (a) if we do that we get y= 192.168.2.0 and similarly for scenario (b) y= 192.168.1.0)

    Observe that for the scenario (a) both x and y are the same so that Host A understands that destination is in the same subnet and now it sends an ARP broadcast to get MAC details and sends the packets directly to the destination host.

    Now let's consider scenario (b) where x and y are different. So it is vivid that destination host is not in direct reach and hence source host forwards the packet to default gateway router .now the default gateway router acts as the source and the same manipulation is done here. The destination address remains unchanged in the routing process.
    Please Login First :
    Tags:

    No Tags on this question yet!

    13 / 13

    Write a code to swap every two bits in a byte.
    Input: 10 01 11 00 Output: 01 10 11 00

    Answer:
    #include

    unsigned int swapBitsInPair(unsigned int x)
    {
    /*
    extracts the high bit position and shifts it to the low bit position.
    similarly extracts the low bit from each pair and shifts it to the high bit position.
    The two parts are then combined using bitwise OR
    */
    return ((x & 0b10101010) >> 1) | ((x & 0b01010101) << 1);
    }

    int main()
    {
    unsigned int x = 156;
    printf("%d", swapBitsInPair(x));
    return 0;
    }
    Please Login First :
    Tags:

    No Tags on this question yet!

Telephonic Round First Round (F-2-F) Second Round (F-2-F)
    Answer:
    No Discussion on this question yet!
    Please Login First :
    Tags:

    No Tags on this question yet!

    2 / 14

    What is 802.1Qbb Priority Flow Control (PFC)?

    Answer:
    Priority-based flow control (PFC), IEEE standard 802.1Qbb, is a link-level flow control mechanism. The flow control mechanism is similar to that used by IEEE 802.3x Ethernet PAUSE, but it operates on individual priorities. Instead of pausing all traffic on a link, PFC allows you to selectively pause traffic according to its class.

    Standard Ethernet does not guarantee that a packet injected into the network will arrive at its intended destination. Reliability is provided by upper-layer protocols. Generally, a network path consists of multiple hops between the source and destination. A problem arises when transmitters send packets faster than receivers can accept them. When receivers run out of available buffer space to hold incoming flows, they silently drop additional incoming packets. This problem is generally resolved by upper-layer protocols that detect the drops and request re-transmission.

    Applications that require reliability in Layer 2 must have the flow control that includes feedback from a receiver to a sender regarding buffer availability. Using IEEE 802.3x Ethernet PAUSE control frames, a receiver can generate a MAC control frame and send a PAUSE request to a sender when a specified threshold of receiver buffer has been filled to prevent buffer overflow. Upon receiving a PAUSE request, the sender stops transmission of any new packets until the receiver notifies the sender that it has sufficient buffer space to accept them again. The disadvantage of using Ethernet PAUSE is that it operates on the entire link, which might be carrying multiple traffic flows. Some traffic flows do not need flow control in Layer 2, because they are carrying applications that rely on upper-layer protocols for reliability. PFC enables you to configure Layer 2 flow control selectively for the traffic that requires it, such as Fibre Channel over Ethernet (FCoE) traffic, without impacting other traffic on the link.
    Please Login First :
    Tags:

    No Tags on this question yet!

    3 / 14

    What will be the packet format of PFC control packet.

    Answer:
    64-byte MAC control frame is used by both IEEE 802.3x PAUSE and PFC. In both cases, numeric values can be used to describe the requested duration of PAUSE. However, since PFC acts independently on eight different CoSs,  the frame describes the PAUSE duration for each CoS.

    The PAUSE duration for each CoS is a 2-byte value that expresses time as a number of quanta, where each represents the time needed to transmit 512 bits at the current network speed. A PAUSE duration of zero quanta has the special meaning of unpausing a CoS. Typical implementations will not try to guess a specific duration for PAUSE, instead relying on the X-ON and X-OFF style behavior that can be obtained by setting PAUSE for a large number of quanta and then explicitly resuming traffic when appropriate.

    Please Login First :
    Tags:

    No Tags on this question yet!

    4 / 14

    When do you need to enable QoS? When do you need to enable PFC?

    Answer:
    No Discussion on this question yet!
    Please Login First :
    Tags:

    No Tags on this question yet!

    5 / 14

    What is Flow Control (Global Pause)?

    Answer:
    No Discussion on this question yet!
    Please Login First :
    Tags:

    No Tags on this question yet!

    6 / 14

    In given a binary tree T, traverse the tree and print all the nodes available on the given level L.

    Answer:
    No Discussion on this question yet!
    Please Login First :
    Tags:

    No Tags on this question yet!

    7 / 14

    Write a function to sort the linked list, given head of the list as parameter.
    Condition: No extra memory is to be used.

    Answer:
    No Discussion on this question yet!
    Please Login First :
    Tags:

    No Tags on this question yet!

    8 / 14

    What is a wildcard mask, and how is it different from a netmask?

    Answer:
    No Discussion on this question yet!
    Please Login First :
    Tags:

    No Tags on this question yet!

    9 / 14

    Write an algorithm for a restaurant such that, whenever a person empties their plate, the hos has to be notified also when the number of persons waiting exceeds the threshold, host should receive a notification of this.

    Answer:
    No Discussion on this question yet!
    Please Login First :
    Tags:

    No Tags on this question yet!

    10 / 14

    Write a code to implement memcpy.

    Answer:
    The memcpy function is used to copy a block of data from a source address to a destination address. The prototype for memcpy is

    void * memcpy(void * destination, const void * source, size_t num);

    #include
    #include

    void myMemCpy(void *dest, void *src, size_t n)
    {
    // Typecast src and dest addresses to (char *)
    char *csrc = (char *)src;
    char *cdest = (char *)dest;

    // Copy contents of src[] to dest[]
    for (int i=0; i cdest[i] = csrc[i];
    }

    int main()
    {
    char csrc[] = "broadcom interview";
    char cdest[100];
    myMemCpy(cdest, csrc, strlen(csrc)+1);
    printf("Copied string is %s", cdest);
    return 0;
    }
    Please Login First :
    Tags:

    No Tags on this question yet!

    11 / 14

    Write a code to implement 2D array dynamically in C? Get the number of rows and columns from the user.

    Answer:
    #include
    #include

    int main()
    {
    int row, col,i;
    int **arr ;
    printf ("Enter Row and Column\n");
    scanf("%d %d",&row,&col );
    printf("%d %d\n",row,col );
    **arr = (int **) malloc (sizeof (int)*row);
    for (i = 0; i < row; i++)
    {
    arr[i] = (int *) malloc(sizeof(int)*col);
    }
    return 0;
    }
    Please Login First :
    Tags:

    No Tags on this question yet!

    12 / 14

    Tell me a situation/ issue where you identified a problem on your own, and drove to resolve it.

    Answer:
    No Discussion on this question yet!
    Please Login First :
    Tags:

    No Tags on this question yet!

    13 / 14

    Tell about most difficult team project u have worked on.

    Answer:
    No Discussion on this question yet!
    Please Login First :
    Tags:

    No Tags on this question yet!

    14 / 14

    Do you have questions for me?

    Answer:
    No Discussion on this question yet!
    Please Login First :
    Tags:

    No Tags on this question yet!