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

TCS Interview Questions and Answers for 3 years Experience

Home > Experience Archives > TCS > Interview Question Set 1
Telephonic Round

    1 / 18

    Briefly introduce yourself and about current project.

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

    No Tags on this question yet!

    2 / 18

    Lets we have topology where host is moving (mac), so how we can manage and control it.

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

    No Tags on this question yet!

    3 / 18

    While implementing the feature what are the basic issue you faced, and how you resolve it.

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

    No Tags on this question yet!

    4 / 18

    If in mac address table mac entry for host A is exist as both static and dynamic, what will happen when pkt will receive at switch. Have you observed such scenario?

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

    No Tags on this question yet!

    5 / 18

    What all are the step will performed when switch received first pkt from Host A.

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

    No Tags on this question yet!

    6 / 18

    Do you know LACP. What is difference in LACP/LAG.

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

    No Tags on this question yet!

    7 / 18

    Can you tell me how link aggregation mention in Broadcom.

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

    No Tags on this question yet!

    8 / 18

    What are the type of IPC used in your project?

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

    No Tags on this question yet!

    9 / 18

    How to create message queue, what are the field will be required. Then how to protect. Can we not achieve it by pipe.

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

    No Tags on this question yet!

    10 / 18

    Can you tell me process memory layout in linux.

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

    No Tags on this question yet!

    11 / 18

    How do u rate yourself in c in scale of 5.

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

    No Tags on this question yet!

    12 / 18

    Which one is efficient in 2D array or array of pointer.

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

    No Tags on this question yet!

    13 / 18

    Can you just tell how to write Const char pointer. If I want to have const data.

    Answer:
    It will point to constant address
    Char * const tmp = 'h';
    I.e if we do char c = 'k';
    tmp= &c; (throw error)
    But we can change the tmp value

    To have constant data

    Const char *tmp='k';
    Or
    Char const *tmp='k';
    Please Login First :
    Tags:

    No Tags on this question yet!

    14 / 18

    Can you give example of stack overflow, another example then calling main function inside main().

    Answer:
    Stack overflow
    ###########
    void main()
    {
    main();
    }

    Another

    void main()
    {
    stackOver();
    }

    void stackOver ();
    {
    stackOver ();
    }
    Please Login First :
    Tags:

    No Tags on this question yet!

    15 / 18

    Have you used call back function, what will be the prototype of it.

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

    No Tags on this question yet!

    16 / 18

    Can you just tell me how to write Array of function pointer returning int pointer.

    Answer:
    int * (* arroffunctionpointer [10 ] ) (arg1, arg2)
    Please Login First :
    Tags:

    No Tags on this question yet!

    17 / 18

    What is dangling pointer.

    Answer:

    Dangling pointer is the pointer which points to invalid memory location.


    Please Login First :
    Tags:

    No Tags on this question yet!

    18 / 18

    If ptr is pointer and pointing to some memory, doing ptr++ five time and then freeing the ptr what will be the issue here.

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

    No Tags on this question yet!