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

  • Asto Origin Whole Testpaper
    Written Round
    The questions
    1) How would you dynamically allocate memory to an array
    int n;
    scanf(“%d”,&n);
    int * p;
    p = (int *)malloc(n*sizeof(int));
    2) What is return parameter of a contructor
    constructor does not return anything
    3) How will you make it return something
    Send address of return variable as an arguement to the contrustor.
    store in pointer and modify
    4) How is [...]

    No Comments