Personal Interview Question :: HR:-
  1. Tell about ur fmily background
  2. What are your Interests?
  3. What are your positive qualities?
  4. Introduce Yourself
  5. Why Accenture
  6. Biggest Achievement
  7. Strengths and Weakness
  8. Career Objective

Personal Interview Question :: Technical:-
  1. Tell something abt OOP
  2. What is inheritence
  3. What is Polymorphism
  4. Difference between Bubble sort and Insertion Sort
  5. PL SQL triggers cursors strd procedures,
  6. Write Recursive Factorial Program
  7. Virtual functions/ Abstract classes/ Pointer functions
  8. Explain Primary Memory, Secondary Memory, Virtual Memory
  9. diff. b/w c++ structures & c structures
  10. difference b/w char *str = "Hello"; char arr[] = "Hello";
  11. list the various types of storage classes and explain the scope & lifetime of each one..
  12. What is the minimum no. of weighing to make to find
    out a heavier ball among 8 balls
C/C++:-
  1. Questions On
    1. far and near pointer
    2. question on macros : macros with arguments.
    3. questions on structure pointer.
    4. questions on files. Lseek , fputs, fwrite.
    5. sorting and searching. Time complexity of BST.
    6. malloc , realloc syntax
    C++:
    1. Multiple, multilevel inheritance.
    2. templates and using template how to overload new and delete operators.
    3. container classes.
    4. friend functions and how they access member functions. Its use.
    5. Questions on file handling.
  2. Study the Following Points:
    a.One Cannot Take the address of a Bit Field
    b.bit fields cannot be arrayed
    c.Bit-Fields are machine Dependant
    d.Bit-fields cannot be declared as static
    Which of the Following Statements are true w.r.t Bit-Fields
    A)a,b&c B)Only a & b C)Only c D)All
  3. What is the function of ceil(X) defined in math.h do?
    A)It returns the value rounded down to the next lower integer
    B)it returns the value rounded up to the next higher integer
    C)the Next Higher Value
    D)the next lower value
  4. Identify the correct argument for the function call fflush() in
    ANSI C:
    A)stdout
    B)stdin
    C)stderr
    D)All the above
  5. Which of the Following will define a type NODE that is a node in a
    Linked list?
    A)struct node {NODE*next;int x;};type def struct node NODE;
    B)typedef struct NODE {struct NODE *next;int x;};
    C)typedef struct NODE {NODE *next;int x;};
    D)typedef struct {NODE *next;int x;}NODE;
  6. .Study the code:


    void show()
    main()
    {
    show();
    }
    void show (char *s)
    {
    printf("%s\n",s);
    }

    What will happen if it is compiled & run on an ANSI C Compiler?
    A)It will compile & nothing will be printed when it is executed
    B)it will compile but not link
    C)the compiler will generate an error
    D)the compiler will generate a warning
  7. .Look at the Code:
    #include
    void main()
    {
    char s1[]=="abcd";
    char s2[10];
    char s3[]=="efgh";
    int i;
    clrscr();
    i==strcmp(strcat(s3,strcpy(s2,s1)),strcat(s3,"abcd"));
    printf("%d",i);
    }

    What will be the output?
    A)No output B) A Non Integer C)0 D) Garbage
  8. .Look at the Code:
    main()
    {
    int a[]=={1,2,3},i;
    for(i==0;i<3;i++)>
  9. what is the output?
    #define fun(a,b,t) (g ##t==(a),(a)==(b),(b)==g##t)
    float gfloat;
    main()
    {
    float a==1.12,b==3.14;
    fun (a,b,float);
    printf("\na==%4.2f,b==%4.2f",a,b);
    }

    A)Error in Defining Macro
    B)a==1.12,b==3.14
    C)a==3.14,b==1.12
    D)None of teh Above
  10. study the code:
    #include
    void main()
    {
    const int a=0;
    int *p;
    p==&a;
    (*p)++;
    printf("a==%d\n(*p)==%d\n",a,*p);
    }
    What is printed?

    A)100,101 B)100,100 C)101,101 D)None of the above
  11. Which of the following are valid "include" formats?
    A)#include and #include[file.h]
    B)#include (file.h) and #include
    C)#include [file.h] and #include "file.h"
    D)#include and #include "file.h"