Texas Placement Papers to Download in PDF and Word Format

Download texas placement papers in ms word and pdf format for written exams. Check texas sample interview questions and test papers for your job interview.
Advertisements

Technical - Other - Read 9

TEXAS Instuments1.which code executes faster? code1:- for(i=0;i for(j=0;j large_array[i][j]=0; code2:- for(j=0;j for(i=0;i large_array[i][j]=0;ans:code12.void fn (int *ptr) { static int val=100; ptr=&val; }main(){ int i=10; printf("%d", i); fn(&i); printf("%d", i); }ans:prints 10,103. C supports - call by value only.4.main(){ int i=1; fork(); fork(); printf("%d",i+1);}ans :- prints 2 four times12.#define max(a,b) (a>b)?a:bmain(){ int m,n; m=3+max(2,3); n=2*max(3,2); printf("%d,%d",m,n);}ans:-m=2,n=313.int fn(){int x=2;return x;}char * g(){char x[4];strcpy(x,"hello");return x;}main(){char *s;s=g();fn();printf("%s\n",s);}14.representation of -0.375 --- 111.10115.1-way set assosiated memory -----...

Read 7 - Technical - C & C++ - 8 September 2005

Texas Instruments Date : 8/9/2005 given an expression tree and asked us to write the in fix of that expressionfour choices : 2global variables in different files area:at compiletime b) loading timec) linking timed)execution timesize of(int)a) always 2 bytesb) depends on compiler that is being usedc) always 32 bitsd) can,t tellwhich one will over flow given two programs2 prog 1: prog2:main() main(){ {int fact; int fact=0long int x; for(i=1;i1) return(x*factorial(x-1);}a) program 1;b) program 2;c) both 1 &2d) none}variables of fuction call are allocated ina) registers and stackb) registers and heapc) stack and heapd)avg and worst case time of sorted binary treedata structure used for proority...
Advertisements

Technical - Java - 8 September 2005

Date : 8/9/2005Personal Interview ******************Some Tips**************Something about uIt should about your family,childhood,schooling,B.E.,FutureTell u,r Strength & WeaknessU should clearly explain u,r projects if they asked.Area of interestHave u attended any interviews before? If yes, then why haven,t you get selected?If u are not selected in my company then how do u feel?Why are u choose this field?What is u,r future plan?If they tell "ask some questions regarding the company" u should ask questions about the companysee the website of the particular company before attend the interviewwhy should we select u?Here is some tips that will help u to prepare for hr interviews.Discuss it with...

Technical - C & C++ - Read 5

