Reg. TCS Preparation-some suggestions

12/15/2013 10:00:00 am 0 Comments

Dear Aspirants
During your Interviews ,interviewers may focus on your technical capabilities/clarity in understanding and application.communication skills, self-management skills and background by asking behavioral questions/technical/managerial aptitude to measure of your suitability.
Regarding Interviews, lets be clear that You need to carry an updated copy of your resume. In case you are asked for it,you can readily hand it over to the Interviewer.If not,don't worry,the Interviewer will use the one copy submitted by you earlier.Make sure, you are sure of the facts mentioned in your submitted resume.
Another thing, don't at all hesitate to ask a question if asked to do so.
Sample questions like the following:
1.sir,the prospects of higher education in TCS..
2.What does TCS actually expect from its newly-joining freshers??
3.What actually happens during the training?and after the training??
4.How about overseas assignments
5.About career progress and growth
Whatever be your question, it must reflect a genuine interest that you are showing about the company and your sincerity and eagerness to be a part of it.Also,It must demonstrate your willingness to learn and know new things.
prepare on your hobbies(with why it is ur hobby ), education details such marks/percentages (particularly deviations you have to explain and justify),places of previous study, favourite subjects,teachers,experiences(memories) etc.
Rest tomorrow in next posting...
but for now, I am posting( rather pasting ) the following list of technical questions I got hold of in some website, which ,hopefully You will find useful:
TCS Technical interview Questions
1. What is your strongest programming language (Java, ASP, C, C++, VB, HTML, C#, etc.)?
2. Basic concepts of C++ like — pointer, function overloading, friend function & its advantage ?
Pointer is a variable in a program is something with a name, the value of which can vary. The way the compiler and linker handles this is that it assigns
a specific block of memory within the computer to hold the value of that variable.
Function overloading is a feature of C++ that allows us to create multiple functions with the same name, so long as they have different parameters.Consider the following function:
int Add(int nX, int nY)
{
return nX + nY;
}
A friend function for a class is used in object-oriented programming to allow access to public, private, or protected data in the class from the outside.
Normally, a function that is not a member of a class cannot access such information; neither can an external class. Occasionally, such access will be advantageous for the programmer. Under these circumstances, the function or external class can be declared as a friend of the class using the friend keyword.
3.What is the difference between null and void pointer?
A Null pointer has the value 0. void pointer is a generic pointer introduced by ANSI. Generic pointer can hold the address of any data type.
4. Write a program to add two numbers in C++ using classes.
5. Tell me something about abstract classes?
6. Can you list out the areas in which data structures are applied extensively?
7. what are the two integrity rules used in DBMS?
8. Tell something about deadlock and how can we prevent dead lock?
9. What is Insertion sort, selection sort, bubble sort( basic differences among the functionality of the three sorts and not the exact algorithms)
10. What is Doubly link list?
11. Write a program that takes a 3 digit number n and finds out whether the number 2^n + 1 is prime, or if it is not prime find out its factors.
12. What is the best algorithm to sort out unique words from a list of more than 10 million words(1 crore+)? we need the best technique in the terms of execution time.
13. What is scope of a variable?
14. What is data Abstraction? Explain three levels of data abstraction and give example
15. How to swap two numbers with out using temp variable?
17. What is the Maximum Size that an Array can hold?
18.What is debugger?
A debugger or debugging tool is a computer program that is used to test and debug other programs
19. Const char * char * const What is the difference between the above two?
20. What is Memory Alignment?
21.Explain the difference between ‘operator new’ and the ‘new’ operator?
22. Difference between delete and delete[]?
23. What is conversion constructor?
24. What is a constructor initializer list and when we use constructor initializer list?
25. What is the order of initialization for data?
26. Explain Linux file types?
27. Why should we use data ware housing and how can you extract data for analysis with example?
28.Explain recursive function & what is the data structures used to perform recursion?
29.What are the different cost elements involved in implementing a process in an organization?
30..What is an interrupt?
Interrupt is an asynchronous signal informing a program that an event has occurred. When a program receive an interrupt signal, it takes a specified action.
Hope to see you tomorrow morning
byeee


0 comments: