Wednesday 22 December 2010

MAHINDRA SATYAM SELECTION PROCEDURE

The interview procedure will consist of following three rounds:

       1) Written Test
       2) Technical Interview Round
       3) HR Interview Round

       1) Written Tes

       The Written test consists of 100 questions and the duration is 60 minutes.There are no        negative marks.

       The test paper divided into 6 sections:                   

       a) Logical Reasoning

       b) Verbal Reasoning

       c) Quantitative

       d) English-1

       e) English-2

       f) English-3
                       
       Questions in this section can be of various types like blood relations,analogies in is        alphabets, numerical series. Refer R.S. Aggarwal verbal and non verbal reasoning.

       In Quantitative section questions are allegation and mixture, clock, SI and CI, time        and work, time and distance problems on train, partnership problem. Refer R.S        Aggarwal in this section.

       In English-1: Synonyms, antonyms
       English-2: General grammar refers wren & martin.
       English-3: Two simple reading comprehensions of 10th and intermediate standard.

       2) Technical Interview Round

       The technical part of the aptitude test paper is same for all disciplines of engineering        questions.

       For the technical interview round they mostly ask questions about your area of        specialization. If you have an IT background they may ask questions from basic        c++, Java, So

Lakshmi’s Interview Experience @ ValueLabs as Fresher

Dear Sir,
              I have written value labs this test on 18th Dec,2010.This test was conducted in      ValueLabs, Madhapur. They have conducted this test for the post of entry level engin      eer.For this test, a total of approximately 2000 members have attended.Written test      comprised of 20 questions. Some have options A,B,C,D,E,F.  Some have single word      answers. and some need explanation.Exam pattern is 5 questions on reasoning,
     5 questions on arithmetic, 10 questions on C programming.

          I am giving some of the questions asked in written test in C           programming

          1.main()
          {
          int c[]={2.8,3.4,4,6.7,5};
          int j,*p=c,*q=c;
          for(j=0;j<=5;j++)
          {
          Printf(“%d”,*c);
          ++q;
          }
          For(j=0;j<5;j++)
          {
          Printf(“%d”,*p);
          ++p;
          }
          }
          ANS: 2222223645
          2. main()
          {
          Struct xx
          {
          int x=3;
          char name[]=”hello”;
          };
          Struct xx *s;
          Printf(“%d”,s?x);
          Printf(“%d”,s?name);
          }
          ANS :Compiler error
          3.void main()
          {
          Static int i=i++,j=j++,k=k++;
          Printf(“%d%d%d”,i,j,k);
          }
          ANS: 111
          4. write a program to add 1&1 without using + operator
          5. main()
          {
          int c[]={2,4,6,7,8},*p;
          printf(%u/n”,p);
          }
          6. How can u return multiple values in C language.
          7.main()
          {
          int a[2][3][2]={{{2,4}{7,8}{3,4}}{{2,2}{2,3}{3,4}}};
          printf(“%u%u%u%d\n”,a,*a,**a,***a);
          printf(“%u%u%u%d\n”,a+1,*a+1,**a+1,***a+1);
          }
          ANS: 100,100,100,2
          104,104,102,3
          8. One question given from algorithm find the output.
          9. one question given from datastructures
          10. one question given from Pointers.

Monday 20 December 2010

ORACLE Written Test info for Freshers

Hi Friends
          Oracle has conducted online aptitude exam on 18 December 2010.
          TEST CONDUTED BY : PAC (Professional Aptitude Counsel) ONLINE
          Only students who have greater (>70%) are eligible for the Aptitude exam:
          The test consists of three sections:
          1) APTITUDE - 30 Questions 30 Min
          2) GENERAL COMPUTER SCIENCE KNOWLEDGE - 20 Questions 20 Mins
          3) CODE SKILLS - 15 Qusetions 40 Mins
          Aptitude Questions :
          Some of them i remember are not exactly
          1) A person sell an item at 100 Rs. with 15% profit find C.P.
          2) Average of batsman is 34.If in next innings he scored 119 runs and his average is               37.Find the no. of innings played. Certain other problems like on population, etc.
          3) A train leaves a station at 9.00 p.m. Another train leaves same station at 10.00               p.m. first train runs at 35 kmph and Second train crosses the first train in 4 hours.               Find the speed of the second train.
          4) A two digit no. is 20 greater than no. form on reversing the two digits no. Find the               two digit no.
          5) Today is 14th April and day after tomorrow is Wednesday. What will the last day               of the month?
          6) A do a work in x days and B in y days. Starting from A, they worked for alternate               days. In how many days the work will be completed.
           GENERAL COMPUTER SCIENCE KNOWLEDGE
         1) Which of the following requires a recursive solution (or equavalent use of the              stack).
         A) Factorial function
         B) Lookup in a sorted binary tree
         1) JUST 1          2) JUST 2          3) BOTH           4) NEITHER
         2) Decimal value of bitwise or of 96,48,24,8
         A) 0           B) 64           C) 120          D) 176
         not excatly the same but some thing of that sort
         3) Program uses a stack to visit each of the nodes of a binary tree starting at its root               after a node is visited its children are added to stack in what order do the node of               the tree in the followin diag:
         A-B,C (means A is the root and B, C are its children )
         B-D,E
         C-F,G
         D-H,I
         G-J
         1) A B C D E F G H I J
         2) A B D H I E C F G J
         3) H I D E B F J G C A
         4) H D I B E A F C J G
         This question is there in data structures by Yaswanth Kanitkar.
         4) Which is the regular expression matches string and only those strings that               represent decimal numbers meeting the following R.E
         1) .[0-9].[0-9]+
         2) -?[0-9].0-9[0-9]
         3) -?[0-9]*.[0-9]+
         4)-?[0-9]*.0-9+
         5) A Data Base trigger executes in resopnse to DBMS QUESTION?
         6) A stored procedure in a DBMS is
         7) PSUEDO CODE question :
         find the output of the program
         GLOBLAL N=0;
         FUNCTION FOREACH(COL,F)
         LOCAL N =20;
         FOR EACH ELT IN COLL CO DO F(ELT)
         FUNCTION FN1(COL);LOCAL N=30
         FUNCTION FN2(NUMBER);
         N=N+NUMBER
         FOR EACH(COL,FN2);
         RETURN N
         FN1({1,2,3});
         16
         20
         36
         30
         some thing like that
         8) A field of a data object in a multi threaded program can be read from
         9) How two processes of different system communicate
         thru
         Sockets
         Shared Memory
         Remote Procedure Call
         10) Question on evaluation of expression
         11) Question on C++ classes and inheritance
         12) DATASTRUCTURES questions
      CODING SECTION WAS ENTIRELY DATA STRUCTURES       TREES THAT TOO
         15 question were given and in 40 mins we have solve
         1) CLASS INTERNALNODE EXTENDS NODE {
          @@@ LEFT,RIGHT;
         }
         what type should replace @@@
         INTERNAL NODE
         TERIMINAL NODE
         OBJECT
         NODE
         2) CLASS INTERNALNODE EXTENDS NODE
         {
         NODE LEFT,RIGHT ;
         }
         What constructors should internal node have according to the specification for the tree          structures
         Some thing that sort of questions
         Like that there were 15 questions
         THEY WERE EASY BUT VERY VERY VERY TRICKY
         All what I want to say is if ur cool and 100% good at Data Structures, you can easily          clear the code section in 40 min.
                  ALL THE BEST GUYS
         ONE LAST THING WHAT I WANT TO SAY IS STUDENT WHO HAS STUFF WILL BE          QUALIFIED FOR THIS EXAM

