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

Wipro Interview Questions and Answers for 4 years Experience

Home > Experience Archives > Wipro > Interview Question Set 1
First Round (F-2-F) Second Round (F-2-F) HR Round Q&A

    1 / 31

    Introduce yourself briefly.

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

    No Tags on this question yet!

    2 / 31

    How ping works.which protocol used in it.

    Answer:

    PING is standard for Pocket internet grouper.



    PING command is used a simple way to verify to that computer can communicate over another network or computer.



    PING is used ICMP (Internet control message protocol), This protocol is verified communication ECHO Request and ECHO response technology.



     

    Please Login First :
    Tags:

    No Tags on this question yet!

    Answer:

     Network Address Translate is Called NAT.



    Firewall used to assign private networks to public networks, NAT used to assign limited of public networks based on economy or security.

    Please Login First :
    Tags:

    No Tags on this question yet!

    4 / 31

    Write a program to reverse a number, input 12345 output 54321.

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

    No Tags on this question yet!

    5 / 31

    Write a program to find the loop in a single linklist.

    Answer:
    /* pass the head reference to detectLoop */
    int detectLoop(struct node *list)
    {
    struct node *slowp = list, *fastp = list;

    while (slowp && fastp && fastp->next)
    {
    slowp = slowp->next;
    fastp = fastp->next->next;
    if (slow_p == fast_p)
    {
    printf("\r\nLoop detected in given linked list.\r\n");
    return 1;
    }
    }
    return 0;
    }
    Please Login First :
    Tags:

    No Tags on this question yet!

    6 / 31

    Now Modify your program to remove the loop in same linklst.

    Answer:
    /* pass the head reference to detectLoop */
    int detectLoop(struct node *list)
    {
    struct node *slowp = list, *fastp = list;

    while (slowp && fastp && fastp->next)
    {
    slowp = slowp->next;
    fastp = fastp->next->next;
    if (slow_p == fast_p)
    {
    printf("\r\n Loop detected in given linked list.\r\n");
    removeloop(slowp, list);
    return 1;
    }
    }
    return 0;
    }

    void removeLoop(struct node *slow_node, struct node *head)
    {
    struct node *ptr1;
    struct node *ptr2;

    ptr1 = head;
    while (1)
    {
    ptr2 = loop_node;
    while (ptr2->next != loop_node && ptr2->next != ptr1)
    ptr2 = ptr2->next;
    if (ptr2->next == ptr1)
    break;

    ptr1 = ptr1->next;
    }
    ptr2->next = NULL;
    }
    Please Login First :
    Tags:

    No Tags on this question yet!

    7 / 31

    What is dangling pointer. So As per him in question 6 it will occurred

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

    No Tags on this question yet!

    8 / 31

    What is deadlock.

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

    No Tags on this question yet!

    9 / 31

    Write a program in which deadlock created. there were two question ...

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

    No Tags on this question yet!

    10 / 31

    Write a program to delete a node in double linklist if info match.

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

    No Tags on this question yet!

    11 / 31

    what are the procedure to allocate the memory dynamically in c.

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

    No Tags on this question yet!

    12 / 31

    what are the difference in malloc, calloc and realloc.

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

    No Tags on this question yet!

    13 / 31

    what are the scheduling technique available.

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

    No Tags on this question yet!

    14 / 31

    What are the interprocess communication available.

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

    No Tags on this question yet!

    15 / 31

    In pipe IPC, whether first pipe get terminated or still in BG.

    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!

    17 / 31

    How to protect the shared memory.

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

    No Tags on this question yet!

    18 / 31

    Do you know the GDB. Where it will be used. how you will load.

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

    No Tags on this question yet!

    19 / 31

    How you will have the core dump, what are all the information you will get it, how you will debug it.

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

    No Tags on this question yet!

    20 / 31

    Do you know chunk file.

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

    No Tags on this question yet!

    21 / 31

    what is fork(). what fork will return, whether parent will run first or child when you will do fork.

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

    No Tags on this question yet!

    22 / 31

    What is NULL pointer.

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

    No Tags on this question yet!

    23 / 31

    What is void pointer.

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

    No Tags on this question yet!

    24 / 31

    Can you write a generic single linklist program using void.

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

    No Tags on this question yet!

    25 / 31

    JUMP, breakpoints, next,continue etc. in GDB, what is and how to use it.

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

    No Tags on this question yet!

    26 / 31

    Do you know the socket programming, Write a simple client/server program.

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

    No Tags on this question yet!

    27 / 31

    What are the call will be in UDP.

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

    No Tags on this question yet!

    28 / 31

    How TCP handshake will be happen.

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

    No Tags on this question yet!

    29 / 31

    What is fragmentation in IP packet. Then what is it in OS context.

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

    No Tags on this question yet!

    30 / 31

    What is priority inversion.

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

    No Tags on this question yet!

    31 / 31

    What is ARP, what are the filed in ARP table ,how it will updated.

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

    No Tags on this question yet!

First Round (F-2-F) Second Round (F-2-F) HR Round Q&A First Round (F-2-F) Second Round (F-2-F) HR Round Q&A