Archive for the 'DBMS Papers' Category

VSNL Placement Paper -1

VSNL Design Test Paper Pattern VSNL Design test Which phase is important for design verification? – Design – Planning – Implementation – Building Answer d Match each methodology step in the lettered list with the correct procedure description in the numbered list extracting customer requirements characterizing the existing network designing topology and network solutions building [...]

Microsoft Placement Paper -13

Microsoft Interview Pattern (Page – 7) 56. Write a program to remove duplicates from a sorted array. ANS. int remove_duplicates(int * p, int size) { int current, insert = 1; for (current=1; current < size; current++) if (p[current] != p[insert-1]) { p[insert] = p[current]; current++; insert++; } else current++; return insert; } 57. C++ ( [...]

Microsoft Placement Paper -6

MICROSOFT PLACEMENT PAPER (TECHNICAL) 1. In a X’s and 0′s game (i.e. TIC TAC TOE) if you write a program for this give a fast way to generate the moves by the computer. I mean this should be the fastest way possible. ANS:- The answer is that you need to store all possible configurations of [...]