Pages

Friday 7 September 2012

NEVIS NETWORKs Interview Questions

NEVIS NETWORKs Interview Questions 2010 IIT Guwahati
Test+ interview + Telephonic Interview

Selection criteria :
They prefer candidates with network project either in BTP or in MTP.
Test contains two parts, part A have C programming questions and part b has C questions and VLSI . U can choose either one.
Intreview (only Project)
Telephonic Interview(only abt Resume)
All the c questions are from Kernighan and Ritchie book .

Q. WAP for conversion string to float.
Q.Preorder Traversal for a given tree.
Q. WAP for DFS(depth first search).
Q. Question about storage classes.
Q. What is linkage error ?
Q. Program for Number conversion (octal to binary)


Q. Int i=0;
   While(++i<5)
    {
       For(j=0;j<10;j++)
           If(i==j)
             break;
What is the value of i at end of the program ?

 Q. #define min(a,b) (a)<(b) ? a: b;
     Main()
      {
           Int a=5,b=4,k;
           K=min(a++,b--);
           Printf(“%d %d %d”,a,b,k);
        }
     What is the o/p;
Q.
     struct
      {
       Int a;
       Char ch;
      }x;
    Printf(“%d”,sizeof(x));

  What is the o/p;

No comments: