FirstRanker.com

Search results for: “ic”

  • CSC Placement Paper June 2010

    CSC Paper on 14th June 2010 @ AVANTHI ENGG COLLEGE, VISAKHAPATNAM

    The recruitment process is as follows:

    Presentation
    Technical test
    Aptitude Test
    JAM(JUST A MINUTE)
    TECHNICAL INTERVIEW
    HR INTERVIEW
    PRESENTATION

    In the presentation,the company had made a brief introduction of their firm , with selection process details and job profile and so on..It lasted for about half an hour or so…

    1. TECHNICAL TEST:

    First,they gave the technical paper to solve to get shortlisted for the second round.It consistd of 75 qstns to be solved in 40 minutes.It was like a piece of cake for me to solve the paper.plss read the qstns and answers which i give and all are right answers…

    1.WSDL is associated with webservices.

    2.BLOB is any large single block of data stored in a database, such as a picture or sound file, which does not include record fields, and cannot be directly searched by the database?s search engine.

    3. cache memory is a reserved area of the immediate access memeory used to increase the running speed of the computer program.

    4. DMZ is a small subnet that sit between atrusted internal network and an untruster external network, such as the public internet.

    5.RFID technologies that use radio waves to automatically identify people or objects,which is very similar to the barcode identification systems,seen in retail stores everyday.

    6.main(){

    float fl = 10.5;

    double dbl = 10.5

    if(fl ==dbl)

    printf(?UNITED WE STAND?);

    else

    printf(?DIVIDE AND RULE?)

    }

    what is the output? UNITED WE STAND

    7.main(){

    static int ivar = 5;

    printf(?%d?,ivar–);

    if(ivar)

    main();

    }

    what is the output? 5 4 3 2 1

    8.main()

    {

    extern int iExtern;

    iExtern = 20;

    printf(?%d?,iExtern);

    }

    what is the output? linker error

    9..#define clrscr() 100

    main(){

    clrscr();

    printf(?%d\n\t?, clrscr());

    }

    what is the output? 100

    10.main()

    {

    void vpointer;

    char cHar = ?g?, *cHarpointer = ?GOOGLE?;

    int j = 40;

    vpointer = &cHar;

    printf(?%c?,*(char*)vpointer);

    vpointer = &j;

    printf(?%d?,*(int *)vpointer);

    vpointer = cHarpointer;

    printf(?%s?,(char*)vpointer +3);

    }

    what is the output? g40GLE

    11.#define FALSE -1

    #define TRUE 1

    #define NULL 0

    main() {

    if (NULL)

    puts (?NULL?);

    else if(FALSE)

    puts (?TRUE?);

    else

    puts (?FALSE?);

    }

    what is the output? TRUE

    12.main() {

    int i =5,j= 6, z;

    printf(?%d?,i+++j);

    }

    what is the output? 11

    13.main() {

    int i ;

    i = accumulator();

    printf(?%d?,i);

    }

    accumulator(){

    _AX =1000;

    }

    what is output? 1000

    14.main() {

    int i =0;

    while(+(+i–)!= 0)

    i- = i++;

    printf(?%d?,i);

    }

    what is the output? -1

    15.main(){

    int i =3;

    for(; i++=0Wink

    printf((?%d?,i);

    }

    what is the output? compiler error:L value required.

    16.main(){

    int i = 10, j =20;

    j = i ,j?(i,j)?i :j:j;

    printf(?%d%d?,i,j);

    }what is the output? 10 10

    17.main(){

    extern i;

    printf(?%d\t?,i);{

    int i =20;

    printf(?%d\t?,i);

    }

    }

    what is output? linker Error:unresolved external symbol

    18.int DIMension(int array[]){

    return sizeof(array/sizeof(int);}

    main(){

    int arr[10];

    printf(?Array dimension is %d?,DIMension(arr));

    }

    what is output? array dimension is 1

    19.main()

    {

    void swap();

    int x = 45, y = 15;

    swap(&x,&y);

    printf(?x = %d y=%d?x,y);

    }

    void swap(int *a, int *b){

    *a^=*b, *b^=*a, *a^ = *b;

    what is the output? x = 15, y =45

    20.main(){

    int i =257;

    int *iptr =&i;

    printf (?%d%d?,*((char*)iptr),* ((char *)iptr+1));

    }

    what is output? 1 1

    21.main(){

    int i =300;

    char *ptr = &i;

    *++ptr=2;

    printf(?%d?,i);

    }

    what is output? 556

    22. #include

    main(){

    char *str =?yahoo?;

    char *ptr =str;

    char least =127;

    while(*ptr++)

    least = (*ptr

    printf (?%d?,least);

    }

    what is the output? 0

    23.Declare an array of M pointers to functions returing pointers to functions returing pointers to characters.

    (char*(*)())(*ptr[M])()

    24.void main(){

    int I =10, j=2;

    int *ip = &I ,*jp =&j;

    int k = *ip/*jp;

    printf(?%d?,k);

    }

    what is the output? compile error:unexpected end of file in comment started in line 4

    25.main()
    {

    char a[4] =?GOOGLE?;

    printf(?%s?,a);

    }

    what is the output? compile error: too many initializers

    26.For 1MB memory, the number of address lines required 20

    27.There is a circuit using 3 nand gates with 2 inputes and 1 output,f ind the output. OR

    28.what is done for push operation

    SP is decremented and then the value is stored.

    29.Memory allocation of variables declared in a program is Allocated in stack

    30.What action is taken when the processer under execution is interrupted by TRAP in 8085MPU?

    Processor serves the interrupt request after completing the execution of the current instruction.

    31.purpose of PC (program counter)in a microprocessor is

    To store address of next instructions to be executed

    32.conditional results after execution of an instruction in a microprocess is stored in

    flag register part of PSW (program status word)

    33.The OR gate can be converted to the NAND function by adding NOT gate(s)to the input of the OR gate.

    34.In 8051microcontroller port 2 has a dual function.

    35.An 8085 based microprocessor with 2MHz clock frequency,will execute the following chunk of code with how much delay?

    MVI B,38H

    HAPPY: MVI C, FFH

    SADDY: DCR C

    JNZ SADDY

    DCR B

    JNC HAPPY
    114.5 (not sure)

    36.In 8085 MPU what will be the status of the flag after the execution of the following chunk of code.

    MVI B,FFH

    MOV A,B

    CMA

    HLT

    S = 0, Z = 1, CY = 0

    37.A positive going pulse which is always generated when 8085 MPU begins the machine cycle.

    ALE

    38.when a CALL instruction of 8085 MPU is fetched , its second and third bytes are placed in the W and Z registers.

    39.what is defined as one subdivision of the operation performed in one clock period.

    a) T- State b) Instruction Cycle c) Machine Cycle d) All of the above

    40.At the end of the following code, what is the status of the flags.

    LXI B, AEC4H

    MOV A,C

    ADD B

    HLT S = 0, CY = 1, P = 1 , AC = 1

    46.The repeated execution of a loop of code while waiting for an event to occur is called busy waiting The cpu is not engaged in any real productive activity during this period,and the process doesn?t progress towards completion.

    47. Transparent DBMS is defined as
    A DBMS which keeps its physical structure hidden from user

    48.Either all actions are carried out or none are.users should not have to worry about the effect of incomplete transctions.DBMS ensures this by undoing the actions of incomplete transctions.this property is known as atomicity

    49. placement algorithms determines where in available to load a program. common methods are first fit,next fit,best fit. replacement algorithm are used when memory is full , and one process (or part of a process) needs to be swaped out to accommodate a new program.The replacement algorithm determines which are the partions to be swaped out.

    50.Trap door is a secret undocumented entry point into a program used to grant access without normal methods of access authentication.A trap is a software interrupt,usually the result of an error condition. false.

    55.in recursive implementations which of the following is true for saving the state of the steps

    a) as full state on the stack

    b) as reversible action on the stack

    c) both a and b

    56.which of the following involves context switch

    a) previliged instruction

    b) floating point exception

    c) system calls

    d) all

    e) none

    57.piggy backing is a technique for

    a) acknowledge

    b) sequence

    c) flow control

    d) retransmission

    58. a functional dependency XY is ___________dependency if removal of any attribute A from X means that the dependency does not hold any more

    a) full functional

    b) multi valued

    c) single valued

    d) none

    59)a relation schema R is in BCNF if it is in ___________and satisfies an additional constraints that for every functional dependency XY,X must be a candidate key
    a)1 NF

    b)2 NF

    c)3 NF

    d)5 NF

    60) a _________sub query can be easily identified if it contains any references to the parent sub query columns in the _________ clause

    A) correlated ,WHERE

    b) nested ,SELECT

    c) correlated, SELECT

    d) none

    61) hybrid devise that combines the features of both bridge and router is known as
    a)router b)bridge c)hub d)brouter

    62) which of the following is the most crucial phase of SDLC

    a) testing b) code generation c) analysys and design d) implementation

    63)to send a data packet using datagram ,connection will be established

    a) no connection is required

    b) connection is not established before data transmission

    c) before data transmission

    d) none

    64)a software that allows a personal computer to pretend as as computer terminal is

    a) terminal adapter

    b) terminal emulation

    c) modem

    d) none

    65) super key is

    a) same as primary key

    b) primary key and attribute

    c) same as foreign key

    d) foreign key and attribute

    66.In binary search tree which traversal is used for ascending order values
    a) Inorder b)preorder c)post order d)none

    67.You are creating an index on ROLLNO colume in the STUDENT table.which statement will you use?

    a) CREATE INDEX roll_idx ON student, rollno;

    b) CREATE INDEX roll_idx FOR student, rollno;

    c) CREATE INDEX roll_idx ON student( rollno);

    d) CREATE INDEX roll_idx INDEX ON student (rollno);

    68.A________class is a class that represents a data structure that stores a number of data objects
    a. container b.component c.base d.derived

    69.Which one of the following phases belongs to the compiler Back-end.

    a. Lexical Analysis b.Syntax Analysis c. Optimization d.Intermediate Representation.

    70.Every context _sensitive language is context_free

    a. true b.false

    71.Input:A is non-empty list of numbers L

    X?-infinity

    For each item in the list L,do

    If the item>x,then

    X?the item

    Return X

    X represents:-

    a)largest number

    b)smallest number

    c)smallest negative number

    d) none

    72.Let A and B be nodes of a heap,such that B is a child of A. the heap must then satisfy the following conditions

    a) key(A)>=key(B)

    b) key(A)

    c) key(A)=key(B)

    d) none

    73.String ,List,Stack,queue are examples of___________

    a) primitive data type

    b) simple data type

    c) Abstract data type

    d) none

    74.which of the following is not true for LinkedLists?

    a) The simplest kind of linked list is a single linked list ,which has one link per node .this link points to the next node in the list,or to a null value or emptylist if it is the last node.
    b)a more sophisticated kind of linked list is a double linkedlist or two way linkedlist .Each node has two links ,one to the previous node and one to the next node.

    c) in a circleLinkedList ,the first and last nodes are linked together.this can be done only for double linked list.

    d) to traverse a circular linkedlist ,u begin at any node and follow the list in either direction until u return to the original node.

    75.sentinel node at the beginning and /or at the end of the linkedlist is not used to store the data
    a) true

    b) false

    Along with this paper you would be given 4 topics(ESSAY WRITING).Here we have to chose one topic and write an essay.i wrote on “PARENTS ARE THE BEST TEACHERS”

    The results were announced in half an hour..I was shortlistd for the secod round.The next round was Aptitude Test.

    2. APTITUDE TEST:

    This paper consists of 40 qstns to be solved in 40 minutes.This section was moderate(not so difficult).

    –>One qstsn was on propabiltity like there are 3 piles of books.Each containing 6,5,4 books.What is the propability that first book will be arranged and so on.. ans: 12!

    —>One qstn on profit and loss..

    —>one qstns on speed and distance.

    —>there were 3 fill ups with suitable words. (easy)

    —>there were 5-6 passages (all easy)

    —>there were 3-4 analogies.

    —>one qstns on permutation.

    —>one qstn was on ages..

    —->two qstns were from ratios.

    —->Then one one problem from geometry containing 3 sub-qstns.(See BARRONS GRE.it would be helpful)

    —->One function like f(0,x)=x+1
    f(0,y)=y
    f(0,0)=1
    f(x,y)=f(x+2,f(y-1))(not the exact qstns but similar like that) then find f(1,1),f(3,0).f(1,2),then derive f(3,0) in terms of f(0.0),f(1,0),f(1,2).Totally 5 sub qstns ..all were easy..

    —->One Sudoku problem..A 3*3 block in which only 2 blocks were filled.The remaining bloxks had to be filled such that diagonally,vertically, horizontally it should sum up to 15..based on this 5 easy qstns were given..

    The results were out. I was shortlistd for the third round (JAM)..

    3. JAM (COMMUNICATION TEST)

    Here ,we were given a topic and to speak on that for about a minute. My batch had “SOCIAL RESPONSIBILITY”. Other batches had “ROLE MODEL”, “3 IMPORTANT PROBLEMS OF INDIA”. Unfortunately, HR was unimpressed with my speech. But,frnds talk loudly,with confidence.Express your ideas with a clarity in your ideas.Dont take lite,as this your chance to show who you are.So,try to give your best shot.. Dont pause.Keep a smile on your face.Around 22 were shortlistd for the TECHNICAL INTERVIEW round.

    4. TECHNICAL INTERVIEW

    Be confident with ur basic skills (C,C++).If you are of ECE be confident with your core knowledge.It helps you a lot.Be cool as much as you can.

    5. HR INTERVIEW

    It is a normal round checking your communication skills and your personal skills.Be bold and confident.You would definitely go through this round.

    CSC Paper on 5th June 2010 @ Vardhaman College, Hyderabad

    The Selection process was 4 rounds
    1.Written Test(90 mins)

    It was some wat easy?..r.s .agarwal is enough??

    a.Apptitude(40 ques-40 mins)

    1)They give 5 bits on functions like

    F(x,o)=1;

    F(0,y)=3;f(x,y)=5;f(0,0)=5; then find f(0,1),f(1,1),etc??very easy,

    2)One problem on ages.which is very simple

    3)one bit on trains….

    4)they give one 3*3 suduku?it was very easy

    Based on this 3 ques wer e given.

    5)venn diagrams

    Based on this they give 3 ques it was easy ?.like in a college, 50 students like English,60 studens like maths, 20 like both,???.etc??.they ask how many English only??..like this vey easy

    Any how prepare RS agarwal it is more than enough?????

    b.Technical written(75 ques—–40 mins)

    1.——- is associated with webservices.

    a) WSDL b) WML c) web sphere d) web logic
    2.any large single block of data stored in a database, such as a picture or sound file, which does not include record fields, and cannot be directly searched by the database?s search engine.

    a) TABLE b) BLOB c) VIEW d) SCHEME
    3.Areserved area of the immediate access memeory used to increase the running speed of the computer program.

    a) session memory b) bubble memory c) cache memory d) shared memory
    4.a small subnet that sit between atrusted internal network and an untruster external network, such as the public internet.

    a) LAN b) MAN c) WAN d) DMZ
    5.technologies that use radio waves to automatically identify people or objects,which is very similar to the barcode identification systems,seen in retail stores everyday.

    a)BLUETOOTH b) RADAR c)RSA SECURE ID d)RFID

    6.main(){

    float fl = 10.5;

    double dbl = 10.5

    if(fl ==dbl)

    printf(?UNITED WE STAND?);

    else

    printf(?DIVIDE AND RULE?)

    }

    what is the output?

    a) compilation error b)UNITED WE STAND c)DIVIDE AND RULE d)linkage error.

    7.main(){

    static int ivar = 5;

    printf(?%d?,ivar–);

    if(ivar)

    main();

    }

    what is the output?

    a)1 2 3 4 5 b) 5 4 3 2 1 c)5 d)compiler error:main cannot be recursive function.

    8.main()

    {

    extern int iExtern;

    iExtern = 20;

    printf(?%d?,iExtern);

    }

    what is the output?

    a)2 b) 20 c)compile error d)linker error

    9..#define clrscr() 100

    main(){

    clrscr();

    printf(?%d\n\t?, clrscr());

    }

    what is the output?

    a)100 b)10 c)compiler errord)linkage error

    10.main()

    {

    void vpointer;

    char cHar = ?g?, *cHarpointer = ?GOOGLE?;

    int j = 40;

    vpointer = &cHar;

    printf(?%c?,*(char*)vpointer);

    vpointer = &j;

    printf(?%d?,*(int *)vpointer);

    vpointer = cHarpointer;

    printf(?%s?,(char*)vpointer +3);

    }

    what is the output?

    a)g40GLE b)g40GOOGLE c)g0GLE d)g4GOO

    11.#define FALSE -1

    #define TRUE 1

    #define NULL 0

    main() {

    if (NULL)

    puts (?NULL?);

    else if(FALSE)

    puts (?TRUE?);

    else

    puts (?FALSE?);

    }

    what is the output?

    a) NULL b) TRUE c) FALSE d)0

    12.main() {

    int i =5,j= 6, z;

    printf(?%d?,i+++j);

    }

    what is the output?

    a)13 b)12 c)11 d) compiler error

    13.main() {

    int i ;

    i = accumulator();

    printf(?%d?,i);

    }

    accumulator(){

    _AX =1000;

    }

    what is output?

    a)1 b)10 c)100 d)1000

    14.main() {

    int i =0;

    while(+(+i–)!= 0)

    i- = i++;

    printf(?%d?,i);

    }

    what is the output?

    a)-1 b)0 c)1 d)will go in an infinite loop

    15.main(){

    int i =3;

    for(; i++=0Wink

    printf((?%d?,i);

    }

    what is the output?

    a)1b)2c)1 2 3d)compiler error:L value required.

    16.main(){

    int i = 10, j =20;

    j = i ,j?(i,j)?i :j:j;

    printf(?%d%d?,i,j);

    }what is the output?

    a)20 b)20 c)10 d)10

    17.main(){

    extern i;

    printf(?%d\t?,i);{

    int i =20;

    printf(?%d\t?,i);

    }

    }

    what is output?
    a) ?Extern valueof i ? 20 b)Externvalue of i?c)20d)linker Error:unresolved external symbol i

    18.int DIMension(int array[]){

    return sizeof(array/sizeof(int);}

    main(){

    int arr[10];

    printf(?Array dimension is %d?,DIMension(arr));

    }

    what is output?

    a)array dimension is 10 b)array dimension is 1

    c) array dimension is 2 d)array dimension is 5

    19.main()

    {

    void swap();

    int x = 45, y = 15;

    swap(&x,&y);

    printf(?x = %d y=%d?x,y);

    }

    void swap(int *a, int *b){

    *a^=*b, *b^=*a, *a^ = *b;

    what is the output?
    a) x = 15, y =45 b)x =15, y =15 c)x =45 ,y =15 d)x =45 y = 45

    20.main(){

    int i =257;

    int *iptr =&i;

    printf (?%d%d?,*((char*)iptr),* ((char *)iptr+1));

    }

    what is output?

    a)1, 257 b)257 1c)0 0d)1 1

    21.main(){

    int i =300;

    char *ptr = &i;

    *++ptr=2;

    printf(?%d?,i);

    }

    what is output?

    a)556 b)300 c)2 d)302

    22. #include

    main(){

    char *str =?yahoo?;

    char *ptr =str;

    char least =127;

    while(*ptr++)

    least = (*ptr

    printf (?%d?,least);

    }

    what is the output?

    a)0 b)127 c) yahoo d) y

    23.Declare an array of M pointers to functions returing pointers to functions returing pointers to characters.

    a)(*ptr[M]()(char*(*)()); b)(char*(*)())(*ptr[M])()

    c) (char*(*)(*ptr[M]())(*ptr[M] () d)(char*(*)(char*()))(*ptr[M]) ();

    24.void main(){

    int I =10, j=2;

    int *ip = &I ,*jp =&j;

    int k = *ip/*jp;

    printf(?%d?,k);

    }

    what is the output?

    a)2 b)5 c)10 d)compile error:unexpected end of file in comment started in line 4

    25.main()
    {

    char a[4] =?GOOGLE?;

    printf(?%s?,a);

    }

    what is the output?

    a)2 b) GOOGLE c) compile error: yoo mant initializers d) linkage error.

    26.For 1MB memory, the number of address lines required

    a)12 b)16 c)20 d)32

    27.There is a circuit using 3 nand gates with 2 inputes and 1 output,f ind the output.

    a) AND b) OR c) XOR d) NAND

    28.what is done for push operation

    a) SP is incremented and then the value is stored.

    b) PC is incremented and then the value is stored.

    c) PC is decremented and then the value is stored.

    d) SP is decremented and then the value is stored.

    29.Memory allocation of variables declared in a program is ——

    a) Allocated in RAM

    b) Allocated in ROM

    c) Allocated in stack

    d) Assigned in registers.

    30.What action is taken when the processer under execution is interrupted by TRAP in 8085MPU?

    a) Processor serves the interrupt request after completing the execution of the current instruction.

    b) processer serves the interrupt request after completing the current task.

    c) processor serves the interrupt immediately.

    d) processor serving the interrupt request depent deprnds upon the priority of the current task under execution.

    31.purpose of PC (program counter)in a microprocessor is —-

    a) To store address of TOS(top of stack)

    b) To store address of next instructions to be executed

    c) count the number of instructions

    d) to store the base address of the stack.

    32.conditional results after execution of an instruction in a microprocess is stored in

    a) register b) accumulator c) flag register d) flag register part of PSW (program status word)

    33.The OR gate can be converted to the NAND function by adding—-gate(s)to the input of the OR gate.

    a) NOT b) AND c) NOR d) XOR

    34.In 8051microcontroller ,——has a dual function.

    a) port 3 b) port 2 c) port 1 d) port 0

    35.An 8085 based microprocessor with 2MHz clock frequency,will execute the following chunk of code with how much delay?

    MVI B,38H

    HAPPY: MVI C, FFH

    SADDY: DCR C

    JNZ SADDY

    DCR B

    JNC HAPPY
    a) 102.3 b)114.5 c)100.5 d)120

    36.In 8085 MPU what will be the status of the flag after the execution of the following chunk of code.

    MVI B,FFH

    MOV A,B

    CMA

    HLT

    a)S = 1, Z = 0, CY = 1 b)S = 0, Z = 1, CY = 0

    c) S = 1, Z = 0, CY = 0 d)S = 1, Z = 1 ,CY = 1

    37.A positive going pulse which is always generated when 8085 MPU begins the machine cycle.

    a) RD b) ALE c) WR d) HOLD

    38.when a —– instruction of 8085 MPU is fetched , its second and third bytes are placed in the W and Z registers.

    a) JMP b) STA c) CALL d) XCHG

    39.what is defined as one subdivision of the operation performed in one clock period.

    a) T- State b) Instruction Cycle c) Machine Cycle d) All of the above

    40.At the end of the following code, what is the status of the flags.

    LXI B, AEC4H

    MOV A,C

    ADD B

    HLT a) S = 1, CY = 0, P = 0 , AC = 1 b) S =0 , CY = 1, P = 0,AC = 1 c) S = 0, CY = 1, P = 0 , AC = 1 d) S = 0, CY = 1, P = 1 , AC = 1

    46.The repeated execution of a loop of code while waiting for an event to occur is called ———.The cpu is not engaged in any real productive activity during this period,and the process doesn?t progress towards completion.
    a) dead lock b) busy waiting c) trap door d) none.
    47. Transparent DBMS is defined as
    a) A DBMS in which there are no program or user access languages. b) A DBMS which has no cross file capabilities but is user friendly and provides user interface management. c) A DBMS which keeps its physical structure hidden from user d) none.
    48.Either all actions are carried out or none are.users should not have to worry about the effect of incomplete transctions.DBMS ensures this by undoing the actions of incomplete transctions.this property is known as
    a) Aggregation b) atomicity c) association d) data integrity.
    49.—— algorithms determines where in available to load a program. common methods are first fit,next fit,best fit.——— algorithm are used when memory is full , and one process (or part of a process) needs to be swaped out to accommodate a new program.The ————- algorithm determines which are the partions to be swaped out.
    a) placement, placement, replacement
    b) replacement, placement, placement
    c) replacement, placement, replacement
    d) placement, replacement, replacement
    50.Trap door is a secret undocumented entry point into a program used to grant access without normal methods of access authentication.A trap is a software interrupt,usually the result of an error condition.
    a)true b)false.

    55.in recursive implementations which of the following is true for saving the state of the steps

    a) as full state on the stack

    b) as reversible action on the stack

    c) both a and b

    d) none

    56.which of the following involves context switch

    a) previliged instruction

    b) floating point exception

    c) system calls

    d) all

    e) none

    57.piggy backing is a technique for

    a) acknowledge

    b) sequence

    c) flow control

    d) retransmission

    58. a functional dependency XY is ___________dependency if removal of any attribute A from X means that the dependency does not hold any more

    a) full functional

    b) multi valued

    c) single valued

    d) none

    59)a relation schema R is in BCNF if it is in ___________and satisfies an additional constraints that for every functional dependency XY,X must be a candidate key
    a)1 NF

    b)2 NF

    c)3 NF

    d)5 NF

    60) a _________sub query can be easily identified if it contains any references to the parent sub query columns in the _________ clause

    A) correlated ,WHERE

    b) nested ,SELECT

    c) correlated, SELECT

    d) none

    31.purpose of PC (program counter)in a microprocessor is —-

    a) To store address of TOS(top of stack)

    b) To store address of next instructions to be executed

    c) count the number of instructions

    d) to store the base address of the stack.

    32.conditional results after execution of an instruction in a microprocess is stored in

    a) register b) accumulator c) flag register d) flag register part of PSW (program status word)

    33.The OR gate can be converted to the NAND function by adding—-gate(s)to the input of the OR gate.

    a) NOT b) AND c) NOR d) XOR

    34.In 8051microcontroller ,——has a dual function.

    a) port 3 b) port 2 c) port 1 d) port 0

    35.An 8085 based microprocessor with 2MHz clock frequency,will execute the following chunk of code with how much delay?

    MVI B,38H

    HAPPY: MVI C, FFH

    SADDY: DCR C

    JNZ SADDY

    DCR B

    JNC HAPPY
    a) 102.3 b)114.5 c)100.5 d)120

    36.In 8085 MPU what will be the status of the flag after the execution of the following chunk of code.

    MVI B,FFH

    MOV A,B

    CMA

    HLT

    a)S = 1, Z = 0, CY = 1 b)S = 0, Z = 1, CY = 0
    c) S = 1, Z = 0, CY = 0 d)S = 1, Z = 1 ,CY = 1

    37.A positive going pulse which is always generated when 8085 MPU begins the machine cycle.

    a) RD b) ALE c) WR d) HOLD

    38.when a —– instruction of 8085 MPU is fetched , its second and third bytes are placed in the W and Z registers.

    a) JMP b) STA c) CALL d) XCHG

    39.what is defined as one subdivision of the operation performed in one clock period.

    a) T- State b) Instruction Cycle c) Machine Cycle d) All of the above

    40.At the end of the following code, what is the status of the flags.

    LXI B, AEC4H

    MOV A,C

    ADD B

    HLT

    a) S = 1, CY = 0, P = 0 , AC = 1 b) S =0 , CY = 1, P = 0,AC = 1

    c) S = 0, CY = 1, P = 0 , AC = 1 d) S = 0, CY = 1, P = 1 , AC = 1
    46.The repeated execution of a loop of code while waiting for an event to occur is called ———.The cpu is not engaged in any real productive activity during this period,and the process doesn?t progress towards completion. a) dead lock b) busy waiting c) trap door d) none.

    47. Transparent DBMS is defined as
    a) A DBMS in which there are no program or user access languages. b) A DBMS which has no cross file capabilities but is user friendly and provides user interface management. c) A DBMS which keeps its physical structure hidden from user d) none.
    48.Either all actions are carried out or none are.users should not have to worry about the effect of incomplete transctions.DBMS ensures this by undoing the actions of incomplete transctions.this property is known as
    a) Aggregation b) atomicity c) association d) data integrity.
    49.—— algorithms determines where in available to load a program. common methods are first fit,next fit,best fit.——— algorithm are used when memory is full , and one process (or part of a process) needs to be swaped out to accommodate a new program.The ————- algorithm determines which are the partions to be swaped out.
    a) placement, placement, replacement
    b) replacement, placement, placement
    c) replacement, placement, replacement
    d) placement, replacement, replacement
    50.Trap door is a secret undocumented entry point into a program used to grant access without normal methods of access authentication.A trap is a software interrupt,usually the result of an error condition.
    a)true b)false.
    52.which one of the following is the recursive travel technique.
    a)depth first search b)preorder c)breadth first search d)none.

    55.in recursive implementations which of the following is true for saving the state of the steps

    a)as full state on the stack
    b) as reversible action on the stack
    c)both a and b
    d)none

    56.which of the following involves context switch

    a) previliged instruction

    b) floating point exception

    c) system calls
    d)all
    e) none

    57.piggy backing is a technique for

    a) acknowledge
    b) sequence

    c) flow control
    d) retransmission

    58. a functional dependency XY is ___________dependency if removal of any attribute A from X means that the dependency does not hold any more
    a) full functional

    b) multi valued
    c) single valued

    d) none

    59)a relation schema R is in BCNF if it is in ___________and satisfies an additional constraints that for every functional dependency XY,X must be a candidate key
    a)1 NF

    b)2 NF

    c)3 NF

    d)5 NF

    60) a _________sub query can be easily identified if it contains any references to the parent sub query columns in the _________ clause

    A) correlated ,WHERE

    b) nested ,SELECT

    c) correlated,SELECT

    d) none

    61) hybrid devise that combines the features of both bridge and router is known as
    a)router b)bridge c)hub d)brouter

    62) which of the following is the most crucial phase of SDLC

    a) testing b) code generation c) analysys and design d) implementation

    63)to send a data packet using datagram ,connection will be established

    a) no connection is required

    b) connection is not established before data transmission

    c) before data transmission

    d) none

    64)a software that allows a personal computer to pretend as as computer terminal is

    a) terminal adapter

    b) terminal emulation

    c) modem

    d) none

    65) super key is

    a) same as primary key

    b) primary key and attribute

    c) same as foreign key

    d) foreign key and attribute

    66.In binary search tree which traversal is used for ascending order values
    a) Inorder b)preorder c)post order d)none

    67.You are creating an index on ROLLNO colume in the STUDENT table.which statement will you use?

    a) CREATE INDEX roll_idx ON student, rollno;

    b) CREATE INDEX roll_idx FOR student, rollno;

    c) CREATE INDEX roll_idx ON student( rollno);

    d) CREATE INDEX roll_idx INDEX ON student (rollno);

    68.A________class is a class that represents a data structure that stores a number of data objects
    a. container b.component c.base d.derived

    69.Which one of the following phases belongs to the compiler Back-end.

    a. Lexical Analysis b.Syntax Analysis c. Optimization d.Intermediate Representation.

    70.Every context _sensitive language is context_free

    a. true b.false

    71.Input:A is non-empty list of numbers L

    X?infinity

    For each item in the list L,do

    If the item>x,then

    X?he item

    Return X

    X represents:-

    a)largest number

    b)smallest number

    c)smallest negative number

    d) none

    72.Let A and B be nodes of a heap,such that B is a child of A. the heap must then satisfy the following conditions

    a) key(A)>=key(B)

    b) key(A)

    c) key(A)=key(B)

    d) none

    73.String ,List,Stack,queue are examples of___________

    a) primitive data type

    b) simple data type

    c) Abstract data type

    d) none

    74.which of the following is not true for LinkedLists?

    a) The simplest kind of linked list is a single linked list ,which has one link per node .this link points to the next node in the list,or to a null value or emptylist if it is the last node.
    b)a more sophisticated kind of linked list is a double linkedlist or two way linkedlist .Each node has two links ,one to the previous node and one to the next node.

    c) in a circleLinkedList ,the first and last nodes are linked together.this can be done only for double linked list.

    d) to traverse a circular linkedlist ,u begin at any node and follow the list in either direction until u return to the original node.

    75.sentinel node at the beginning and /or at the end of the linkedlist is not used to store the data
    a) true

    b) false

    c.Essay Writing(10 mins)

    How can you prevent pollution ?.

    And some other three topics, v have to select one

    2.GD

    in this around 1500 wrote written I heared that 150 selected for GD. I was one of them ?but I lost in GD,it was not like GD ,but like JAM session??..the HR will give one min for each one ,we have to speak on one particular topic ,topic will be given by hr, but I lost in this round,

    3.Technical interview

    My friend s two members selected for technical??..they asked basic questions from our academic subjects??.so it was very good,and finally one of my friend cleared Technical also ??..

    4.HR.

    In HR they just focused on our behavior and confidence and company details

    CSC PAPER ON 12th MAY AT GITA, BHUBANESWAR

    I. General Aptitude (round 1)
    These are the some qts

    1. Sudoku. you need to fill-up the table using the hint(addition of row, column, diagonal =15) and available cell values. its easy. if you figure it out, you can answer(very easy)
    five questions correctly.
    2.If y=MAX((3x+y),(11x-y)) then what’s the value of y?
    3.1 Que. on book arrangement. if u find out the series you can ans five ques. correctly.
    4.2 Ques. on Probability, ages
    5. Ages
    6. Venn diagram –> Out of 100 students, 45 do not know typing, 60 know shorthand. 25 know both 6 do not know anything then find out haw many know both?
    7. if f(y,0)=y+1, f(o,x)=x; f(y,x)=f(f(y,0),f(2*y-1)) then find f(1,1),f(2,3),f(3,0); 3 question based on this. Its very very simple…
    8. 1 Ques on Percentage : Price of a book increases 15% successively (2times) what is the new price of the book more compared to that of the old price:
    a)32.25% b)23.34% c)36% d)39%
    9. 2 Questions based on Time and speed.
    10. Passage and questions…

    11.question on synonyms and antonyms

    II. Technical Aptitude (round 2)
    This is a 40 minutes paper containing 75 questions. ? There is no negative marking
    1.——- is associated with webservices.
    a) WSDL b) WML c) web sphere d) web logic

    2.any large single block of data stored in a database, such as a picture or sound file, which does not include record fields, and cannot be directly searched by the database?s search engine.
    a) TABLE b) BLOB c) VIEW d) SCHEME

    3.Areserved area of the immediate access memeory used to increase the running speed of the computer program.
    a) session memory b) bubble memory c) cache memory d) shared memory

    4.a small subnet that sit between atrusted internal network and an untruster external network, such as the public internet.
    a) LAN b) MAN c) WAN d) DMZ

    5.technologies that use radio waves to automatically identify people or objects,which is very similar to the barcode identification systems,seen in retail stores everyday.
    a)BLUETOOTH b) RADAR c)RSA SECURE ID d)RFID

    6.main(){
    float fl = 10.5;
    double dbl = 10.5
    if(fl ==dbl)
    printf(?UNITED WE STAND?);
    else
    printf(?DIVIDE AND RULE?)
    }
    what is the output?
    a) compilation error b)UNITED WE STAND c)DIVIDE AND RULE d)linkage error.
    7.main(){
    static int ivar = 5;
    printf(?%d?,ivar–);
    if(ivar)
    main();
    }
    what is the output?
    a)1 2 3 4 5 b) 5 4 3 2 1 c)5 d)compiler error:main cannot be recursive function.
    8.main()
    {
    extern int iExtern;
    iExtern = 20;
    printf(?%d?,iExtern);
    }
    what is the output?
    a)2 b) 20 c)compile error d)linker error
    9..#define clrscr() 100
    main(){
    clrscr();
    printf(?%d\n\t?, clrscr());
    }
    what is the output?
    a)100 b)10 c)compiler errord)linkage error
    10.main()
    {
    void vpointer;
    char cHar = ?g?, *cHarpointer = ?GOOGLE?;
    int j = 40;
    vpointer = &cHar;
    printf(?%c?,*(char*)vpointer);
    vpointer = &j;
    printf(?%d?,*(int *)vpointer);
    vpointer = cHarpointer;
    printf(?%s?,(char*)vpointer +3);
    }
    what is the output?
    a)g40GLE b)g40GOOGLE c)g0GLE d)g4GOO
    11.#define FALSE -1
    #define TRUE 1
    #define NULL 0
    main() {
    if (NULL)
    puts (?NULL?);
    else if(FALSE)
    puts (?TRUE?);
    else
    puts (?FALSE?);
    }
    what is the output?
    a) NULL b) TRUE c) FALSE d)0
    12.main() {
    int i =5,j= 6, z;
    printf(?%d?,i+++j);
    }
    what is the output?
    a)13 b)12 c)11 d) compiler error
    13.main() {
    int i ;
    i = accumulator();
    printf(?%d?,i);
    }
    accumulator(){
    _AX =1000;
    }
    what is output?
    a)1 b)10 c)100 d)1000
    14.main() {
    int i =0;
    while(+(+i–)!= 0)
    i- = i++;
    printf(?%d?,i);
    }
    what is the output?
    a)-1 b)0 c)1 d)will go in an infinite loop
    15.main(){
    int i =3;
    for(; i++=0Wink
    printf((?%d?,i);
    }
    what is the output?
    a)1b)2c)1 2 3d)compiler error:L value required.
    16.main(){
    int i = 10, j =20;
    j = i ,j?(i,j)?i :j:j;
    printf(?%d%d?,i,j);
    }what is the output?
    a)20 b)20 c)10 d)10
    17.main(){
    extern i;
    printf(?%d\t?,i);{
    int i =20;
    printf(?%d\t?,i);
    }
    }
    what is output?
    a) ?Extern valueof i ? 20 b)Externvalue of i?c)20d)linker Error:unresolved external symbol i
    18.int DIMension(int array[]){
    return sizeof(array/sizeof(int);}
    main(){
    int arr[10];
    printf(?Array dimension is %d?,DIMension(arr));
    }
    what is output?
    a)array dimension is 10 b)array dimension is 1
    c) array dimension is 2 d)array dimension is 5
    19.main()
    {
    void swap();
    int x = 45, y = 15;
    swap(&x,&y);
    printf(?x = %d y=%d?x,y);
    }
    void swap(int *a, int *b){
    *a^=*b, *b^=*a, *a^ = *b;
    what is the output?
    a) x = 15, y =45 b)x =15, y =15 c)x =45 ,y =15 d)x =45 y = 45
    20.main(){
    int i =257;
    int *iptr =&i;
    printf (?%d%d?,*((char*)iptr),* ((char *)iptr+1));
    }
    what is output?
    a)1, 257 b)257 1c)0 0d)1 1
    21.main(){
    int i =300;
    char *ptr = &i;
    *++ptr=2;
    printf(?%d?,i);
    }
    what is output?
    a)556 b)300 c)2 d)302

    22. #include
    main(){
    char *str =?yahoo?;
    char *ptr =str;
    char least =127;
    while(*ptr++)
    least = (*ptr
    printf (?%d?,least);
    }
    what is the output?
    a)0 b)127 c) yahoo d) y
    23.Declare an array of M pointers to functions returing pointers to functions returing pointers to characters.
    a)(*ptr[M]()(char*(*)()); b)(char*(*)())(*ptr[M])()
    c) (char*(*)(*ptr[M]())(*ptr[M] () d)(char*(*)(char*()))(*ptr[M]) ();
    24.void main(){
    int I =10, j=2;
    int *ip = &I ,*jp =&j;
    int k = *ip/*jp;
    printf(?%d?,k);
    }
    what is the output?
    a)2 b)5 c)10 d)compile error:unexpected end of file in comment started in line 4
    25.main()
    {
    char a[4] =?GOOGLE?;
    printf(?%s?,a);
    }
    what is the output?
    a)2 b) GOOGLE c) compile error: yoo mant initializers d) linkage error.
    26.For 1MB memory, the number of address lines required
    a)12 b)16 c)20 d)32
    27.There is a circuit using 3 nand gates with 2 inputes and 1 output,f ind the output.
    a) AND b) OR c) XOR d) NAND
    28.what is done for push operation
    a) SP is incremented and then the value is stored.
    b) PC is incremented and then the value is stored.
    c) PC is decremented and then the value is stored.
    d) SP is decremented and then the value is stored.
    29.Memory allocation of variables declared in a program is ——
    a) Allocated in RAM
    b) Allocated in ROM
    c) Allocated in stack
    d) Assigned in registers.
    30.What action is taken when the processer under execution is interrupted by TRAP in 8085MPU?
    a) Processor serves the interrupt request after completing the execution of the current instruction.
    b) processer serves the interrupt request after completing the current task.
    c) processor serves the interrupt immediately.
    d) processor serving the interrupt request depent deprnds upon the priority of the current task under execution.
    31.purpose of PC (program counter)in a microprocessor is —-
    a) To store address of TOS(top of stack)
    b) To store address of next instructions to be executed
    c) count the number of instructions
    d) to store the base address of the stack.
    32.conditional results after execution of an instruction in a microprocess is stored in
    a) register b) accumulator c) flag register d) flag register part of PSW (program status word)
    33.The OR gate can be converted to the NAND function by adding—-gate(s)to the input of the OR gate.
    a) NOT b) AND c) NOR d) XOR
    34.In 8051microcontroller ,——has a dual function.
    a) port 3 b) port 2 c) port 1 d) port 0
    35.An 8085 based microprocessor with 2MHz clock frequency,will execute the following chunk of code with how much delay?
    MVI B,38H
    HAPPY: MVI C, FFH
    SADDY: DCR C
    JNZ SADDY
    DCR B
    JNC HAPPY
    a) 102.3 b)114.5 c)100.5 d)120
    36.In 8085 MPU what will be the status of the flag after the execution of the following chunk of code.
    MVI B,FFH
    MOV A,B
    CMA
    HLT
    a)S = 1, Z = 0, CY = 1 b)S = 0, Z = 1, CY = 0
    c) S = 1, Z = 0, CY = 0 d)S = 1, Z = 1 ,CY = 1
    37.A positive going pulse which is always generated when 8085 MPU begins the machine cycle.
    a) RD b) ALE c) WR d) HOLD
    38.when a —– instruction of 8085 MPU is fetched , its second and third bytes are placed in the W and Z registers.
    a) JMP b) STA c) CALL d) XCHG
    39.what is defined as one subdivision of the operation performed in one clock period.
    a) T- State b) Instruction Cycle c) Machine Cycle d) All of the above
    40.At the end of the following code, what is the status of the flags.
    LXI B, AEC4H
    MOV A,C
    ADD B
    HLT a) S = 1, CY = 0, P = 0 , AC = 1 b) S =0 , CY = 1, P = 0,AC = 1 c) S = 0, CY = 1, P = 0 , AC = 1 d) S = 0, CY = 1, P = 1 , AC = 1

    46.The repeated execution of a loop of code while waiting for an event to occur is called ———.The cpu is not engaged in any real productive activity during this period,and the process doesn?t progress towards completion.
    a) dead lock b) busy waiting c) trap door d) none.
    47. Transparent DBMS is defined as
    a) A DBMS in which there are no program or user access languages. b) A DBMS which has no cross file capabilities but is user friendly and provides user interface management. c) A DBMS which keeps its physical structure hidden from user d) none.
    48.Either all actions are carried out or none are.users should not have to worry about the effect of incomplete transctions.DBMS ensures this by undoing the actions of incomplete transctions.this property is known as
    a) Aggregation b) atomicity c) association d) data integrity.
    49.—— algorithms determines where in available to load a program. common methods are first fit,next fit,best fit.——— algorithm are used when memory is full , and one process (or part of a process) needs to be swaped out to accommodate a new program.The ————- algorithm determines which are the partions to be swaped out.
    a) placement, placement, replacement
    b) replacement, placement, placement
    c) replacement, placement, replacement
    d) placement, replacement, replacement
    50.Trap door is a secret undocumented entry point into a program used to grant access without normal methods of access authentication.A trap is a software interrupt,usually the result of an error condition.
    a)true b)false.
    55.in recursive implementations which of the following is true for saving the state of the steps
    a) as full state on the stack
    b) as reversible action on the stack
    c) both a and b
    d) none
    56.which of the following involves context switch
    a) previliged instruction
    b) floating point exception
    c) system calls
    d) all
    e) none
    57.piggy backing is a technique for
    a) acknowledge
    b) sequence
    c) flow control
    d) retransmission
    58. a functional dependency XY is ___________dependency if removal of any attribute A from X means that the dependency does not hold any more
    a) full functional
    b) multi valued
    c) single valued
    d) none
    59)a relation schema R is in BCNF if it is in ___________and satisfies an additional constraints that for every functional dependency XY,X must be a candidate key
    a)1 NF
    b)2 NF
    c)3 NF
    d)5 NF
    60) a _________sub query can be easily identified if it contains any references to the parent sub query columns in the _________ clause
    A) correlated ,WHERE
    b) nested ,SELECT
    c) correlated, SELECT
    d) none
    31.purpose of PC (program counter)in a microprocessor is —-
    a) To store address of TOS(top of stack)
    b) To store address of next instructions to be executed
    c) count the number of instructions
    d) to store the base address of the stack.
    32.conditional results after execution of an instruction in a microprocess is stored in
    a) register b) accumulator c) flag register d) flag register part of PSW (program status word)
    33.The OR gate can be converted to the NAND function by adding—-gate(s)to the input of the OR gate.
    a) NOT b) AND c) NOR d) XOR
    34.In 8051microcontroller ,——has a dual function.
    a) port 3 b) port 2 c) port 1 d) port 0
    35.An 8085 based microprocessor with 2MHz clock frequency,will execute the following chunk of code with how much delay?
    MVI B,38H
    HAPPY: MVI C, FFH
    SADDY: DCR C
    JNZ SADDY
    DCR B
    JNC HAPPY
    a) 102.3 b)114.5 c)100.5 d)120
    36.In 8085 MPU what will be the status of the flag after the execution of the following chunk of code.
    MVI B,FFH
    MOV A,B
    CMA
    HLT
    a)S = 1, Z = 0, CY = 1 b)S = 0, Z = 1, CY = 0
    c) S = 1, Z = 0, CY = 0 d)S = 1, Z = 1 ,CY = 1
    37.A positive going pulse which is always generated when 8085 MPU begins the machine cycle.
    a) RD b) ALE c) WR d) HOLD
    38.when a —– instruction of 8085 MPU is fetched , its second and third bytes are placed in the W and Z registers.
    a) JMP b) STA c) CALL d) XCHG
    39.what is defined as one subdivision of the operation performed in one clock period.
    a) T- State b) Instruction Cycle c) Machine Cycle d) All of the above
    40.At the end of the following code, what is the status of the flags.
    LXI B, AEC4H
    MOV A,C
    ADD B
    HLT
    a) S = 1, CY = 0, P = 0 , AC = 1 b) S =0 , CY = 1, P = 0,AC = 1
    c) S = 0, CY = 1, P = 0 , AC = 1 d) S = 0, CY = 1, P = 1 , AC = 1
    46.The repeated execution of a loop of code while waiting for an event to occur is called ———.The cpu is not engaged in any real productive activity during this period,and the process doesn?t progress towards completion. a) dead lock b) busy waiting c) trap door d) none.

    47. Transparent DBMS is defined as
    a) A DBMS in which there are no program or user access languages. b) A DBMS which has no cross file capabilities but is user friendly and provides user interface management. c) A DBMS which keeps its physical structure hidden from user d) none.
    48.Either all actions are carried out or none are.users should not have to worry about the effect of incomplete transctions.DBMS ensures this by undoing the actions of incomplete transctions.this property is known as
    a) Aggregation b) atomicity c) association d) data integrity.
    49.—— algorithms determines where in available to load a program. common methods are first fit,next fit,best fit.——— algorithm are used when memory is full , and one process (or part of a process) needs to be swaped out to accommodate a new program.The ————- algorithm determines which are the partions to be swaped out.
    a) placement, placement, replacement
    b) replacement, placement, placement
    c) replacement, placement, replacement
    d) placement, replacement, replacement
    50.Trap door is a secret undocumented entry point into a program used to grant access without normal methods of access authentication.A trap is a software interrupt,usually the result of an error condition.
    a)true b)false.
    52.which one of the following is the recursive travel technique.
    a)depth first search b)preorder c)breadth first search d)none.
    55.in recursive implementations which of the following is true for saving the state of the steps
    a)as full state on the stack
    b) as reversible action on the stack
    c)both a and b
    d)none
    56.which of the following involves context switch
    a) previliged instruction
    b) floating point exception
    c) system calls
    d)all
    e) none
    57.piggy backing is a technique for
    a) acknowledge
    b) sequence
    c) flow control
    d) retransmission
    58. a functional dependency XY is ___________dependency if removal of any attribute A from X means that the dependency does not hold any more
    a) full functional
    b) multi valued
    c) single valued
    d) none
    59)a relation schema R is in BCNF if it is in ___________and satisfies an additional constraints that for every functional dependency XY,X must be a candidate key
    a)1 NF
    b)2 NF
    c)3 NF
    d)5 NF
    60) a _________sub query can be easily identified if it contains any references to the parent sub query columns in the _________ clause
    A) correlated ,WHERE
    b) nested ,SELECT
    c) correlated,SELECT
    d) none
    61) hybrid devise that combines the features of both bridge and router is known as
    a)router b)bridge c)hub d)brouter
    62) which of the following is the most crucial phase of SDLC
    a) testing b) code generation c) analysys and design d) implementation
    63)to send a data packet using datagram ,connection will be established
    a) no connection is required
    b) connection is not established before data transmission
    c) before data transmission
    d) none
    64)a software that allows a personal computer to pretend as as computer terminal is
    a) terminal adapter
    b) terminal emulation
    c) modem
    d) none
    65) super key is
    a) same as primary key
    b) primary key and attribute
    c) same as foreign key
    d) foreign key and attribute
    66.In binary search tree which traversal is used for ascending order values
    a) Inorder b)preorder c)post order d)none
    67.You are creating an index on ROLLNO colume in the STUDENT table.which statement will you use?
    a) CREATE INDEX roll_idx ON student, rollno;
    b) CREATE INDEX roll_idx FOR student, rollno;
    c) CREATE INDEX roll_idx ON student( rollno);
    d) CREATE INDEX roll_idx INDEX ON student (rollno);
    68.A________class is a class that represents a data structure that stores a number of data objects
    a. container b.component c.base d.derived
    69.Which one of the following phases belongs to the compiler Back-end.
    a. Lexical Analysis b.Syntax Analysis c. Optimization d.Intermediate Representation.
    70.Every context _sensitive language is context_free
    a. true b.false
    71.Input:A is non-empty list of numbers L
    X?-infinity
    For each item in the list L,do
    If the item>x,then
    X?the item
    Return X
    X represents:-
    a)largest number
    b)smallest number
    c)smallest negative number
    d) none
    72.Let A and B be nodes of a heap, such that B is a child of A. the heap must then satisfy the following conditions
    a) key(A)>=key(B)
    b) key(A)
    c) key(A)=key(B)
    d) none
    73.String ,List, Stack, queue are examples of___________
    a) primitive data type
    b) simple data type
    c) Abstract data type
    d) none
    74.which of the following is not true for Linked Lists?
    a) The simplest kind of linked list is a single linked list ,which has one link per node .this link points to the next node in the list, or to a null value or empty list if it is the last node.
    b)a more sophisticated kind of linked list is a double linked list or two way linked list .Each node has two links ,one to the previous node and one to the next node.
    c) in a circle Linked List ,the first and last nodes are linked together. this can be done only for double linked list.
    d) to traverse a circular linked list ,u begin at any node and follow the list in either direction until u return to the original node.

    75.sentinel node at the beginning and /or at the end of the linked list is not used to store the data
    a) true
    b) false

    I. General Aptitude (round 1)
    These are the some qts

    1. Sudoku. you need to fill-up the table using the hint(addition of row, column, diagonal =15) and available cell values. its easy. if you figure it out, you can answer(very easy)
    five questions correctly.
    2.If y=MAX((3x+y),(11x-y)) then what’s the value of y?
    3.1 Que. on book arrangement. if u find out the series you can ans five ques. correctly.
    4.2 Ques. on Probability, ages
    5. Ages
    6. Venn diagram –> Out of 100 students, 45 do not know typing, 60 know shorthand. 25 know both 6 do not know anything then find out haw many know both?
    7. if f(y,0)=y+1, f(o,x)=x; f(y,x)=f(f(y,0),f(2*y-1)) then find f(1,1),f(2,3),f(3,0); 3 question based on this. Its very very simple…
    8. 1 Ques on Percentage : Price of a book increases 15% successively (2times) what is the new price of the book more compared to that of the old price:
    a)32.25% b)23.34% c)36% d)39%
    9. 2 Questions based on Time and speed.
    10. Passage and questions…

    11.question on synonyms and antonyms

    II. Technical Aptitude (round 2)
    This is a 40 minutes paper containing 75 questions. ? There is no negative marking
    1.——- is associated with webservices.
    a) WSDL b) WML c) web sphere d) web logic

    2.any large single block of data stored in a database, such as a picture or sound file, which does not include record fields, and cannot be directly searched by the database?s search engine.
    a) TABLE b) BLOB c) VIEW d) SCHEME

  • Capgemini June 2010 Placement Papers

    Capgemini Paper on 21st June 2010 @ BANGALORE INSTITUTE OF TEC.

    QUANT SECTION:

    1.Fresh Grapes contain 90% water by wt. Dried grapes contain 20% water by %age. What will b wt of dried grapes when we begin with 20 kg fresh grapes?
    i.2kg
    ii. 2.4kg
    iii. 2.5kg
    iv. none Ans: 2.4

    2.How many 5 digit no. can b formed wit digits 1, 2, 3,4,5,6 which r divisible by 4 and digits not repeated
    i.144
    ii. 168
    iii. 192
    iv none Ans: 192

    3.There is a rectangular Garden whose length and width are 60m X 20m.There is a walkway of uniform width around garden. Area of walkway is 516m^2. Find width of walkway
    i.1
    ii.2
    iii.3
    iv.4 Ans:3

    4. In a race from pt. X to pt Y and back, Jack averages 0 miles/hr to pt Y and 10 miles/hr back to pr X. Sandy averages 20 miles/hr in both directions. If Jack and Sandy start race at same tIme, who?ll finish 1st
    i.Jack
    ii.Sandy
    iii.they tie
    iv.Impossible to tell Ans: Sandy

    5. A man engaged a servant on a condition that he?ll pay Rs 90 and also give him a bag at the end of the yr. He served for 9 months and was given a turban and Rs 65. So the price of turban is
    i. Rs 10
    ii. Rs19
    iii. Rs0
    iv.Rs55 Ans: 10

    6. Three wheels make 36, 24, 60 rev/min. Each has a black mark on it. It is aligned at the start of the qn.When does it align again for the first time?
    i.14sec
    ii.20sec
    iii.22sec
    iv.5sec Ans:5sec

    7. If 1= (3/4)(1+ (y/x) ) then
    i. x=3y
    ii. x=y/3
    iii. x=(2/3)y Ans:x=3y
    iv. none

    8. The sum of six consecutive odd nos. is 888. What is the average of the nos.?
    i. 147
    ii. 148
    iii. 149 Ans:148
    iv. 146

    9. 1 ,27,125,?,729,133 Find da no missing in dis sequence.

    Ans. 343

    10. Three wheels make 36, 24, 60 rev/min. Each has a black mark on it. It is aligned at the start of the qn. When does it align again for the first tym?

    i.14sec

    ii.20sec

    iii.22sec

    iv.5sec ans: 5sec

    11. If a certain sum of money at SI doubles itself in 5 yrs then what is the rate?

    i)5% ii) 10% iii)25% iv)20%

    Ans: 20%
    12. A man engaged a servant on a condition that he?ll pay Rs 90 and also give him a bag at the end of the yr. He served for 9 months and was given a turban and Rs 65. So the price of turban is ?

    i)Rs 10 II) Rs 19 iii)Rs 0 iv)Rs 55
    ans: Rs 10
    13. 2 men at same tym start walking towards each other from A n B 72 kms apart. sp of A is 4kmph.Sp of B is 2 kmph in 1st hr,2.5 in 2nd, 3 in rd. n so on?when will they meet

    i in 7 hrs

    ii at 35 kms from A

    iii in 10 hrs

    iv midway Ans: Midway
    14. If the ratio of prod of 3 diff comp?s A B & C is 45 and of overall prod last yr was 4lac tones and if each comp had an increase of 20% in prod level this yr what is the prod of Comp B this yr?

    i. 2.1L

    ii.22.1L

    iii.4.1L

    iv.none Ans:2.1L
    VERBAL SECTION:
    An employee has to allocate offices to 6 staff members. The offices are no. 1-6. the offices are arranged in a row and they are separated from each other by dividers>hence voices, sounds and cigarette smoke flow easily from one office to another

    Miss R needs to use the telephone quite often throughout the day. Mr. M and Mr. B need adjacent offices as they need to consult each other often while working. Miss H is a senior employee and his to be allotted the office no. 5, having the biggest window.

    Mr. D requires silence in office next to his. Mr. T, Mr. M and Mr. D are all smokers. Miss H finds tobacco smoke allergic and consecutively the offices next to hers are occupied by non-smokers. Unless specifically stated all the employees maintain an atmosphere of silence during office hrs.

    Solution: Arrangements= D T M B H R.

    1. The ideal candidate to occupy office farthest from Mr. B will be

    i. Miss H

    ii. Mr. M

    iii. Mr. T

    iv. Mr. D Ans: Mr.D

    2. The three employees who are smokers should be seated in the offices

    i. 1 2 4

    ii. 2 3 6

    iii. 1 2 3

    iv. 1 2 4 Ans: 123

    3. The ideal office for Mr. M would be

    i. 2

    ii. 6

    iii. 1

    iv. 3 Ans: 3

    4. In the event of what occurrence within a period of one month since the assignment of the offices would a request for a change in office be put forth by one or more employees?

    i. Mr D quitting smoking

    ii. Mr. T taking over duties formally taken care of by Miss R

    iii. The installation of a water cooler in Miss H?s office

    iv. Mr. B suffering from anemia Ans: Mr.B suffering from anemia

    Elle is 3 times older than Zaheer. Zaheer is ? as old as Waheeda. Yogesh is elder than Zaheer.

    5. What is sufficient to estimate Elle?s age?

    i.Zaheer is 10 yrs old

    ii.Yogesh and Waheeda are both older than Zaheer by the same no of yrs.

    iii.Both of the above

    iv.None of the above Ans: Zaheer is 10 yrs old

    6. Which one of the following statements can be inferred from the info above

    i.Yogesh is elder than Waheeda

    ii.Elle is older than Waheeda

    iii.Elle?s age may be less than that of Waheeda

    iv.None of the above Ans: Elle is older than Waheeda

    Ten coins are distr. Among 4 people P, Q, R, S such that one of them gets a coin, another gets 2 coins,3rd gets 3 coins, and 4th gets 4 coins. It is known that Q gets more coins than P, and S gets fewer coins than R

    7. If the no. of coins distr. To Q is twice the no. distr. to P then which one of the following. is necessarily true?

    i. R gets even no. of coins

    ii. R gets odd no. of coins

    iii. S gets even no. of coins

    iv. S gets odd no. of coins Ans: S gets odd no. of coins

    8. If R gets at least two more coins than S which one of the following is necessarily true?

    i. Q gets at least 2 more coins than S

    ii. Q gets more coins than P

    iii. P gets more coins than S

    iv. P and Q together get at least five coins Ans: Q gets more coins than P

    9. If Q gets fewer coins than R, then which one of the following is not necessarily true?

    i. P and Q together get at least 4 coins

    ii. Q and S together get at least 4 coins

    iii.R and S together get at least 5 coins

    iv.P and R together get at least 5 coins Ans: P and Q together gets at least 4 coins

    A robot moves on a graph sheet with x-y axes. The robot is moved by feeding it with a sequence of instructions. The different instructions that can be used in moving it, and their meanings are:

    Instruction Meaning

    GOTO(x,y) move to pt with co-ord (x,y) no matter where u are currently

    WALKX(P) move parallel to x-axis through a distance of p, in the +ve direction if p is +ve and in ?ve if p is ?ve

    WALKY(P) move parallel to y-axis through a distance of p, in the +ve direction if p is +ve and in ?ve if p is ?ve

    10. The robot reaches point (5,6) when a sequence of 3 instr. Is executed, the first of which is GOTO(x,y) , WALKX(2), WALKY(4). What are the values of x and y??

    i. 2,4
    ii. 0,0
    iii. 3,2
    iv. 2,3 Ans: 3,2

    11. The robot is initially at (x.y), x>0 and y<0. The min no. of Instructions needed to be executed to bring it to origin (0,0) if you are prohibited from using GOTO instr. Is:

    i. 2
    ii. 1
    iii. x + y
    iv. 0 Ans: 2

    Ans A using I only
    Ans B using II only
    Ans C using both I and II
    Ans D not solvable

    12. Raman and Gaurav Brought eggs from a vendor. How many eggs were bought by each of them
    i. Raman bought half as many as Gaurav
    ii. The dealer had a stock of 500 eggs at the beginning of day
    Ans: D

    13. What is the age of Ramprakash?
    i. Ramprakash was born when his father was 26 yrs old
    ii. Ramprakash?s mothers age is 3yrs less than his father?s
    Ans: D

    14. How much time is reqd for downloading the software?
    i. The Data transfer rate is 6 kbps
    ii. The size of the software is 4.5 megabytes
    Ans: C

    15. Sanjay and Vijay started their journey from Mumbai to Pune. Who reached Pune first?
    i. Sanjay overtakes two times Vijay and Vijay overtakes Sanjay two times
    ii. Sanjay started first

    Ans: C

    16. A boat can ferry 1500 passengers across a river in 12 hrs. How many round trips does it make during the journey?
    i. The boat can carry 400 passengers at a time
    ii. During its journey, the boat takes 40 mins time each way and 20 mins waiting time at each end.

    Ans: C

    17. What are the values of m and n?
    i. n is an even integer, m is odd integer and m is greater than n.
    ii. The product of m and n is 30
    Ans: C

    18. How much is the weight of 20 mangoes and 30 oranges?
    i. 1 orange weighs twice that of 1 mango
    ii. 2 mangoes and 3 oranges weigh 2 kg
    Ans: B

    19. Is the GDP of country X higher than Country Y?
    i. GDP?s of X and Y has been increasing at a compounded annual growth rate of 5% and 6% over he past 5 yrs
    ii. 5 yrs ago GDP of X was 1.2 times Y
    Ans: C.
    CAPGEMINI PAPER ON 10th MAY 2010 @ ITER, BHUBANESWAR

    Total consist of 3 rounds.

    1)written test

    2)GD

    3)TECH/HR interview

    Written test-

    1.) Quantitative 25 questions

    2.) Analytical 25 questions

    Hello friends…..

    Section A

    1.Fresh Grapes contain 90% water by wt. Dried grapes contain 20% water by %age. What will b wt of dried grapes when we begin with 20 kg fresh grapes?

    a)2kg b) 2.4kg c) 2.5kg d) none

    Answer. C

    2.How many 5 digit no. can b formed wit digits 1, 2, 3,4,5,6 which r divisible by 4 and digits not repeated

    a)144 b)168 c)192 d) none

    Answer. C

    3.There is a rectangular Garden whose length and width are 60m X 20m.There is a walkway of uniform width around garden. Area of walkway is 516m^2. Find width of walkway

    a)1 b)2 c)3 d)4

    Answer. C

    4.If 1= (3/4)(1+ (y/x) ) then

    a)x=3y

    b) x=y/3

    c) x=(2/3)y

    d) none

    Answer. A

    5. The sum of six consecutive odd nos. is 888. What is the average of the nos.?

    a)147

    b)148

    c)149

    d) 146

    Answer. B

    6. 1,27,125,?,729,1331 find missing number.

    Ans: 343

    7. Find approx value of 39.987/0.8102+1.987*18.02

    a)72 b)56 c)86 d)44

    Answer. C

    8. Asish was given Rs. 158 in denominations of Rs 1 each. He distributes these in diff bags, such that ne sum of money of denomination betn 1 and 158 can be given in bags. The min no. of such bags reqd

    a)10 b)17 c)15 d) none

    Answer. D

    9. If a certain sum of money at SI doubles itself in 5 yrs then what is the rate?

    a)5% b) 10% c)25% d)20%

    Ans: D

    10. A man engaged a servant on a condition that he?ll pay Rs 90 and also give him a bag at the end of the yr. He served for 9 months and was given a turban and Rs 65. So the price of turban is ?

    i)Rs 10 II) Rs 19 iii)Rs 0 iv)Rs 55

    Ans: A

    11. The sum of six consecutive odd nos. is 888. What is the average of the nos.?

    i. 147 ii. 148 iii. 149 iv. 146

    Ans: B

    12. In a race from pt. X to pt Y and back, Jack averages 30miles/hr to pt Y and 10 miles/hr back to pr X.Sandy averages 20 miles/hr in both directions. If Jack and Sandy start race at same tym, who?ll finish 1st ?

    Jack/Sandy/they tie/Impossible to tell

    Ans: they tie ( check it)

    13. 2 men at same tym start walking towards each other from A n B 72 kms apart. sp of A is 4kmph.Sp of B is 2 kmph in 1st hr,2.5 in 2nd, 3 in rd. n so on?when will they meet

    i in 7 hrs

    ii at 35 kms from A

    iii in 10 hrs

    iv midway

    Ans: D

    14. If the ratio of prod of 3 diff comp?s A B & C is 45 and of overall prod last yr was 4lac tones and if each comp had an increase of 20% in prod level this yr what is the prod of Comp B this yr?

    i. 2.1L

    ii.22.1L

    iii.4.1L

    iv.none

    Ans: A

    15. If 70% of a no. is subtracted from itself it reduces to 81.what is two fifth of that no.?

    108/54/210/none

    Ans. A

    16. If radius of cylinder and sphere r same and vol of sphere and cylinder r same what is d ratio betn the radius and height of the cylinder

    i. R= H

    ii. R= (3/4)H

    iii. R = (4/3)H

    iv. R=2/3H

    Ans: C

    17. Which one of the foll fractions is arranged in ascending order

    i. 9/11,7/9,11/13,13/14

    ii 7/8,9/11,11/13,13/14

    iii 9/11,11/13,7/8,13/14

    iv none

    Ans: C

    18.10^10/10^4*10^2=10^?

    i. 8

    ii. 6

    iii. 4

    iv. none

    Ans: C

    19. units digit in expansion os 2 raised to 51 is:

    2/4/6/8

    Ans: D

    20. Three wheels make 36, 24, 60 rev/min. Each has a black mark on it. It is aligned at the start of the qn. When does it align again for the first tym?

    14/20/22/5 sec

    21.one question on determinant having 4 colm and 3 rows I do not remember what exactly it.

    22. one question on zeometry on triangle one side and angle is given like AD is perpendicular to BC ,BD is Given find AC?

    24. one question on progression , a simple one.

    25. one question on share .a tough one.

    Section B

    Direction for Qn 1-4

    An employee has to allocate offices to 6 staff members. The offices are no. 1-6. the offices are arranged in a row and they are separated from each other by dividers>hence voices, sounds and cigarette smoke flow easily from one office to another

    Miss R needs to use the telephone quite often throughout the day. Mr. M and Mr. B need adjacent offices as they need to consult each other often while working. Miss H is a senior employee and his to be allotted the office no. 5, having the biggest window.

    Mr. D requires silence in office next to his. Mr. T, Mr. M and Mr. D are all smokers. Miss H finds tobacco smoke allergic and consecutively the offices next to hers are occupied by non-smokers. Unless specifically stated all the employees maintain an atmosphere of silence during office hrs.

    Solution: Arrangements= D T M B H R.

    1. The ideal candidate to occupy office farthest from Mr. B will be

    i. Miss H

    ii. Mr. M

    iii. Mr. T

    iv. Mr. D

    Ans: D

    2. The three employees who are smokers should be seated in the offices

    i. 1 2 4

    ii. 2 3 6

    iii. 1 2 3

    iv. 1 2 3

    Ans: C

    3. The ideal office for Mr. M would be

    i. 2

    ii. 6

    iii. 1

    iv. 3

    Ans: D

    4. In the event of what occurrence within a period of one month since the assignment of the offices would a request for a change in office be put forth by one or more employees?

    i. Mr D quitting smoking

    ii. Mr. T taking over duties formally taken care of by Miss R

    iii. The installation of a water cooler in Miss H?s office

    iv. Mr. B suffering from anemia

    Ans: D(check it)

    Direction for Qn 5-7

    Ten coins are distr. Among 4 people P, Q, R, S such that one of them gets a coin, another gets 2 coins,3rd gets 3 coins, and 4th gets 4 coins. It is known that Q gets more coins than P, and S gets fewer coins than R

    5. If the no. of coins distr. To Q is twice the no. distr. to P then which one of the following. is necessarily true?

    i. R gets even no. of coins

    ii. R gets odd no. of coins

    iii. S gets even no. of coins

    iv. S gets odd no. of coins

    Ans: D

    6. If R gets at least two more coins than S which one of the following is necessarily true?

    i. Q gets at least 2 more coins than S

    ii. Q gets more coins than P

    iii. P gets more coins than S

    iv. P and Q together get at least five coins

    Ans: B

    7. If Q gets fewer coins than R, then which one of the following is not necessarily true?

    i. P and Q together get at least 4 coins

    ii. Q and S together get at least 4 coins

    iii.R and S together get at least 5 coins

    iv.P and R together get at least 5 coins

    Ans: A

    Direction for Qn 8-9

    Elle is 3 times older than Zaheer. Zaheer is ? as old as Waheeda. Yogesh is elder than Zaheer.

    8. What is sufficient to estimate Elle?s age?

    i.Zaheer is 10 yrs old

    ii.Yogesh and Waheeda are both older than Zaheer by the same no of yrs.

    iii.Both of the above

    iv.None of the above

    Ans: A

    9. Which one of the following statements can be inferred from the info above

    i.Yogesh is elder than Waheeda

    ii.Elle is older than Waheeda

    iii.Elle?s age may be less than that of Waheeda

    iv.None of the above

    Ans:B

    Q

    Qns 10-11 are based on situations given below:

    7 Uni crick players are to be honored at a special luncheon. The players will be seated on a dais along one side of a single rectangular table.

    A and G have to leave the luncheon early and must be seated at the extreme right end of table, which is closest to exit.

    B will receive Man of the Match and must be in the centre chair

    C and D who are bitter rivals for the position of Wicket keeper dislike one another and should be seated as far apart as possible

    E and F are best friends and want to seat together.

    10.Which of the foll may not be seated at either end of the table?

    i. C

    ii. D

    iii. G

    iv. F

    Ans: iv

    11.Which of the foll pairs may not be seated together?

    i. E & A

    ii. B & D

    iii. C & F

    iv. G & D

    Ans: i

    Direction for Qn 12-13

    A robot moves on a graph sheet with x-y axes. The robot is moved by feeding it with a sequence of instructions. The different instructions that can be used in moving it, and their meanings are:

    Instruction Meaning

    GOTO(x,y) move to pt with co-ord (x,y) no matter where u are currently

    WALKX(P) move parallel to x-axis through a distance of p, in the +ve direction if p is +ve and in ?ve if p is ?ve

    WALKY(P) move parallel to y-axis through a distance of p, in the +ve direction if p is +ve and in ?ve if p is ?ve

    12. The robot reaches point (5,6) when a sequence of 3 instr. Is executed, the first of which is GOTO(x,y) , WALKX(2), WALKY(4). What are the values of x and y??

    i. 2,4

    ii. 0,0

    iii. 3,2

    iv. 2,3

    Ans: C

    13. The robot is initially at (x.y), x>0 and y<0. The min no. of Instructions needed to be executed to bring it to origin (0,0) if you are prohibited from using GOTO instr. Is:

    i. 2

    ii. 1

    iii. x + y

    iv. 0

    Ans: A

    Direction for Qn 14-17

    Five teams participated in Pepsi Cup. Each team played against each other. The top teams played finals. A win fetched 2 pts and a tie 1 point

    1) South Africa were in the finals

    2) India defeated SA but failed to reach the finals

    3) Australia lost only one match in the tournament

    4) The match between India and Sri Lanka was a tie

    5) The undefeated team in the league matches lost in the finals

    6) England was one of the best teams that did not qualify

    14.Who were the finalists?

    i. SA & India

    ii. Aus & SL

    iii. SA & SL

    iv. none

    Ans: C

    15. Who won the finals?

    i. Aus

    ii. SL

    iii. SA

    iv. Can?t be determined

    Ans: C

    16. How many matches did India Win?

    i. 0

    ii. 1

    iii. 2

    iv. can?t be determined

    Ans: D

    17.What was the outcome of the India England Match

    i. India won

    ii. England won

    iii. It was a tie

    iv. Can?t be determined

    Ans: D( check it)

    Direction for Qn 18-24.

    Ans A using I only

    Ans B using II only

    Ans C using both I and II

    Ans D not solvable

    18. Raman and Gaurav Brought eggs from a vendor. How many eggs were bought by each of them

    i. Raman bought half as many as Gaurav

    ii. The dealer had a stock of 500 eggs at the beginning of day

    Ans: D

    19. What is the age of Ramprakash?

    i. Ramprakash was born when his father was 26 yrs old

    ii. Ramprakash?s mothers age is 3yrs less than his father?s

    Ans: D

    20. How much time is reqd for downloading the software?

    i. The Data transfer rate is 6 kbps

    ii. The size of the software is 4.5 megabytes

    Ans: C

    21. Sanjay and Vijay started their journey from Mumbai to Pune. Who reached Pune first?

    i. Sanjay overtakes two times Vijay and Vijay overtakes Sanjay two times

    ii. Sanjay started first

    Ans: C

    22. A boat can ferry 1500 passengers across a river in 12 hrs. How many round trips does it make during the journey?

    i. The boat can carry 400 passengers at a time

    ii. During its journey, the boat takes 40 mins time each way and 20 mins waiting time at each end.

    Ans: C

    23. What are the values of m and n?

    i. n is an even integer, m is odd integer and m is greater than n.

    ii. The product of m and n is 30

    Ans: C

    24. How much is the weight of 20 mangoes and 30 oranges?

    i. 1 orange weighs twice that of 1 mango

    ii. 2 mangoes and 3 oranges weigh 2 kg

    Ans: B

    25. Is the GDP of country X higher than Country Y?

    i. GDP?s of X and Y has been increasing at a compounded annual growth rate of 5% and 6% over he past 5 yrs

    ii. 5 yrs ago GDP of X was 1.2 times Y

    Ans: C.

    6 May 2010 @ GNIT, Kolkata

    I-Quantitative(25 Ques)

    II-Analytical Reasoning(25 Ques)

    There was sectional cut-off i.e 10 from each sections as told by CapGemini employees.

    Quantitative:

    1 Fresh Grapes contain 90% water by wt. Dried grapes contain 20% water by %age. What will b wt of dried grapes when we begin with 20 kg fresh grapes?

    2kg / 2.4kg / 2.5kg /none

    2.How many 5 digit no. can b formed wit digits 1, 2, 3,4,5,6 which r divisible by 4 and digits not repeated

    144 / 168 / 192 / none

    3. Asish was given Rs. 158 in denominations of Rs 1 each. He distributes these in diff bags, such that ne sum of money of denomination betn 1 and 158 can be given in bags. The min no. of such bags reqd

    10 / 17 / 15 / none

    4.There is a rectangular Garden whose length and width are 60m X 20m.There is a walkway of uniform width around garden. Area of walkway is 516m^2. Find width of walkway

    1/2/3/4

    20. In a race from pt. X to pt Y and back, Jack averages 0 miles/hr to pt Y and 10 miles/hr back to pr X.Sandy averages 20 miles/hr in both directions. If Jack and Sandy start race at same tym, who?ll finish 1st

    Jack/Sandy/they tie/Impossible to tell

    5. A man engaged a servant on a condn that he?ll pay Rs 90 and also give him a bag at the end of the yr. He served for 9 months and was given a turban and Rs 65. So the price of turban is

    i. Rs 10 / 19 / 0 / 55

    6. Three wheels make 36, 24, 60 rev/min. Each has a black mark on it. It is aligned at the start of the qn. When does it align again for the first tym?

    14/20/22/5 sec

    7. If 1= (3/4)(1+ (y/x) ) then

    i. x=3y

    ii. x=y/3

    iii. x=(2/3)y

    iv. none

    8. The sum of six consecutive odd nos. is 888. What is the average of the nos.?

    i. 147

    ii. 148

    iii. 149

    iv. 146

    9. 1010/104*102=10?

    i. 8

    ii. 6

    iii. 4

    iv. none

    10. one question was from conversion of hectare to kilametre

    Reasonings were like this

    These qns are based on situations given below:

    7 Uni crick players are to be honored at a special luncheon. The players will be seated on a dais along one side of a single rectangular table.

    A and G have to leave the luncheon early and must be seated at the extreme right end of table, which is closest to exit.

    B will receive Man of the Match and must be in the centre chair

    C and D who are bitter rivals for the position of Wicket keeper dislike one another and should be seated as far apart as possible

    E and F are best friends and want to seat together.

    Which of the foll may not be seated at either end of the table?
    i. C

    ii. D

    iii. G

    iv. F

    Which of the foll pairs may not be seated together?
    i. E & A

    ii. B & D

    iii. C & F

    iv. G & D

    An employee has to allocate offices to 6 staff members. The offices are no. 1-6. the offices are arranged in a row and they are separated from each other by dividers>hence voices, sounds and cigarette smoke flow easily from one office to another

    Miss R needs to use the telephone quite often throughout the day. Mr. M and Mr. B need adjacent offices as they need to consult each other often while working. Miss H is a senior employee and his to be allotted the office no. 5, having the biggest window.

    Mr D requires silence in office next to his. Mr. T, Mr M and Mr. D are all smokers. Miss H finds tobacco smoke allergic and consecutively the offices next to hers are occupied by non-smokers. Unless specifically stated all the employees maintain an atmosphere of silence during office hrs.

    The ideal candidate to occupy office farthest from Mr. B will be
    i. Miss H

    ii. Mr. M

    iii. Mr. T

    iv. Mr. D

    The three employees who are smokers should be seated in the offices
    i. 1 2 4

    ii. 2 3 6

    iii. 1 2 3

    iv. 1 2 3

    The ideal office for Mr. M would be
    i. 2

    ii. 6

    iii. 1

    iv. 3

    A robot moves on a graph sheet with x-y axes. The robot is moved by feeding it with a sequence of instructions. The different instructions that can be used in moving it, and their meanings are:

    Instruction Meaning

    GOTO(x,y) move to pt with co-ord (x,y) no matter where u are currently

    WALKX(P) move parallel to x-axis through a distance of p, in the +ve direction if p is +ve and in ?ve if p is ?ve

    WALKY(P) move parallel to y-axis through a distance of p, in the +ve direction if p is +ve and in ?ve if p is ?ve

    The robot reaches point (5,6) when a sequence of 3 instr. Is executed, the first of which is GOTO(x,y) , WALKY(2), WALKY(4). What are the values of x and y??
    i. 2,4

    ii. 0,0

    iii. 3,2

    iv. 2,3

    The robot is initially at (x.y), x>0 and y<0. The min no. of Instructions needed to be executed to bring it to origin (0,0) if you are prohibited from using GOTO instr. Is:
    i. 2

    ii. 1

    iii. x + y

    iv. 0

    Ten coins are distr. Among 4 people P, Q, R, S such that one of them gets a coin, another gets 2 coins,3rd gets 3 coins, and 4th gets 4 coins. It is known that Q gets more coins than P, and S gets fewer coins than R

    If the no. of coins distr. To Q is twice the no. distr. to P then which one of the foll. is necessarily true?
    i. R gets even no. of coins

    ii. R gets odd no. of coins

    iii. S gets even no. of coins

    iv. S gets odd no. of coins

    If R gets at least two more coins than S which one of the foll is necessarily true?
    i. Q gets at least 2 more coins than S

    ii. Q gets more coins than P

    iii. P gets more coins than S

    iv. P and Q together get at least five coins

    If Q gets fewer coins than R, then which one of the foll. is not necessarily true?
    i. P and Q together get at least 4 coins

    ii. Q and S together get at least 4 coins

    iii. R and S together get at least 5 coins

    iv. P and R together get at least 5 coins

    Elle is 3 times older than Zaheer. Zaheer is ? as old as Waheeda. Yogesh is elder than Zaheer.

    What is sufficient to estimate Elle?s age?
    i. Zaheer is 10 yrs old

    ii. Yogesh and Waheeda are both older than Zaheer by the same no of yrs.

    iii. Both of the above

    iv. None of the above

    Which one of the foll. statements can be inferred from the info above
    i. Yogesh is elder than Waheeda

    ii. Elle is older than Waheeda

    iii. Elle?s age may be less than that of Waheeda

    iv. None of the above

    Capgemini Paper on 1st June 2010 @ Heritage Institute Of Technology, Kolkata

    There the selection procedure was divided in 4 steps,
    1)General Aptitude Test.
    2)GD.
    3)Technical Interview.
    4)HR.

    1. Fresh Grapes contain 90% water by wt. Dried grapes contain 20% water by %age. What will b wt of dried grapes when we begin with 20 kg fresh grapes?
    2kg / 2.4kg / 2.5kg /none ans:2.4 not 2.5

    2.How many 5 digit no. can b formed wit digits 1, 2, 3,4,5,6 which r divisible by 4 and digits not repeated
    144 / 168 / 192 / none ans:192

    3.There is a rectangular Garden whose length and width are 60m X 20m.There is a walkway of uniform width around garden. Area of walkway is 516m^2. Find width of walkway
    1/2/3/4 ans:3

    4. In a race from pt. X to pt Y and back, Jack averages 0 miles/hr to pt Y and 10 miles/hr back to pr X. Sandy averages 20 miles/hr in both directions. If Jack and Sandy start race at same tIme, who?ll finish 1st
    Jack/Sandy/they tie/Impossible to tell ans:sandy not (they may tie)

    5. A man engaged a servant on a condition that he?ll pay Rs 90 and also give him a bag at the end of the yr. He served for 9 months and was given a turban and Rs 65. So the price of turban is
    i. Rs 10 / 19 / 0 / 55 ans:10

    6. Three wheels make 36, 24, 60 rev/min. Each has a black mark on it. It is aligned at the start of the qn.When does it align again for the first time?
    14/20/22/5 sec ans:5

    7. If 1= (3/4)(1+ (y/x) ) then
    i. x=3y
    ii. x=y/3
    iii. x=(2/3)y ans:x=3y
    iv. none

    8. The sum of six consecutive odd nos. is 888. What is the average of the nos.?
    i. 147
    ii. 148
    iii. 149 ans:148
    iv. 146

    9.An employee has to allocate offices to 6 staff members. The offices are no. 1-6. the offices are arranged in a row and they are separated from each other by dividers>hence voices, sounds and cigarette smoke flow easily from one office to another
    Miss R needs to use the telephone quite often throughout the day. Mr. M and Mr. B need adjacent offices as they need to consult each other often while working. Miss H is a senior employee and his to be allotted the office no. 5, having the biggest window.
    Mr. D requires silence in office next to his. Mr. T, Mr. M and Mr. D are all smokers. Miss H finds tobacco smoke allergic and consecutively the offices next to hers are occupied by non-smokers. Unless specifically stated all the employees maintain an atmosphere of silence during office hrs.
    a. The ideal candidate to occupy office farthest from Mr. B will be
    i. Miss H
    ii. Mr. M
    iii. Mr. T
    iv. Mr. D(right)

    b. The three employees who are smokers should be seated in the offices
    i. 1 2 4
    ii. 2 3 6
    iii. 1 2 3(right)
    iv. 3 2 1
    c. The ideal office for Mr. M would be
    i. 2
    ii. 6
    iii. 1
    iv. 3(right)

    d. In the event of what occurrence within a period of one month since the assignment of the offices would a request for a change in office be put forth by one or more employees?
    i. Mr D quitting smoking
    ii. Mr. T taking over duties formally taken care of by Miss R
    iii. The installation of a water cooler in Miss H?s office
    iv. Mr. B suffering from anemia(right)

    10.Ten coins are distr. Among 4 people P, Q, R, S such that one of them gets a coin, another gets 2 coins,3rd gets 3 coins, and 4th gets 4 coins. It is known that Q gets more coins than P, and S gets fewer coins than R
    a. If the no. of coins distr. To Q is twice the no. distr. to P then which one of the following. is necessarily true?
    i. R gets even no. of coins
    ii. R gets odd no. of coins
    iii. S gets even no. of coins
    iv. S gets odd no. of coins

    b. If R gets at least two more coins than S which one of the following is necessarily true?
    i. Q gets at least 2 more coins than S

    ii. Q gets more coins than P

    iii. P gets more coins than S
    iv. P and Q together get at least five coins
    c. If Q gets fewer coins than R, then which one of the following is not necessarily true?

    i. P and Q together get at least 4 coins

    ii. Q and S together get at least 4 coins
    iii.R and S together get at least 5 coins
    iv.P and R together get at least 5 coins
    11.Elle is 3 times older than Zaheer. Zaheer is ? as old as Waheeda. Yogesh is elder than Zaheer.
    a. What is sufficient to estimate Elle?s age?

    i.Zaheer is 10 yrs old

    ii.Yogesh and Waheeda are both older than Zaheer by the same no of yrs.
    iii.Both of the above (Rest of the answers r same as given in
    iv.None of the above
    the

    previous papers…..)

    b. Which one of the following statements can be inferred from the info above
    i.Yogesh is elder than Waheeda
    ii.Elle is older than Waheeda
    iii.Elle?s age may be less than that of Waheeda
    iv.None of the above

    ================================================== =======================================

    Capgemini Paper on 2nd June 2010 @ TICT, RAJARHAT

    Total consist of 3 rounds.

    1)written test

    2)GD

    3)TECH/HR interview

    so come first on apti. There r 2 set but ques are nearly same.

    1.Fresh Grapes contain 90% water by wt. Dried grapes contain 20% water by %age. What will b wt of dried grapes when we begin with 20 kg fresh grapes?

    a)2kg b) 2.4kg c) 2.5kg d) none

    Answer. C

    2.How many 5 digit no. can b formed wit digits 1, 2, 3,4,5,6 which r divisible by 4 and digits not repeated

    a)144 b)168 c)192 d) none

    Answer. C

    3.There is a rectangular Garden whose length and width are 60m X 20m.There is a walkway of uniform width around garden. Area of walkway is 516m^2. Find width of walkway

    a)1 b)2 c)3 d)4

    Answer. C

    4.If 1= (3/4)(1+ (y/x) ) then

    a)x=3y

    b) x=y/3

    c) x=(2/3)y

    d) none

    Answer. A

    5. The sum of six consecutive odd nos. is 888. What is the average of the nos.?

    a)147

    b)148

    c)149

    d) 146

    Answer. B

    6. 1,27,125,?,729,1331 find missing number.

    Ans: 343

    7. Find approx value of 39.987/0.8102+1.987*18.02

    a)72 b)56 c)86 d)44

    Answer. C

    8. Asish was given Rs. 158 in denominations of Rs 1 each. He distributes these in diff bags, such that ne sum of money of denomination betn 1 and 158 can be given in bags. The min no. of such bags reqd

    a)10 b)17 c)15 d) none

    ans: 8

    Answer. D

    9. If a certain sum of money at SI doubles itself in 5 yrs then what is the rate?

    a)5% b) 10% c)25% d)20%

    Ans: D

    10. A man engaged a servant on a condition that he?ll pay Rs 90 and also give him a bag at the end of the yr. He served for 9 months and was given a turban and Rs 65. So the price of turban is ?

    i)Rs 10 II) Rs 19 iii)Rs 0 iv)Rs 55

    Ans: A (after taking bag’s price and turban price same,q is nt perfect.)

    11. The sum of six consecutive odd nos. is 888. What is the average of the nos.?

    i. 147 ii. 148 iii. 149 iv. 146

    Ans: B

    12. In a race from pt. X to pt Y and back, Jack averages 30miles/hr to pt Y and 10 miles/hr back to pr X.Sandy averages 20 miles/hr in both directions. If Jack and Sandy start race at same tym, who?ll finish 1st ?

    Jack/Sandy/they tie/Impossible to tell

    Ans: they tie

    13. 2 men at same tym start walking towards each other from A n B 72 kms apart. sp of A is 4kmph.Sp of B is 2 kmph in 1st hr,2.5 in 2nd, 3 in rd. n so on?when will they meet

    i in 7 hrs

    ii at 35 kms from A

    iii in 10 hrs

    iv midway

    Ans: D

    14. If the ratio of prod of 3 diff comp?s A B & C is 45 and of overall prod last yr was 4lac tones and if each comp had an increase of 20% in prod level this yr what is the prod of Comp B this yr?

    i. 2.1L

    ii.22.1L

    iii.4.1L

    iv.none

    Ans: A

    15. If 70% of a no. is subtracted from itself it reduces to 81.what is two fifth of that no.?

    108/54/210/none

    Ans. A

    16. If radius of cylinder and sphere r same and vol of sphere and cylinder r same what is d ratio betn the radius and height of the cylinder
    i. R= H
    ii. R= (3/4)H
    iii. R = (4/3)H
    iv. R=2/3H
    Ans: B

    17. Which one of the foll fractions is arranged in ascending order
    i. 9/11,7/9,11/13,13/14
    ii 7/8,9/11,11/13,13/14
    iii 9/11,11/13,7/8,13/14
    iv none
    Ans: C

    18.10^10/10^4*10^2=10^?
    i. 8
    ii. 6
    iii. 4
    iv. none
    Ans: A

    19. units digit in expansion os 2 raised to 51 is:

    2/4/6/8

    Ans: D

    20. Three wheels make 36, 24, 60 rev/min. Each has a black mark on it. It is aligned at the start of the qn. When does it align again for the first tym?

    14/20/22/5 sec

    ans 6 sec not in option

    21some question on area which are in hectare and some values r in kilometer so firstly know conversion of km^2–>hectare

    22. In a Triangle ABC , AD is perpendicular to BC ,BD is 15m,and angle B is 30 degree find AC?

    ANS 5 (closest option)

    24. 3,7,11,………………….,407. find 20th term from last.

    ans 331

    25. one question on share .hey friends solve quest on share and dividend
    it will be better

    Section B

    Direction for Qn 1-4

    An employee has to allocate offices to 6 staff members. The offices are no. 1-6. the offices are arranged in a row and they are separated from each other by dividers>hence voices, sounds and cigarette smoke flow easily from one office to another

    Miss R needs to use the telephone quite often throughout the day. Mr. M and Mr. B need adjacent offices as they need to consult each other often while working. Miss H is a senior employee and his to be allotted the office no. 5, having the biggest window.

    Mr. D requires silence in office next to his. Mr. T, Mr. M and Mr. D are all smokers. Miss H finds tobacco smoke allergic and consecutively the offices next to hers are occupied by non-smokers. Unless specifically stated all the employees maintain an atmosphere of silence during office hrs.

    Solution: Arrangements= D T M B H R.

    1. The ideal candidate to occupy office farthest from Mr. B will be
    i. Miss H
    ii. Mr. M
    iii. Mr. T
    iv. Mr. D
    Ans: D

    2. The three employees who are smokers should be seated in the offices
    i. 1 2 4
    ii. 2 3 6
    iii. 1 2 3
    iv. 1 2 3
    Ans: C

    3. The ideal office for Mr. M would be
    i. 2
    ii. 6
    iii. 1
    iv. 3
    Ans: D

    4. In the event of what occurrence within a period of one month since the assignment of the offices would a request for a change in office be put forth by one or more employees?
    i. Mr D quitting smoking
    ii. Mr. T taking over duties formally taken care of by Miss R
    iii. The installation of a water cooler in Miss H?s office
    iv. Mr. B suffering from anemia
    Ans: D(as already on this site)

    Direction for Qn 5-7

    Ten coins are distr. Among 4 people P, Q, R, S such that one of them gets a coin, another gets 2 coins,3rd gets 3 coins, and 4th gets 4 coins. It is known that Q gets more coins than P, and S gets fewer coins than R

    5. If the no. of coins distr. To Q is twice the no. distr. to P then which one of the following. is necessarily true?
    i. R gets even no. of coins
    ii. R gets odd no. of coins
    iii. S gets even no. of coins
    iv. S gets odd no. of coins
    Ans: D

    6. If R gets at least two more coins than S which one of the following is necessarily true?
    i. Q gets at least 2 more coins than S
    ii. Q gets more coins than P
    iii. P gets more coins than S
    iv. P and Q together get at least five coins
    Ans: B

    7. If Q gets fewer coins than R, then which one of the following is not necessarily true?
    i. P and Q together get at least 4 coins
    ii. Q and S together get at least 4 coins
    iii.R and S together get at least 5 coins
    iv.P and R together get at least 5 coins
    Ans: A

    Direction for Qn 8-9

    Elle is 3 times older than Zaheer. Zaheer is ? as old as Waheeda. Yogesh is elder than Zaheer.

    8. What is sufficient to estimate Elle?s age?
    i.Zaheer is 10 yrs old
    ii.Yogesh and Waheeda are both older than Zaheer by the same no of yrs.
    iii.Both of the above
    iv.None of the above
    Ans: A

    9. Which one of the following statements can be inferred from the info above
    i.Yogesh is elder than Waheeda
    ii.Elle is older than Waheeda
    iii.Elle?s age may be less than that of Waheeda
    iv.None of the above
    Ans:B

    Q Qns 10-11 are based on situations given below:

    7 Uni crick players are to be honored at a special luncheon. The players will be seated on a dais along one side of a single rectangular table.
    A and G have to leave the luncheon early and must be seated at the extreme right end of table, which is closest to exit.
    B will receive Man of the Match and must be in the centre chair
    C and D who are bitter rivals for the position of Wicket keeper dislike one another and should be seated as far apart as possible
    E and F are best friends and want to seat together.

    10.Which of the foll may not be seated at either end of the table?
    i. C
    ii. D
    iii. G
    iv. F
    Ans: iv

    11.Which of the foll pairs may not be seated together?
    i. E & A
    ii. B & D
    iii. C & F
    iv. G & D

    Ans: i
    Direction for Qn 12-13

    A robot moves on a graph sheet with x-y axes. The robot is moved by feeding it with a sequence of instructions. The different instructions that can be used in moving it, and their meanings are:
    Instruction Meaning

    GOTO(x,y) move to pt with co-ord (x,y) no matter where u are currently
    WALKX(P) move parallel to x-axis through a distance of p, in the +ve direction if p is +ve and in ?ve if p is ?ve
    WALKY(P) move parallel to y-axis through a distance of p, in the +ve direction if p is +ve and in ?ve if p is ?ve
    12. The robot reaches point (5,6) when a sequence of 3 instr. Is executed, the first of which is GOTO(x,y) , WALKX(2), WALKY(4). What are the values of x and y??
    i. 2,4
    ii. 0,0
    iii. 3,2
    iv. 2,3
    Ans: C

    13. The robot is initially at (x.y), x>0 and y<0. The min no. of Instructions needed to be executed to bring it to origin (0,0) if you are prohibited from using GOTO instr. Is:
    i. 2
    ii. 1
    iii. x + y
    iv. 0
    Ans: A

    Direction for Qn 14-17 quest are simple suppose X*Y : X is father of Y. and more like this you hav 2 find relation for Z is grand father of X

    Direction for Qn 18-24.

    Ans A using I only
    Ans B using II only
    Ans C using both I and II
    Ans D not solvable

    18. Raman and Gaurav Brought eggs from a vendor. How many eggs were bought by each of them
    i. Raman bought half as many as Gaurav
    ii. The dealer had a stock of 500 eggs at the beginning of day
    Ans: D

    19. What is the age of Ramprakash?
    i. Ramprakash was born when his father was 26 yrs old
    ii. Ramprakash?s mothers age is 3yrs less than his father?s
    Ans: D

    20. How much time is reqd for downloading the software?
    i. The Data transfer rate is 6 kbps
    ii. The size of the software is 4.5 megabytes
    Ans: C

    21. Sanjay and Vijay started their journey from Mumbai to Pune. Who reached Pune first?
    i. Sanjay overtakes two times Vijay and Vijay overtakes Sanjay two times
    ii. Sanjay started first
    Ans: C

    22. A boat can ferry 1500 passengers across a river in 12 hrs. How many round trips does it make during the journey?
    i. The boat can carry 400 passengers at a time
    ii. During its journey, the boat takes 40 mins time each way and 20 mins waiting time at each end.
    Ans: C

    23. What are the values of m and n?
    i. n is an even integer, m is odd integer and m is greater than n.
    ii. The product of m and n is 30

    Ans: C

    24. How much is the weight of 20 mangoes and 30 oranges?
    i. 1 orange weighs twice that of 1 mango
    ii. 2 mangoes and 3 oranges weigh 2 kg

    Ans: B

    25. Is the GDP of country X higher than Country Y?
    i. GDP?s of X and Y has been increasing at a compounded annual growth rate of 5% and 6% over he past 5 yrs
    ii. 5 yrs ago GDP of X was 1.2 times Y
    Ans: C.

    Capgemini Paper on 11st June 2010 @ S.I.E.S GST, Nerul (Navi Mumbai)

    Written test-
    1.) Quantitative 25 questions

    2.) Analytical 25 questions
    it is very easy all questions are repeated just check the questions in my previous mail or just check in net. Cut of is

    10 marks in aptitude

    10 marks in reasoning
    I remember all questions. But I have to prepare for my placements. So I will write other questions later.

    Quantitative questions as I remember

    1 ,27,125,?,729,1331.Find da no missing in dis sequence.

    Ans. 343

    Hint.

    1^3, 3^3,5^3, 7^3, 9^3???.
    2) 7, 19,31,43, ? , 77,89,101
    Hint: add 12 to each
    3) y w v t r p n
    Find next letter
    4) There is a rectangular Garden whose length and width are 60m X 20m.There is a walkway of uniform width around garden. Area of walkway is 516m^2. Find width of walkway

    a)1 b) 2 c)3 d)4
    Ans: 3
    10^10

    5) ——————- =
    10^4+10^2

    Ans: 10^4

    6) If a certain sum of money at SI doubles itself in 5 yrs then what is the rate?

    a)5% b) 10% c)25% d)20%
    Ans: 20% check answer

    7) Fresh Grapes contain 90% water by wt. Dried grapes contain 20% water by %age. What will b wt of dried grapes when we begin with 20 kg fresh grapes?

    8. A man engaged a servant on a condition that he?ll pay Rs 90 and also give him a bag at the end of the yr. He served for 9 months and was given a turban and Rs 65. So the price of turban is
    Rs 10 / 19 / 0 / 55

    9). The sum of six consecutive odd nos. is 888. What is the average of the nos.?

    i. 147 ii. 148 iii. 149 iv. 146

    10. In a race from pt. X to pt Y and back, Jack averages 30miles/hr to pt Y and 10 miles/hr back to pr X.Sandy averages 20 miles/hr in both directions. If Jack and Sandy start race at same tym, who?ll finish 1st

    Jack/Sandy/they tie/Impossible to tell

    11. A man engaged a servant on a condition that he?ll pay Rs 90 and also give him a bag at the end of the yr. He served for 9 months and was given a turban and Rs 65. So the price of turban is

    Rs 10 / 19 / 0 / 55

    22. Three wheels make 36, 24, 60 rev/min. Each has a black mark on it. It is aligned at the start of the qn. When does it align again for the first tym?
    14/20/22/5 sec

    23. If 1= (3/4)(1+ (y/x) ) then
    i. x=3y ii. x=y/3 iii. x=(2/3)y iv. None

    REASONING

    Direction for Qn 15-18

    An employee has to allocate offices to 6 staff members. The offices are no. 1-6. the offices are arranged in a row and they are separated from each other by dividers>hence voices, sounds and cigarette smoke flow easily from one office to another

    Miss R needs to use the telephone quite often throughout the day. Mr. M and Mr. B need adjacent offices as they need to consult each other often while working. Miss H is a senior employee and his to be allotted the office no. 5, having the biggest window.

    Mr D requires silence in office next to his. Mr. T, Mr M and Mr. D are all smokers. Miss H finds tobacco smoke allergic and consecutively the offices next to hers are occupied by non-smokers. Unless specifically stated all the employees maintain an atmosphere of silence during office hrs.

    The ideal candidate to occupy office farthest from Mr. B will be

    i. Miss H ii. Mr. M iii. Mr. T iv. Mr. D

    The three employees who are smokers should be seated in the offices

    i. 1 2 4 ii. 2 3 6 iii. 1 2 3 iv. 1 2 3

    The ideal office for Mr. M would be

    i. 2 ii. 6 iii. 1 iv. 3

    In the event of what occurrence within a period of one month since the assignment of the offices would a request for a change in office be put forth by one or more employees?
    i. Mr D quitting smoking
    ii. Mr. T taking over duties formally taken care of by Miss R
    iii. The installation of a water cooler in Miss H?s office
    iv. Mr. B suffering from anemia

    Direction for Qn 24-25

    Elle is 3 times older than Zaheer. Zaheer is ? as old as Waheeda. Yogesh is elder than Zaheer.
    What is sufficient to estimate Elle?s age?
    i. Zaheer is 10 yrs old
    ii. Yogesh and Waheeda are both older than Zaheer by the same no of yrs.
    iii. Both of the above
    iv. None of the above

    Which one of the following statements can be inferred from the info above
    i. Yogesh is elder than Waheeda
    ii. Elle is older than Waheeda
    iii. Elle?s age may be less than that of Waheeda
    iv. None of the above

error: Content is protected !!