ALLInterview.com :: Home Page KalAajKal.com
 Advertise your Business Here     
Browse  |   Placement Papers  |   Company  |   Code Snippets  |   Certifications  |   Visa Questions
Post Question  |   Post Answer  |   My Panel  |   Search  |   Articles  |   Topics  |   ERRORS new
   Refer this Site  Refer This Site to Your Friends  Site Map  Bookmark this Site  Set it as your HomePage  Contact Us     Login  |  Sign Up                      
tip       Ask Questions on ANYTHING, that arise in your Daily Life at     FORUM9.COM
Google
 
Categories  >>  Placement Papers
 
 


 

 
 Software interview questions  Software Interview Questions
 Sciences interview questions  Sciences Interview Questions
 Engineering interview questions  Engineering Interview Questions
 Business Management interview questions  Business Management Interview Questions
 Accounting interview questions  Accounting Interview Questions
 Advertising Media interview questions  Advertising Media Interview Questions
 Architecture Design interview questions  Architecture Design Interview Questions
 Call Centre interview questions  Call Centre Interview Questions
 Fashion Modelling interview questions  Fashion Modelling Interview Questions
 Government interview questions  Government Interview Questions
 Law interview questions  Law Interview Questions
 Tourism Hotel interview questions  Tourism Hotel Interview Questions
 Everything Else interview questions  Everything Else Interview Questions
 Aptitude Questions interview questions  Aptitude Questions Interview Questions
 Placement Papers interview questions  Placement Papers Interview Questions
 Certifications interview questions  Certifications Interview Questions
 Visa Interview Questions interview questions  Visa Interview Questions Interview Questions
 Code Snippets interview questions  Code Snippets Interview Questions
 Entrance Exams interview questions  Entrance Exams Interview Questions
 ERRORS interview questions  ERRORS Interview Questions
Question
Texas  PLACEMENT PAPERS
 Question Submitted By :: Guest
I also faced this Question!!     Rank Answer Posted By  
 
  Re: Texas PLACEMENT PAPERS
Answer
# 1
Texas Placement Papers | Texas Interview Procedure | Texas 
Aptitude Questions | Texas Technical Questions | Texas 
Interview Questions



             Here is Texas paper for you.
    in this paper there was 20 questions as follows in 60 
minutes .
    second part consists of 36 que. in 30 minutes all 
questions are
    diagramatical.(figurs)..

    1. if a 5-stage pipe-line is flushed and then we have 
to execute 5 and
12
    instructions respectively then no. of  cycles will be
    a. 5 and 12
    b. 6 and 13
    c. 9 and 16
    d.none

    2. k-map

    ab
    ----------
    c       1   x  0  0
           1   x  0  x

    solve it

    a. A.B
    B. ~A
    C. ~B
    D. A+B

    3.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 0X2000

    A. 0X1030 AND 0X20C3
    B. OX1031 AND OX20C4
    AND 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,5
    2,10,10
    c.5,5
    d. none

    5. main()
    {
    int i;
    fork();
    fork();
    fork();
    printf("----");
    }

    how many times the printf will be executed .
    a.3
    b. 6
    c.5
    d. 8

    6.
    void f(int i)
    {
    int j;
    for (j=0;j<16;j++)
    {
    if (i & (0x8000>>j))
    printf("1");
    else
    printf("0");
    }
    }
    what's the purpose of the program

    a. its output is hex representation of i
    b. bcd
    c. binary
    d. decimal

    7.#define f(a,b) a+b
    #define g(a,b) a*b

    main()
    {

    int m;
    m=2*f(3,g(4,5));
    printf("\n m is %d",m);
    }

    what's the value of m
    a.70
    b.50
    c.26
    d. 69



Texas Placement Papers | Texas Interview Procedure | Texas 
Aptitude Questions | Texas Technical Questions | Texas 
Interview Questions




    8.
    main()
    {
    char a[10];
    strcpy(a,"\0");
    if (a==NULL)
    printf("\a is null");
    else
    printf("\n a is not null");}

    what happens with it .
    a. compile time error.
    b. run-time error.
    c. a is  null
    d. a is not  null.

    9. char a[5]="hello"

    a. in array we can't do the operation .
    b. size of a is too large
    c. size of a is too small
    d. nothing wrong with it .

    10. local variables can be store by compiler
    a. in register or heap
    b. in register or stack
    c .in stack or heap .
    d. global memory.

    11. average and worst time complexity in a sorted 
