[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.

Cavium Networks Interview Questions and Answers for 5 years Experience

Home > Experience Archives > Cavium Networks > Interview Question Set 1
Telephonic Round First Round (F-2-F) Second Round (F-2-F) Third Round (F-2-F)

    1 / 16

    Introduce yourself.

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

    No Tags on this question yet!

    2 / 16

    And briefly about the project and role in that.

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

    No Tags on this question yet!

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

    No Tags on this question yet!

    4 / 16

    What is private vlan.

    Answer:
    A private VLAN domain has only one primary VLAN. Each port in a private VLAN domain is a member of the primary VLAN; the primary VLAN is the entire private VLAN domain.

    Secondary VLANs provide isolation between ports within the same private VLAN domain. The following two types are secondary VLANs within a primary VLAN:

    Isolated VLANs—Ports within an isolated VLAN cannot communicate directly with each other at the Layer 2 level.
    Community VLANs—Ports within a community VLAN can communicate with each other but cannot communicate with ports in other community VLANs or in any isolated VLANs at the Layer 2 level.

    http://www.cisco.com/c/en/us/td/docs/switches/datacenter/nexus5000/sw/configuration/guide/cli/CLIConfigurationGuide/PrivateVLANs.html
    Please Login First :
    Tags:

    No Tags on this question yet!

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

    No Tags on this question yet!

    6 / 16

    What happen if mtu size is set as 1200 for interface and pkt received > 1200.

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

    No Tags on this question yet!

    7 / 16

    What is vlan. What is tagged and untagged vlan.

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

    No Tags on this question yet!

    8 / 16

    Ping from host A to host B, there are intermediate router. Explain each step taken to successful ping.

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

    No Tags on this question yet!

    9 / 16

    How you will debug in above scenario.

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

    No Tags on this question yet!

    10 / 16

    What is TTL in pkt. what if ttl will be in L2 header?

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

    No Tags on this question yet!

    11 / 16

    Can you design the ola cab application. In this just tell you understanding.

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

    No Tags on this question yet!

    12 / 16

    puzzel .. There are 100 doors, all closed. In a nearby cage are 100 monkeys.
    The first monkey is let out, and runs along the doors opening every one. The second monkey is then let out, and runs along the doors closing the 2nd, 4th, 6th,... all the even-numbered doors. The third monkey is let out. He attends only to the 3rd, 6th, 9th,... doors (every third door, in other words), closing any that is open and opening any that is closed, and so on. After all 100 monkeys have done their work in this way, what state are the doors in after the last pass, which doors are left open and which are closed?

    Answer:

    Consider door number 56, monkeys will visit it for every divisor it has. So 56 has 1

    Please Login First :
    Tags:

    No Tags on this question yet!

    13 / 16

    Difference in pointer to function and function pointer.

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

    No Tags on this question yet!

    14 / 16

    How to analyze the core dump.

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

    No Tags on this question yet!

    15 / 16

    How L2 table maintain.

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

    No Tags on this question yet!

    16 / 16

    Do you have any question?

    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) Third Round (F-2-F) Telephonic Round First Round (F-2-F) Second Round (F-2-F) Third Round (F-2-F)

    1 / 11

    About the project.

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

    No Tags on this question yet!

    2 / 11

    Write a program to find and remove the duplicate in linklist.

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

    No Tags on this question yet!

    3 / 11

    Write a program to compare the string.

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

    No Tags on this question yet!

    4 / 11

    What is difference in memcpy and strncpy.

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

    No Tags on this question yet!

    5 / 11

    What is the difference in pass by value and pass be reference, with example.

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

    No Tags on this question yet!

    6 / 11

    Write any program using function pointer

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

    No Tags on this question yet!

    7 / 11

    Write a program to print the matrix element in clock-wise and anti clock-wise sprial, if the given value of i=0 and i=1
    Ex.
    | 1 2 3 4 |
    | 5 6 7 8 |
    | 9 10 11 12 |
    | 13 14 15 16 |
    OutPut:
    For i=0
    1 2 3 4 8 12 16 15 14 12 9 5 6 7 11 10
    for i=1
    1 5 9 13 14 15 16 12 8 4 3 2 6 10 11 7

    Answer:
    void ClockwisespiralPrint(arr[4][4], int m, int n)
    {
    int i = 0, k = 0, l = 0;

    while (k < m && l < n)
    {
    for (i = l; i < n; ++i)
    {
    printf(" %d ", arr[k][i]);
    }
    k++;

    for (i = k; i < m; ++i)
    {
    printf(" %d ", arr[i][n-1]);
    }
    n--;

    if ( k < m)
    {
    for (i = n-1; i >= l; --i)
    {
    printf(" %d ", arr[m-1][i]);
    }
    m--;
    }

    if (l < n)
    {
    for (i = m-1; i >= k; --i)
    {
    printf(" %d ", arr[i][l]);
    }
    l++;
    }
    }
    }


    int main()
    {
    int arr[4][4] = {
    {1, 2, 3, 4},
    {5, 6, 7, 8},
    {9, 10, 11, 12},
    {13, 14, 15, 16}
    };

    ClockwisespiralPrint(arr, 4, 4);
    return 0;
    }


    For anti-clockwise reverse the operation;
    Please Login First :
    Tags:

    No Tags on this question yet!

    8 / 11

    How interface vlan work .

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

    No Tags on this question yet!

    9 / 11

    What is lacp, and lacp state machine.

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

    No Tags on this question yet!

    10 / 11

    Write a program to find machine is little endian or big endian.

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

    No Tags on this question yet!

    11 / 11

    Byte swapping program.

    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) Third Round (F-2-F)