PlacementPapers.asia

Placement Papers 2008,2009,2010 for Freshers.Largest Collection of IT Companies Placement Papers and Interview Questions in india. Latest Placement Papers of IT and Non-IT Companies.




Categories

Links

  • Cadance 2006 Placement paper

    1.in assembler relocatable code generated by …!!??
    asn: indirect addressing
    2. int v,u;
    while(v != 0)
    {
    t = v % u;
    v = u;
    u = t;
    }
    find the time complexity of the above program.
    3. x is passed by reference, y passed by value.
    x = 3, y = 2;
    foo(x, y)
    var integer x, y;
    {
    x = x + 2;
    y = y [...]

    1 Comment