binary tree is

    12. a tree is given and ask to find its meaning (parse-
tree)
    (expression tree)
    ans. ((a+b)-(c*d))  ( not confirmed)
    13. convert 40.xxxx into binary .

    14. global variable conflicts due to multiple file 
occurance
    is resolved during
    a. compile-time
    b. run-time
    c. link-time
    d. load-time

    15.
    two program is given of factorial.
    one  with  recursion and one without recursion .
    question was which program won't run for very big no. 
input     because
of stack overfow .
    a. i only  (ans.)
    b. ii only
    c. i& ii both .
    c. none

    16.
    struct a
    {
    int a;
    char b;
    int c;
    }

    union b
    {
    char a;
    int b;
    int c;
    };
    which is correct .
    a. size of a is always diff. form size of b.(ans.)
    b. size of a is always same  form size of b.
    c. we can't say anything because of not-homogeneous 
(not in ordered)
    d. size of a can be same if ...



Texas Placement Papers | Texas Interview Procedure | Texas 
Aptitude Questions | Texas Technical Questions | Texas 
Interview Questions





______________________________________________________
 
Is This Answer Correct ?    0 Yes 0 No
Guest
 
  Re: Texas PLACEMENT PAPERS
Answer
# 2
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 D:none
 
Is This Answer Correct ?    0 Yes 0 No
Sasi
 
 
 
  Re: Texas PLACEMENT PAPERS
Answer
# 3
i -- 0x009 -10
  b -- 0x100 -5
  a= 0x009
  a= 0100

answer is 10,10.
 
Is This Answer Correct ?    0 Yes 0 No
Guest
 
  Re: Texas PLACEMENT PAPERS
Answer
# 4
main()
    {
    char a[10];
    strcpy(a,"\0");
    if (a==NULL)
    printf("\a is null");
    else
    printf("\n a is not null");}

    what happens with it .
    a. compile time error.
    b. run-time error.
    c. a is  null
    d. a is not  null.

Answer is d not null as both are different kinds of 
representations
 
Is This Answer Correct ?    0 Yes 0 No
Guest
 
  Re: Texas PLACEMENT PAPERS
Answer
# 5
Question : 14
ANS : LINK TIME (c)
 
Is This Answer Correct ?    0 Yes 0 No
S.kaushik
 

 
 
 
Other Placement Papers Interview Questions
 
  Question Asked @ Answers
 
CADENCE PLACEMENT PAPERS ----------- Placement Paper 1 Cadence1
ford soft ware placement papers Ford3
PERSISTENT PLACEMENT PAPER Persistent1
INFOSYS PLACEMENT PAPERS ----- Placement Paper 1 Infosys1
NIIT Campus Placements Apr-11-2007 NIIT3
TCS Interview with JNTU Kakinada TCS2
what is karebros ?  1
placement paper Wipro writtentest, technical, Hr Interview Rounds--- Oct 2006 Wipro2
Sap Labs Written Test Placement Paper on Dec 2006 SAP-Labs1
HCL placement papers ---------placement paper 4 HCL2
Infosys placement Paper - 26 Nov 2006 - Pune Infosys1
ANZ PLACEMENT PAPERS ------ placement paper 1 ANZ1
TISL PLACEMENT PAPERS -------------- Placement Paper 1 TISL1
Honeywell placement papers --------- placement paper 2 Honeywell2
Verifone PLACEMENT PAPERS ------ Verifone Placement Paper 3 Verifone1
Crompton Greaves Written Test ---- Delhi 2006 Placement Paper Crompton-Greaves1
TechMahindra Pattern & Interview {09/05/2007} {Bangalore} Tech-Mahindra3
Google Campus Selection Procedure Chennai Google2
1/Apr/2007 L&T Infotech Chennai Campus Placement Paper L&T1
17 February 2007 Infosys Written Test Paper In Pondichery Infosys2
 
For more Placement Papers Interview Questions Click Here 
 
 
 
 
 
   
Copyright Policy  |  Terms of Service  |  Help  |  Site Map 1  |  Articles  |  Site Map  |   Site Map  |  Contact Us interview questions urls   External Links 
   
Copyright © 2007  ALLInterview.com.  All Rights Reserved.

ALLInterview.com   ::  Forum9.com   ::  KalAajKal.com