Jobs in India
Search Jobs
Search Jobs
Advertisements

Read 6 - Technical - C & C++ - 8 September 2005 by Texas

Details of Read 6 - Technical - C & C++ - 8 September 2005 by Texas conducted by Texas for job interview.
Advertisements
Texas Instruments : 8/9/05


Pattern
Technical Test
Contains three sections (Data Structures and Algorithms, Analog Circuits, Digital Circuits) we have to choose any two sections among the three. Each section has 10 questions each and the total time for the two sections is 45 minutes. There is negative marking.
Aptitude Test
75 questions 1 hour Negative marking is there.
Technical Interview
Behavioral Interview
(1) Which of the following program is likely to create a Stack overflow for higher values of n
(i) (ii)
int fact(int n) int fact_ii(int n)
{ {
if (n >0) int fact_val = 1, i = 0;
return n*fact (n-1); for (i = 1; i