What will be the output of the following code? void main (){ int i = 0 , a[3] ;a[i] = i++;printf (?%d",a[i]) ;}Ans: The output for the above code would be a garbage value. In the statement a[i] = i++; the value of the variable i would get assigned first to a[i] i.e. a[0] and then the value of i would get incremented by 1. Since a[i] i.e. a[1] has not been initialized, a[i] will have a garbage value Why doesn,t the following code give the desired result?int x = 3000, y = 2000 ;long int z = x * y ;Ans: Here the multiplication is carried out between two ints x and y, and the result that would overflow would be truncated before being assigned to the variable z of type long int. However, to get the...
Advertisements

Read 2 - Reasoning

Texas Instruments If the date is written as MMDDYYYY, and then 10022001, ie)oct 2 2001 is a palindrome. which is the immediate palindrome before that date.There r 2 trains travelling at 100 MPH each. there is a 200Mile tunnel. the trains travel in opposite directions. when the trains enter, a supersonic bee starts at the tunnel, touches the other train, comes back touches the first train, turns again and touches the other train and so on until the trains collide. Find the distance travelled by the bee.It is 12.00 o clock. Find how often the minute hand meets the hour hand.Find the maximum product using positive integers the sum of which is 100. Dont know if i am sure with this one. sorry. i...

Read 4 - Technical - C & C++

Texas Instruments Interview ProcedureThe test is followed by a Technical and a HR interview. The technical interview is highly specialized and covers almost all subjects you have done in your curriculum. Some puzzles may also be asked in the interview. Special emphasis is laid on C and Data Structures.Written Test paper there was 20 questions as follows in 60 minutes second part consists of 36 queue. in 30 minutes all questions are diagramatical.(figurs)..Texas if a 5-stage pipe-line is flushed and then we have to execute 5 and 12 instructions respectively then no. of cycles will bea. 5 and 12b. 6 and 13c. 9 and 16d.nonek-mapab----------c 1 x 0 01 x 0 xsolve ita. A.BB. ~AC. ~BD. A+BCHAR A[10][15]...

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

Texas Instruments : 8/9/05PatternTechnical TestContains 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 Test75 questions 1 hour Negative marking is there.Technical InterviewBehavioral 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

Technical - Electronics - Read 8

Sample Questions (steeper transition) by: Increasing W/L of PMOS transistorIncreasing W/L of NMOS transistorIncreasing W/L of both transistors by the same factorDecreasing W/L of both transistor by the same factor Minimum number of 2-input NAND gates that will be required to implement the function: Y = AB + CD + EF is4567Consider a two-level memory hierarchy system M1 & M2. M1 is accessed first and on miss M2 is accessed. The access of M1 is 2 nanoseconds and the miss penalty (the time to get the data from M2 in case of a miss) is 100 nanoseconds. The probability that a valid data is found in M1 is 0.97. The average memory access time is:4.94 nanoseconds3.06 nanoseconds5.00 nanoseconds5.06 nanosecondsInterrupt...

General - Other Chennai - 8 September 2005

Texas Instruments Test at Chennai : 8 Sept 2005Test Paper 011. Can we declare a static function as virtual?Ans: No. The virtual function mechanism is used on the specific object that determines which virtual function to call. Since the static functions are not any way related to objects, they cannot be declared as virtual.2. Can user-defined object be declared as static data member of another class?Ans: Yes. The following code shows how to initialize a user-defined object.#includeclass test{int i ;public :test ( int ii = 0 ){i = ii ;}} ;class sample{static test s ;} ;test sample::s ( 26 ) ;Here we have initialized the object s by calling the one-argument constructor. We can use the same convention...

Read 3 - Technical - C & C++

1. if a 5-stage pipe-line is flushed and then we have to execute 5 and 12instructions respectively then no. of cycles will bea. 5 and 12b. 6 and 13c. 9 and 16d.none2. k-mapab----------c 1 x 0 01 x 0 xsolve ita. A.BB. ~AC. ~BD. A+B3.CHAR A[10][15] AND INT B[10][15] IS DEFINED WHAT,S THE ADDRESS OF A[3][4] AND B[3][4] IF ADDRESS OD A IS OX1000 AND B IS 0X2000A. 0X1030 AND 0X20C3B. OX1031 AND OX20C4AND SOME OTHERS..4. int f(int *a){int b=5;a=&b;}main(){int i;printf("\n %d",i);f(&i);printf("\n %d",i);}what,s the output .1.10,52,10,10c.5,5d. none5. main(){int i;fork();fork();fork();printf("----");}how many times the printf will be executed .a.3b. 6c.5d. 86.void f(int i){int j;for (j=0;j>j))printf("1");elseprintf("0");}}what,s...

Aptitude - General - Read 1

Pattern Consist of Technical TestContains three sections (Data Structures and Algorithms, Analog Circuits, Digital Circuits) you 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 Test75 questions 1 hour Negative marking is thereTechnical InterviewBehavioral Interview Here is some sample Questionsint 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

Technical - C & C++ - 8 September 2005

Texas Instruments Date : 8/9/2005 Can we declare a static function as virtual?Ans: No. The virtual function mechanism is used on the specific object that determines which virtual function to call. Since the static functions are not any way related to objects, they cannot be declared as virtual.Can user-defined object be declared as static data member of another class?Ans: Yes. The following code shows how to initialize a user-defined object.#include class test{ int i ; public : test ( int ii = 0 ) { i = ii ; } } ;class sample{ static test s ; } ;test sample::s ( 26 ) ;Here we have initialized the object s by calling the one-argument constructor. We can use the same convention to initialize the...

Technical - C & C++ - 8 September 2005

TEXAS INSTRUMENTS PAPER - 08 SEP 2005Test Paper 011. Can we declare a static function as virtual?Ans: No. The virtual function mechanism is used on the specific object that determines which virtual function to call. Since the static functions are not any way related to objects, they cannot be declared as virtual.2. Can user-defined object be declared as static data member of another class?Ans: Yes. The following code shows how to initialize a user-defined object. #include class test { int i ; public : test ( int ii = 0 ) { i = ii ; } } ; class sample { static test s ; } ; test sample::s ( 26 ) ;Here we have initialized the object s by calling the one-argument constructor. Wecan use the same...

Texas Instruments Paper Technical - C & C++ - 8 September 2005

Texas Instruments                                                                                                           Date : 8/9/2005 Can we declare a static function...

Texas Instruments Paper Technical - C & C++ - 8 September 2005

TEXAS INSTRUMENTS PAPER - 08 SEP 2005Test Paper   01 1. Can we declare a static function as virtual?Ans: No. The virtual function mechanism is used on the specific object that determines which virtual function to call. Since the static functions are not any way related to objects, they cannot be declared as virtual. 2. Can user-defined object be declared as static data member of another class?Ans: Yes. The following code shows how to initialize a user-defined object.      #include      class test      {      int i ;      public :     ...