Monday 6 December 2010

Mu-sigma Written Test Information for Freshers

 Hi Friends ,
            This is Srinivasarao Singamaneni . I have attended for Mu-Sigma written test on 4th         December 2010 at Geethanjali College of Engineering & Technology, Cheeryal, (M)         Keesara, Hyderabad?
        The Eligibility for the Recruitment process : 2009/2010 Passed outs of B.Tech from
        CSE / IT / ETC / EEE / E&I /Instrumentation /Mechanical /Civil/ Metallurgy with 60%         through out career (SSC ToB.Tech) .

        For this test, a total of approximately 3600 members have attended .
        The Selection Process contains 3 rounds
               1 .Written Test
               2. GD
               3. Technical & HR
        The written test is a paper based test. It contains total 20 questions and the time         is 20 min. Negative marking is there.
              It contains ,
              1-10Q . Aptitude Questions
              11-15Q. Vocabulary Questions
              16-20Q . Reasoning
          Aptitude Questions:
              The topics covered in this section :
              Time and distances on Trains ……..2Q
              Time and work..…… 2Q
              Cubes…….1Q
              Ages…… 1Q
              Permutations … 1Q
              Profits& loses… 1Q
              Seating order …. 1Q
         Some of them i remember are not exactly
            1.P and Q can complete a job in 20 and 30 days respectively. P started it and after                10 days , Q joined . in how many days will they complete the  remaining work .
               Ans : 6 days  
            2.pipe A can fill an empty tank in 9 hours . pipe B can fill the tank in 15 hours if                both pipes are opened simultaneously when the tank is empty . find the time                taken to fill the tank.
               Ans : 27 H  
            3.There is a cube in which one pair of opposite faces is painted Red the second                pair of opposite faces is Blue and third pair of opposite faces is painted Green                This cube is now cutted into 216 smaller but identical cubes. How many small                cubes are without any face painted .
               Ans: 64
            4.P, Q, R , S , T sit around a table . T is to the immediate right of p. Q and R on                either side of S . Who sits b/w R and T .
               Ans : P
            5.Find the time taken by a train , 100km long traveling at a speed of 63 kmph to                cross a platform of length 250 Km.
               Ans : 20 sec
            6.Find the time taken by a 200m long train running at 36kmph to cross a boy                standing on a platform
               Ans : 20 sec
            11-15Q. Vocabulary Questions
           Each Question contain a passage with 5 to 6 lines and Different types of questions            for each passage like.
           What is the summary of the passage The appropriate statement for the passage
           The inappropriate statement for the passage

           15-20Q.Reasoning  
           It contain one Diagram followed with 5 questions .
           First , we must understand the diagram . The diagram with the specified data can            understand even an SSC student also.We can get full marks in this section.Simple            calculations for the questions with the specified data .
           There is negative marking . That’s why I didn’t attempt all the Questions
           I attended 7Q from Aptitude,3Q from vocabulary and 5Q from the Diagram.            Totally I attempted 15Q from the 20Q .
           I Cleared the written test . But I did not Know the cutoff marks .Its compulsory to            attempt some questions from all the Sections,because sometimes they will consi-
           der the sectional cutoffs also. Some times The accuracy 100% ( all the attempted            Questions must be correct)also important so be confident .

           So guys crack the Exam with peaceful mind without any tensions . There is no            typical and no time taking questions for the Mu_sigma written test .
                                          All the Best……