The Marketing Blog

My Blog List

LG

  1. main()
    {
    int i;
    printf("%d", &i)+1;
    scanf("%d", i)-1;
    }

    a. Runtime error.
    b. Runtime error. Access violation.
    c. Compile error. Illegal syntax
    d. None of the above

  2. main(int argc, char *argv[])
    {
    (main && argc) ? main(argc-1, NULL) : return 0;
    }

    a. Runtime error.
    b. Compile error. Illegal syntax
    c. Gets into Infinite loop
    d. None of the above

  3. main()
    {
    int i;
    float *pf;
    pf = (float *)&i;
    *pf = 100.00;
    printf("%d", i);
    }

    a. Runtime error.
    b. 100
    c. Some Integer not 100
    d. None of the above

  4. main()
    {
    int i = 0xff;
    printf("%d", i<<2);
    }

    a. 4
    b. 512
    c. 1020
    d. 1024

  5. #define SQR(x) x * x
    main()
    {
    printf("%d", 225/SQR(15));
    }

    a. 1
    b. 225
    c. 15
    d. none of the above

  6. union u
    {
    struct st
    {
    int i : 4;
    int j : 4;
    int k : 4;
    int l;
    }st;
    int i;
    }u;

    main()
    {
    u.i = 100;
    printf("%d, %d, %d",u.i, u.st.i, u.st.l);
    }

    a. 4, 4, 0
    b. 0, 0, 0
    c. 100, 4, 0
    d. 40, 4, 0

  7. union u
    {
    union u
    {
    int i;
    int j;
    }a[10];
    int b[10];
    }u;

    main()
    {
    printf("%d", sizeof(u));
    printf("%d", sizeof(u.a));
    printf("%d", sizeof(u.a[0].i));
    }
    a. 4, 4, 0
    b. 0, 0, 0
    c. 100, 4, 0
    d. 40, 4, 0

  8. main()
    {
    int (*functable[2])(char *format, ...) ={printf, scanf};
    int i = 100;

    (*functable[0])("%d", i);
    (*functable[1])("%d", i);
    (*functable[1])("%d", i);
    (*functable[0])("%d", &i);
    }

    a. 100, Runtime error.
    b. 100, Random number, Random number, Random number.
    c. Compile error
    d. 100, Random number

  9. main()
    {
    int i, j, *p;
    i = 25;
    j = 100;
    p = &i; /* Address of i is assigned to pointer p */
    printf("%f", i/(*p)); /* i is divided by pointer p */
    }

    a. Runtime error.
    b. 1.00000
    c. Compile error
    d. 0.00000

  10. main()
    {
    int i, j;
    scanf("%d %d"+scanf("%d %d", &i, &j));
    printf("%d %d", i, j);
    }

    a. Runtime error.
    b. 0, 0
    c. Compile error
    d. the first two values entered by the user

  11. main()
    {
    char *p = "hello world";
    p[0] = 'H';
    printf("%s", p);
    }

    a. Runtime error.
    b. “Hello world” c. Compile error
    d. “hello world”

  12. main()
    {
    char * strA;
    char * strB = “I am OK”; memcpy( strA, strB, 6);
    }

    a. Runtime error.
    b. “I am OK” c. Compile error
    d. “I am O”

  13. How will you print % character?
    a. printf(“\%”) b. printf(“\\%”) c. printf(“%%”) d. printf(“\%%”)

  14. const int perplexed = 2;
    #define perplexed 3
    main()
    {
    #ifdef perplexed
    #undef perplexed
    #define perplexed 4
    #endif
    printf(“%d”,perplexed); }

    a. 0
    b. 2
    c. 4
    d. none of the above

  15. struct Foo
    {
    char *pName;
    };

    main()
    {
    struct Foo *obj = malloc(sizeof(struct Foo));
    strcpy(obj->pName,"Your Name");
    printf("%s", obj->pName);
    }

    a. “Your Name” b. compile error
    c. “Name” d. Runtime error

  16. struct Foo
    {
    char *pName;
    char *pAddress;
    };
    main()
    {
    struct Foo *obj = malloc(sizeof(struct Foo));
    obj->pName = malloc(100);
    obj->pAddress = malloc(100);
    strcpy(obj->pName,"Your Name");
    strcpy(obj->pAddress, "Your Address");
    free(obj);
    printf("%s", obj->pName);
    printf("%s", obj->pAddress);
    }

    a. “Your Name”, “Your Address” b. “Your Address”, “Your Address” c. “Your Name” “Your Name” d. None of the above

  17. main()
    {
    char *a = "Hello ";
    char *b = "World";
    printf("%s", stract(a,b));
    }

    a. “Hello” b. “Hello World” c. “HelloWorld” d. None of the above

  18. main()
    {
    char *a = "Hello ";
    char *b = "World";
    printf("%s", strcpy(a,b));
    }

    a. “Hello” b. “Hello World” c. “HelloWorld” d. None of the above

  19. void func1(int (*a)[10])
    {
    printf("Ok it works");
    }

    void func2(int a[][10])
    {
    printf("Will this work?");
    }

    main()
    {
    int a[10][10];
    func1(a);
    func2(a);
    }

    a. “Ok it works” b. “Will this work?” c. “Ok it works Will this work?” d. None of the above

  20. main()
    {
    printf("%d, %d", sizeof('c'), sizeof(100));
    }

    a. 2, 2
    b. 2, 100
    c. 4, 100
    d. 4, 4

  21. main()
    {
    int i = 100;
    printf("%d", sizeof(sizeof(i)));
    }

    a. 2
    b. 100
    c. 4
    d. none of the above

  22. main()
    {
    int c = 5;
    printf("%d", main|c);
    }

    a. 1
    b. 5
    c. 0
    d. none of the above

  23. main()
    {
    char c;
    int i = 456;
    c = i;
    printf("%d", c);
    }

    a. 456
    b. -456
    c. random number
    d. none of the above

  24. oid main ()
    {
    int x = 10;
    printf ("x = %d, y = %d", x,--x++);
    }

    a. 10, 10
    b. 10, 9
    c. 10, 11
    d. none of the above

  25. main()
    {
    int i =10, j = 20;
    printf("%d, %d\n", j-- , --i);
    printf("%d, %d\n", j++ , ++i);
    }

    a. 20, 10, 20, 10
    b. 20, 9, 20, 10
    c. 20, 9, 19, 10
    d. 19, 9, 20, 10

  26. main()
    {
    int x=5;
    for(;x==0;x--) {
    printf(“x=%d\n”, x--); }
    }
    a. 4, 3, 2, 1, 0
    b. 1, 2, 3, 4, 5
    c. 0, 1, 2, 3, 4
    d. none of the above

  27. main()
    {
    int x=5;
    for(;x!=0;x--) {
    printf(“x=%d\n”, x--); }
    }
    a. 5, 4, 3, 2,1
    b. 4, 3, 2, 1, 0
    c. 5, 3, 1
    d. none of the above

  28. main()
    {
    int x=5;
    {
    printf(“x=%d ”, x--); }
    }
    a. 5, 3, 1
    b. 5, 2, 1,
    c. 5, 3, 1, -1, 3
    d. –3, -1, 1, 3, 5

  29. main()
    {
    unsigned int bit=256;
    printf(“%d”, bit); }
    {
    unsigned int bit=512;
    printf(“%d”, bit); }
    }

    a. 256, 256
    b. 512, 512
    c. 256, 512
    d. Compile error

  30. main()
    {
    int i;
    for(i=0;i<5;i++)
    {
    printf("%d\n", 1L << i);
    }
    }
    a. 5, 4, 3, 2, 1
    b. 0, 1, 2, 3, 4
    c. 0, 1, 2, 4, 8
    d. 1, 2, 4, 8, 16

  31. main()
    {
    signed int bit=512, i=5;

    for(;i;i--)
    {
    printf("%d\n", bit = (bit >> (i - (i -1))));
    }
    }
    512, 256, 128, 64, 32
    b. 256, 128, 64, 32, 16
    c. 128, 64, 32, 16, 8
    d. 64, 32, 16, 8, 4

  32. main()
    {
    signed int bit=512, i=5;

    for(;i;i--)
    {
    printf("%d\n", bit >> (i - (i -1)));
    }
    }

    a. 512, 256, 0, 0, 0
    b. 256, 256, 0, 0, 0
    c. 512, 512, 512, 512, 512
    d. 256, 256, 256, 256, 256

  33. main()
    {
    if (!(1&&0))
    {
    printf("OK I am done.");
    }
    else
    {
    printf(“OK I am gone.”); }
    }

    a. OK I am done
    b. OK I am gone
    c. compile error
    d. none of the above

  34. main()
    {
    if ((1||0) && (0||1))
    {
    printf("OK I am done.");
    }
    else
    {
    printf(“OK I am gone.”); }
    }

    a. OK I am done
    b. OK I am gone
    c. compile error
    d. none of the above

  35. main()
    {
    signed int bit=512, mBit;

    {
    mBit = ~bit;
    bit = bit & ~bit ;

    printf("%d %d", bit, mBit);
    }
    }

    a. 0, 0
    b. 0, 513
    c. 512, 0
    d. 0, -513

Read more...

BOSCH

PAPER PATTERN

This pattern below is for computer science (CS) students only. There was another set of paper for MECH branch students.

Section 1:This section had only technical question. They were mainly from Pointers in C, C++, Data Structures and some questions on OS, DBMS.This section also had lots of question on bit conversions (HEX to Binary, decimal) and one question on finding 2's compliment and such others. There were few questions on finding TRUE/FALSE statement which was bit confusing. Question to calculate square root, cube root of a number were also included.
Overall, this section was easy if you are good with your basics. The questions were mainly around the basic concepts only.
Each question had four options (A, B, C, D) and we had to find the most appropriate answer. Each correct answer carries 2 marks and there is a negative marking of 1 for each wrong answer. So be careful while attempting these questions.

Section 2:This had only general English questions. No book will help you to answer these questions; instead you should have good knowledge of grammar and different English works.
There was a paragraph with some blanks in between. So we had to find the appropriate words to fill in, from the given options. Other questions included comprehension, synonyms, proverbs type question and others.
This section needs some intelligent guessing as you feel that all of the given options are correct and sometimes all are wrong.
Each correct answer carries 1 mark and there is a negative mark of 0.5.



BOSCH REXROTH AG , Vatva , Ahmedabad, ON 24th Aug. 2004

1. Critical stress at which material will start to flow
(a)yield
(b)ultimate tensile stress
(c) proof stress
(d) none o the above

2. maximum degree of freedom in space Ans. 6

3. bearing which will take axial and radial loads.
(a) thrust bearing
(b) deep groove
(c) taper roller
(d) ---

4. volume of water per cubic metre of air.
(a)specific volume
(b) specific gravity
(c) vapour pressure
(d) none of above

5. fluid is flowing through a frustum of cone. what is the nature of graph of velocity Vs. c/s area. {flow = velocity X c/s area}
(a) parabola
(b) hyperbola
(c) y=mx+c
(d) x=x.

6. Fluid in a pipe having no change in profile with change in length of pipe ...explain type of flow.
a)Laminar
b)Turbulent
c)fully developed profile
d)steady flow

7. Which are correct
I) Navier Stokes Eq. is .... of momentum conservation eq.
II)bernoulis eq. is for viscous flow
III) REYNOLD no. >3000 always for turbulent flow.
a)I and II correct
b)I and II not correct
c)II and III correct
d)II and III not correct

8. Which can't be removed during alloying from Fe alloys
a) co
b) N
c) Si
d) As

9.There are two ropes burning non uniformly (rate) and clock half an hour each. which can't be clocked ?
a) 1 Hr.
b) 45 min
c)15 min
d)none

10. Lim n->0 (1+ 1/n)^n =
a) 1
b)0
c)e
d)infinity

11.time dependent increase in length at steady temp. is called
a) superplasticity
b) creep
c) fatigue
d) none

12. Vicosity change with increasing temp.
a) decreases
b) increases
c) same
d) first decreases and then increases.

13. Direction of friction in bicycle tyres
a) along motion
b) opp. motion
c) Front opp. motion and vice versa
d) rear opp. motion and vice versa

14. Sp. gravity of a fluid
a) density of fluid at 0`c / density of water at o`c.
b) density of fluid at 0`c / density of water at T`c.
c) density of fluid at T`c / density of water at o`c.
d) density of fluid at T`c / density of water at T`c.

15. lateral strain / longitudinal strain
a) Poission's Ratio
b) Bulk Modulus
c) Modulus Of Elasticity
d) None

16. 10 coins & 1 defected coin and 2 weighs Find min weighs req. to detect faulty coin
a) 2
b)3
c)4
d)5

17. 9 members in meeting scheluled at 10:00 A.M. , all reaches at 9:48 A.M. . one member req. 2 min to intro with other find meeting delay with scheduled time of 10:00 A.M..
a) 1 Hr.
b) 6 min
c) ...
d)At scheduled time


18. A completes job in 10 hr. and B completes in 15 hr.. Find when both together works
a) 6 hr.
b) 8 hr
c) 10 hr
d) none

19. A ball dropped from H height and moves 80% of height each time.Total dist. covered
a) 4H
b) 5H
c) 7H
d) 9H

20. A cantilever beam loaded at free end find reinforcement place
a) AT neutral axis
b) above neutral axis
c) below neutral axis
d) above and below neutral axis

21. punching a sheet of D dia and T thickness and S ultimate tensile stress
a) 3.14 DTS
b) 3.14TS X D^2
c) 6.28 DTS
d)6.28 TS x D^2

22. ...

23. two easy ques. of string mass equilibrium system...

24. Microstructure after quenching
a) Mertensite
b) pearlite
c) ........
d)..........

Read more...

AXES TECHNOLOGIES


Interview Procedure :

The information on the interview is pretty sketchy but it may consist of both technical grilling and HR interview

The written test is purely technical with stress on Networking, C, Operating Systems, Data Structures etc. You should be clear with the fundamentals of these and other core subjects. Questions are mainly multiple-choice though this may vary.

About The Company :

Axes Technologies(I) Pvt. Ltd. is a subsidiary of Axes Technologies Inc, Dallas, USA and was set up in 1995 in Bangalore. The Chennai center came up in 1997 and a second center was established in Bangalore in 1998.
Axes specializes in the development of telecom software. Axes has developed high quality software for Long Distance Tandem and Mobile Switches. Axes has state-of-the-art infrastructure and computing environment at its facilities spread over 50,000 sq.ft. Over 275 talented software professionals work here. Axes is a 100% export oriented unit - set up under the umbrella of Software Technology Park (STP) of the Government of India.
Axes products are currently being used by leading telecom companies all over the world. Axes is executing projects in the areas of Tandem Switches, Cellular Switches, STP, Network Management, AIN Peripherals and Digital Loop Carrier Systems. The Bangalore center has been certified for ISO 9001 by Underwriters Laboratories Inc., and is working towards achieving SEI CMM level 4.


PATTERN

Computer science branch students had 4 sections to
answer:
1 .General aptitude (simple - easier than RSAgarwal)
Q-11. was wrong it was relating to some fatal relationship. the other's were number sequencing,
GRE analogies, antonyms (abt. 10 q's). totally about 50 q's
2 .Microcontroller 8086 (basics only,some q's like max. unsigned number in 8086 ans = power16 ) there were some small codes you need to tracae.
3 .'c' was simple, there were some stubs o/p was to be traced. there was one bit wise 'or'
problem
4 .I felt this the toughest (Java/C++/OSconcepts) Java and C++ were general questions, no progs. and os was easy. (i guess i got just 40 % right in this section)





SAMPLE PAPER

Computer Awareness
1. A 2MB PCM(pulse code modulation) has

a) 32 channels
b) 30 voice channels & 1 signalling channel.
c) 31 voice channels & 1 signalling channel.
d) 32 channels out of which 30 voice channels, 1 signalling channel, & 1 Synchronizatio channel. Ans: (c)

2. Time taken for 1 satellite hop in voice communication is
a) 1/2 second
b) 1 seconds
c) 4 seconds
d) 2 seconds Ans: (a)

3. Max number of satellite hops allowed in voice communication is :
a) only one
b) more han one
c) two hops
d) four hops Ans: (c)

4. What is the max. decimal number that can be accomodated in a byte.
a) 128
b) 256
c) 255
d) 512 Ans: (c)

5. Conditional results after execution of an instruction in a micro processor is stored in
a) register
b) accumulator
c) flag register
d) flag register part of PSW(Program Status Word) Ans: (d)

6. Frequency at which VOICE is sampled is
a) 4 Khz
b) 8 Khz
c) 16 Khz
d) 64 Khz Ans: (a)

7. Line of Sight is
a) Straight Line
b) Parabolic
c) Tx & Rx should be visible to each other
d) none Ans: (c)

8. Purpose of PC(Program Counter) in a MicroProcessor is
a) To store address of TOS(Top Of Stack)
b) To store address of next instruction to be executed.
c) count the number of instructions.
d) to store base address of the stack. Ans: (b)

9. What action is taken when the processor under execution is interrupted by a non-maskable interrupt?
a) Processor serves the interrupt request after completing the execution of the current instruction.
b) Processor serves the interupt request after completing the current task.
c) Processor serves the interupt request immediately.
d) Processor serving the interrupt request depends upon the priority of the current task under execution. Ans: (a)

10. The status of the Kernel is
a) task
b) process
c) not defined.
d) none of the above. Ans: (b)

11 What is the nominal voltage required in subscriber loop connected to local exchange?
a) +48 volts
b) -48 volts
c) 230 volts
d) 110 volts

12. To send a data packet using datagram , connection will be established
a) before data transmission.
b) connection is not established before data transmission.
c) no connection is required.
d) none of the above. Ans: (c)

13. Word allignment is
a) alligning the address to the next word boundary of the machine.
b) alligning to even boundary.
c) alligning to word boundary.
d) none of the above. Ans: (a)

14 When a 'C' function call is made, the order in which parameters passed to the function are pushed into the stack is
a) left to right
b) right to left
c) bigger variables are moved first than the smaller variales.
d) smaller variables are moved first than the bigger ones.
e) none of the above. Ans: (b)

15 What is the type of signalling used between two exchanges?
a) inband
b) common channel signalling
c) any of the above
d) none of the above. Ans: (a)

16. Buffering is
a) the process of temporarily storing the data to allow for small variation in device speeds
b) a method to reduce cross talks
c) storage of data within transmitting medium until the receiver is ready to receive.
d) a method to reduce routing overhead. Ans: (a)

17. A protocol is a set of rules governing a time sequence of events that must take place between
a) peers
b) non-peers
c) allocated on stack
d) assigned to registers.

18. Memory allocation of variables declared in a program is
a) allocated in RAM.
b) allocated in ROM.
c) allocated on stack.
d) assigned to registers. Ans: (c)

19. A software that allows a personal computer to pretend as a computer terminal is
a) terminal adapter
b) bulletin board
c) modem
d) terminal emulation Ans: (d)

The following questions (Q20-Q33) are of a slightly different pattern than those above and may also be asked:

20. Find the output of the following program

int *p,*q;
p=(int *)1000;
q=(int *)2000;
printf("%d",(q-p));
Ans: 500

21. What does the statement int(*x[])() indicate?

22. Which addressing mode is used in the following statements:
(a) MVI B,55
(b) MOV B,A
(c) MOV M,A
Ans.
(a) Immediate addressing mode.
(b) Register Addressing Mode
(c) Direct addressing mode

23. RS-232C standard is used in _____________. Ans. Serial I/O

24. How are parameters passed to the main function?

25. What does the file stdio.h contain?
a) functin definition
b) function decleration
c) both func. defn & func. decleration.

26. sscanf is used for ?

27. Memory. Management in Operating Systems is done by
a) Memory Management Unit
b) Memory management software of the Operating System
c) Kernel Ans: (b)

28. What does the statement strcat(S2,S1) do?

29. TCP(Transmission Control Protocol) is Connection Oriented and used in ______________ layer?

30. IP(Internet Protocol) is connectionless and used in _________________ layer?

31. For LAN Netwrok layer is not required. Why?

32. What is done for a Push opertion? Ans: SP is decremented and then the value is stored.

33. Describe the following structures as LIFO/FILO/FIFO/LILO (a) Stack (b) Queue

Read more...

What Should NOT Be On Your Resume!!

In our eagerness to obtain an interview, we sometimes have a tendency to provide a prospective employer with inappropriate information that would be detrimental to us, resulting in both a loss of interest and an interview.

Keep in mind that a prospective employer, who must review 200 to 400 resumes for an advertised position, is busy and has to rule out or disqualify all but a handful of those resumes in an attempt to find only qualified candidates. If he or she can't easily find what they are looking for immediately (in 20 seconds), it probably will get discarded. In order to avoid having your resume land in the "round file," here are a few hints.

· Avoid nicknames, using your business name and middle initial.

· Don't try to impress or insult the employer with fancy words as you may frustrate them and perhaps have your resume rejected.

· Never include personal information such as age, race, gender, height, weight, religion, national origin, marital status, children, health, physical appearance, or a photograph of yourself.

· Do not handwrite your resume. Typewriters are fine, but a computer and printer should be used if possible. Be sure to use tabs instead of the space bar when typing.

· In your Objective, never tell an employer what YOU expect out of a job -- only what you can contribute. Keep in mind that it's not up to the employer to motivate you and present challenges

. it's up to YOU. If you mention in your objective that you wish to advance within the
organization, this could work against you in that the position for which you are interviewing may be a dead-end job.

· If using a Profile, don't include the same information listed on the resume. When listing your current and past employers, omit street names, zip codes, telephone numbers, and the names of supervisors. You really shouldn't go back any further than 10 to 15 years regarding employment, unless it is directly related to the position for which you are applying.

· When listing job duties, don't use sentences or paragraphs, as you don't want to be too wordy and bore the reader. Instead, use bullets without punctuation, maintaining consistency throughout.

· Don't eliminate a previously held job just because it doesn't relate to your career goal. You don't need to elaborate -- just mention it -- as you don't want a gap in employment.

· Never divulge the reasons why you left each place of employment nor your availability to begin working for the company -- both of which should be discussed in the interview.

· Don't place Education before Employment unless you are a current or soon to be graduate or have received your degree within the last two years, unless your education relates to the position for which you are applying. Don't include your GPA unless it is at least 3.0 or higher.

· Salary or wage should never be mentioned until an offer is presented at the interview and only if brought up by the prospective employer. The only exceptions would be if salary history or requirements are mentioned in the ad, in which case you need to follow the directions given.

· Hobbies and personal interests should be omitted unless they represent your career goal, such as "golfer" for a position at a golf course.

· Never list your references or the words "references furnished upon request" as this is an insult to the prospective employer's intelligence. Of course you will provide these if he or she requests them -- which wouldn't be until after your interview. So why give them information they may not need?

· Don't forget to put your name on the second page, in case it separates from the first page.

· Don't use cheap paper, carbons or onionskin. Don't use wild or bright colors for your resumes, as you want to remain conservative andbusiness-like.

· Upon completion of your resume, have your copies professionally reproduced -- not on a copy machine.

· Don't submit a resume longer than two pages. Never print on two sides of the same paper.

· Make sure there are no typographical or grammatical errors, erasures, white outs, scratched out or rewritten text, and that your paper isn't dirty, ripped, ink-marked, stained or wrinkled. Check that your verb tense is proper, using past and present tense when appropriate.

· To keep the professional image, it is suggested that you don't staple your resume.

· Prior to sending your resume, check to see if you placed adequate postage on your envelope and put a return address on it.

· Don't forget to include a cover letter with your resume as this is expected in the business world.

Keep in mind that you are marketing yourself with your resume. Be creative, honest and assertive. Before you mail your resume, review it one last time. Then ask yourself this question, "If I am a prospective employer, and I just read my resume, would I hire me?"

Read more...

3i Infotech

TEST PATTERN-

the paper consists of three parts:

1.English(50 ques,50 marks)
2.Quantitative aptitude(50 ques,50 marks)
3.Logical Reasoning(50 ques,50 marks)
total time:90 min.
The paper was totally on the pattern of Bank PO exam. There were no ques of shakuntala devi or george summers...


PAPER ON 28th JANUARY AT DELHI

There was 3 sections-
English usage,
Logical Reasoning and
arithmetic n data interpretation

There were in total 150 q's, having 50 q's from each sections. All Q's were easy.

Time limit : 90 mins

Before going to venue, just read out the instructions given on the site, coz there was lot of confusions. I did keep with me the specimen answer sheet.

Section 1: English usage

In this there was a paragrap, nearly 400 words, about regularization of banking acts. On basis of this para there was q's . These are as follows-

--> 10 direct q's relataed to para

--> 3 Synoyms(Contemporay, Resilence etc.)

--> 3 Antonyms

--> 9 q's were based on fill in d blanks which was nothing bt, about Development and Education in Punjab and U.P.


on an average all d synonyms n antonyms were very easy and day to day conversational use. These synonyms and antonyms were given in bold in d para.

While solving this type of para plz keep in mind that one time reading with better comprehension is nt only helpful, bt u have to use regression. Remaining 25 q's were based on finding out grammatical error(u can see in any cat/ mat preparartion book). some were diifficult.

In this section i did only 23 q's.

Section 2 : Reasoning

--> 1 caselet based sitting arrangement(5-6 q's)

--> 5 q's based on Blood Relation(if A+B stands for A is father of B , A-B stands for Ais bro of B......... then what is A-B*c so on )

--> 5 q's based on critical resoning(like all banana's are mango, some mangoes are chilli then conclude...)

--> 4-5 q's based on series. In this you have to find out odd one in he series.

--> Some on coding decoding

--> Some were slightly different. These were like -- 5 different nos were given and said that 1 is added to the first digit of all numbers and 1 is subtracted from the middle digit. then Find out the second largest n so on.

--> Some were Data Sufficiency

Suggestion: For seies go through Mitra's Book Quicker maths.

Section 3 : Arithmetic

In this topic on which Q's were based, is as -

1. Probab -- 5 q's, in this q like--- there are different balls in a bag as3-green, 5-blue, 7-red. 6-black then find out the probab of getting 2 red balls, gtting at least 1 gren ball while picking up 3 balls n so on.

2. Series Comletion- 5 q

3. Simplification-10-12 q, as (1) if 12.48 / ? / 56.4 = 12.3 then find ? and so on

4. Compound Interest -1q (Direct Formula)

5. Trains speed-1q as, A train crosses a platform of length double of its length, in 30 sec. Find speed of train.(Ans- can not determined)

6. Data Interpretation- 15 q, 2tables and 1 pie chart, vey easy just calculation basis.

Do as much as possible Bank po sets, there is nothing bt all depends on UR CALCULATION SPEED.

ICICI Infotech Placement Papers

Aptitude Question Paper (2005)

1. In a class composed of x girls and y boys what part of the class is composed of girls
A.y/(x + y) B.x/xy C.x/(x + y) D.y/xy (Ans.C)

2. What is the maximum number of half-pint bottles of cream that can be filled with a 4-gallon can of cream(2 pt.=1 qt. and 4 qt.=1 gal)
A.16 B.24 C.30 D.64 (Ans.D)

3. .If the operation,^ is defined by the equation x ^ y = 2x + y,what is the value of a in
2 ^ a = a ^ 3
A.0 B.1 C.-1 D.4 (Ans.B)

4. A coffee shop blends 2 kinds of coffee,putting in 2 parts of a 33p. a gm. grade to 1 part of a 24p. a gm.If the mixture is changed to 1 part of the 33p. a gm. to 2 parts of the less expensive grade,how much will the shop save in blending 100 gms.
A.Rs.90 B.Rs.1.00 C.Rs.3.00 D.Rs.8.00 (Ans.C)

5. There are 200 questions on a 3 hr examination.Among these questions are 50 mathematics problems.It is suggested that twice as much time be spent on each maths problem as for each other question.How many minutes should be spent on mathematics problems
A.36 B.72 C.60 D.100 (Ans.B)

6. In a group of 15,7 have studied Latin, 8 have studied Greek, and 3 have not studied either.How many of these studied both Latin and Greek
A.0 B.3 C.4 D.5 (Ans.B)

7. If 13 = 13w/(1-w) ,then (2w)2 =
A.1/4 B.1/2 C.1 D.2 (Ans.C)

8. If a and b are positive integers and (a-b)/3.5 = 4/7, then
(A) b <> a (C) b = a (D) b >= a (Ans. A)

9. In june a baseball team that played 60 games had won 30% of its game played. After a phenomenal winning streak this team raised its average to 50% .How many games must the team have won in a row to attain this average?
A. 12 B. 20 C. 24 D. 30 (Ans. C)

10. M men agree to purchase a gift for Rs. D. If three men drop out how much more will each have to contribute towards the purchase of the gift/
A. D/(M-3) B. MD/3 C. M/(D-3) D. 3D/(M2-3M) (Ans. D)

11. . A company contracts to paint 3 houses. Mr.Brown can paint a house in 6 days while Mr.Black would take 8 days and Mr.Blue 12 days. After 8 days Mr.Brown goes on vacation and Mr. Black begins to work for a period of 6 days. How many days will it take Mr.Blue to complete the contract?
A. 7 B. 8 C. 11 D. 12 (Ans.C)

12. 2 hours after a freight train leaves Delhi a passenger train leaves the same station travelling in the same direction at an average speed of 16 km/hr. After travelling 4 hrs the passenger train overtakes the freight train. The average speed of the freight train was?
A. 30 B. 40 C.58 D. 60 (Ans. B)

13. If 9x-3y=12 and 3x-5y=7 then 6x-2y = ?
A.-5 B. 4 C. 2 D. 8 (Ans. D)

14. There are 5 red shoes, 4 green shoes. If one draw randomly a shoe what is the probability of getting a red shoe (Ans 5c1/ 9c1) 1

5. What is the selling price of a car? If the cost of the car is Rs.60 and a profit of 10% over selling price is earned (Ans: Rs 66/-)

16. 1/3 of girls , 1/2 of boys go to canteen .What factor and total number of classmates go to canteen.
Ans: Cannot be determined.

17. The price of a product is reduced by 30% . By what percentage should it be increased to make it 100% (Ans: 42.857%)

18. There is a square of side 6cm . A circle is inscribed inside the square. Find the ratio of the area of circle to square. (Ans. 11/14 )

19. There are two candles of equal lengths and of different thickness. The thicker one lasts of six hours. The thinner 2 hours less than the thicker one. Ramesh lights the two candles at the same time. When he went to bed he saw the thicker one is twice the length of the thinner one. How long ago did Ramesh light the two candles .
Ans: 3 hours.

20. If M/N = 6/5,then 3M+2N = ?

21. If p/q = 5/4 , then 2p+q= ?

22. If PQRST is a parallelogram what it the ratio of triangle PQS & parallelogram PQRST . (Ans: 1:2 )

23. The cost of an item is Rs 12.60. If the profit is 10% over selling price what is the selling price ? (Ans: Rs 13.86/- )

24. There are 6 red shoes & 4 green shoes . If two of red shoes are drawn what is the probability of getting red shoes (Ans: 6c2/10c2)

25. To 15 lts of water containing 20% alcohol, we add 5 lts of pure water. What is % alcohol. (Ans : 15% )

26. A worker is paid Rs.20/- for a full days work. He works 1,1/3,2/3,1/8.3/4 days in a week. What is the total amount paid for that worker ? (Ans : 57.50 )

27. If the value of x lies between 0 & 1 which of the following is the largest? (a) x b) x2 (c) –x (d) 1/x (Ans : (d) )

28. If the total distance of a journey is 120 km .If one goes by 60 kmph and comes back at 40kmph what is the average speed during the journey? Ans: 48kmph

29. A school has 30% students from Maharashtra .Out of these 20% are Bombey students. Find the total percentage of Bombay? (Ans: 6%)

30. An equilateral triangle of sides 3 inch each is given. How many equilateral triangles of side 1 inch can be formed from it? (Ans: 9)

31. If A/B = 3/5,then 15A = ? (Ans : 9B)

32. Each side of a rectangle is increased by 100% .By what percentage does the area increase? (Ans : 300%)

33. Perimeter of the back wheel = 9 feet, front wheel = 7 feet on a certain distance, the front wheel gets 10 revolutions more than the back wheel .What is the distance? Ans : 315 feet

34. Perimeter of front wheel =30, back wheel = 20. If front wheel revolves 240 times. How many revolutions will the back wheel take? Ans: 360 times

35. 20% of a 6 litre solution and 60% of 4 litre solution are mixed. What percentage of the mixture of solution(Ans: 36%)

36. City A's population is 68000, decreasing at a rate of 80 people per year. City B having population 42000 is increasing at a rate of 120 people per year. In how many years both the cities will have same population? (Ans: 130 years)

37. Two cars are 15 kms apart. One is turning at a speed of 50kmph and the other at 40kmph . How much time will it take for the two cars to meet?(Ans: 3/2 hours)

38. A person wants to buy 3 paise and 5 paise stamps costing exactly one rupee. If he buys which of the following number of stamps he won't able to buy 3 paise stamps. Ans: 9

39. There are 12 boys and 15 girls, How many different dancing groups can be formed with 2 boys and 3 girls.

40. Which of the following fractions is less than 1/3 (a) 22/62 (b) 15/46 (c) 2/3 (d) 1 (Ans: (b))

41. There are two circles, one circle is inscribed and another circle is circumscribed over a square. What is the ratio of area of inner to outer circle? Ans: 1 : 2

42. Three types of tea the a,b,c costs Rs. 95/kg,100/kg and70/kg respectively.How many kgs of each should be blended to produce 100 kg of mixture worth Rs.90/kg, given that the quntities of band c are equal a)70,15,15 b)50,25,25 c)60,20,20 d)40,30,30 (Ans. (b))

43. in a class, except 18 all are above 50 years.15 are below 50 years of age. How many people are there (a) 30 (b) 33 (c) 36 (d) none of these. (Ans. (d))

44. If a boat is moving in upstream with velocity of 14 km/hr and goes downstream with a velocity of 40 km/hr, then what is the speed of the stream ?
(a) 13 km/hr (b) 26 km/hr (c) 34 km/hr (d) none of these (Ans. A)

45. Find the value of ( 0.75 * 0.75 * 0.75 - 0.001 ) / ( 0.75 * 0.75 - 0.075 + 0.01)
(a) 0.845 (b) 1.908 (c) 2.312 (d) 0.001 (Ans. A)

46. A can have a piece of work done in 8 days, B can work three times faster than the A, C can work five times faster than A. How many days will they take to do the work together ?
(a) 3 days (b) 8/9 days (c) 4 days (d) can't say (Ans. B)

47. A car travels a certain distance taking 7 hrs in forward journey, during the return journey increased speed 12km/hr takes the times 5 hrs.What is the distancetravelled

(a) 210 kms (b) 30 kms (c) 20 kms (c) none of these (Ans. B)

48. Instead of multiplying a number by 7, the number is divided by 7. What is the percentage of error obtained ?

49. Find (7x + 4y ) / (x-2y) if x/2y = 3/2 ?
(a) 6 (b) 8 (c) 7 (d) data insufficient (Ans. C)

50. A man buys 12 lts of liquid which contains 20% of the liquid and the rest is water. He then mixes it with 10 lts of another mixture with 30% of liquid.What is the % of water in the new mixture?

51. If a man buys 1 lt of milk for Rs.12 and mixes it with 20% water and sells it for Rs.15, then what is the percentage of gain?

52. Pipe A can fill a tank in 30 mins and Pipe B can fill it in 28 mins.If 3/4th of the tank is filled by Pipe B alone and both are opened, how much time is required by both the pipes to fill the tank completely ?

53. If on an item a company gives 25% discount, they earn 25% profit. If they now give 10% discount then what is the profit percentage. (a) 40% (b) 55% (c) 35% (d) 30% (Ans. D)

54. A certain number of men can finish a piece of work in 10 days. If however there were 10 men less it will take 10 days more for the work to be finished. How many men were there originally?
(a) 110 men (b) 130 men (c) 100 men (d) none of these (Ans. A)

55. In simple interest what sum amounts of Rs.1120/- in 4 years and Rs.1200/- in 5 years ? (a) Rs. 500 (b) Rs. 600 (c) Rs. 800 (d) Rs. 900 (Ans. C)

56. If a sum of money compound annually amounts of thrice itself in 3 years. In how many years will it become 9 times itself.
(a) 6 (b) 8 (c) 10 (d) 12 (Ans A)

57. Two trains move in the same direction at 50 kmph and 32 kmph respectively. A man in the slower train observes the 15 seconds elapse before the faster train completely passes by him. What is the length of faster train ?
(a) 100m (b) 75m (c) 120m (d) 50m (Ans B)

58. How many mashes are there in 1 squrare meter of wire gauge if each mesh
is 8mm long and 5mm wide ?
(a) 2500 (b) 25000 (c) 250 (d) 250000 (Ans B)

59. x% of y is y% of ?
(a) x/y (b) 2y (c) x (d) can't be determined Ans. C

60. The price of sugar increases by 20%, by what % should a housewife reduce the consumption of sugar so that expenditure on sugar can be same as before ?
(a) 15% (b) 16.66% (c) 12% (d) 9% (Ans B)

61. A man spends half of his salary on household expenses, 1/4th for rent, 1/5th for travel expenses, the man deposits the rest in a bank. If his monthly deposits in the bank amount 50, what is his monthly salary ?
(a) Rs.500 (b) Rs.1500 (c) Rs.1000 (d) Rs. 900 (Ans C)

62. The population of a city increases @ 4% p.a. There is an additional annual increase of 4% of the population due to the influx of job seekers, find the % increase in population after 2 years ?

63. The ratio of the number of boys and girls in a school is 3:2 Out of these 10% the boys and 25% of girls are scholarship holders. % of students who are not scholarship holders.?

64. 15 men take 21 days of 8 hrs. each to do a piece of work. How many days of 6 hrs. each would it take for 21 women if 3 women do as much work as 2 men?
(a) 30 (b) 20 (c) 19 (d) 29 (Ans. A)

65. A cylinder is 6 cms in diameter and 6 cms in height. If spheres of the same size are made from the material obtained, what is the diameter of each sphere?
(a) 5 cms (b) 2 cms (c) 3 cms (d) 4 cms (Ans C)

66. A rectangular plank (2)1/2 meters wide can be placed so that it is on either side of the diagonal of a square shown below.(Figure is not available)What is the area of the plank? ( Ans :7*(2)1/2 )

67. What is the smallest number by which 2880 must be divided in order to make it into a perfect square ?
(a) 3 (b) 4 (c) 5 (d) 6 (Ans. C)

68. A father is 30 years older than his son however he will be only thrice as old as the son after 5 years what is father's present age ?
(a) 40 yrs (b) 30 yrs (c) 50 yrs (d) none of these (Ans. A)

69. An article sold at a profit of 20% if both the cost price and selling price would be Rs.20/- the profit would be 10% more. What is the cost price of that article?

70. If an item costs Rs.3 in '99 and Rs.203 in '00.What is the % increase in price?
(a) 200/3 % (b) 200/6 % (c) 100% (d) none of these (Ans. A)

71. 5 men or 8 women do equal amount of work in a day. a job requires 3 men and 5 women to finish the job in 10 days how many woman are required to finish the job in 14 days.
a) 10 b) 7 c) 6 d) 12 (Ans 7)

72. A simple interest amount of rs 5000 for six month is rs 200. what is the anual rate of interest?
a) 10% b) 6% c) 8% d) 9% (Ans 8%)

73. In objective test a correct ans score 4 marks and on a wrong ans 2 marks are ---. a student score 480 marks from 150 question. how many ans were correct? a) 120 b) 130 c) 110 d) 150 (Ans130)

74. An artical sold at amount of 50% the net sale price is rs 425 .what is the list price of the artical?
a) 500 b) 488 c) 480 d) 510 (Ans 500)

75. A man leaves office daily at 7pm A driver with car comes from his home to pick him from office and bring back home.One day he gets free at 5:30 and instead of waiting for driver he starts walking towards home. In the way he meets the car and returns home on car He reaches home 20 minutes earlier than usual. In how much time does the man reach home usually?? (Ans. 1hr 20min)

76. A works thrice as much as B. If A takes 60 days less than B to do a work then find the number of days it would take to complete the work if both work together? Ans. 22½days

77. How many 1's are there in the binary form of 8*1024 + 3*64 + 3 Ans. 4

78. In a digital circuit which was to implement (A B) + (A)XOR(B), the designer implements (A B) (A)XOR(B) What is the probability of error in it ?

79. A boy has Rs 2. He wins or loses Re 1 at a time If he wins he gets Re 1 and if he loses the game he loses Re 1.He can loose only 5 times. He is out of the game if he earns Rs 5.Find the number of ways in which this is possible? (Ans. 16)

80. If there are 1024*1280 pixels on a screen and each pixel can have around 16 million colors. Find the memory required for this? (Ans. 4MB)

81. . On a particular day A and B decide that they would either speak the truth or will lie. C asks A whether he is speaking truth or lying? He answers and B listens to what he said. C then asks B what A has said B says "A says that he is a liar" What is B speaking ?(a) Truth (b) Lie (c) Truth when A lies (d) Cannot be determined Ans. (b)

82. What is the angle between the two hands of a clock when time is 8:30 Ans. 75(approx)

83. A student is ranked 13th from right and 8th from left. How many students are there in totality ? 84. A man walks east and turns right and then from there to his left and then 45degrees to his right.In which direction did he go (Ans. North west)

85. A student gets 70% in one subject, 80% in the other. To get an overall of 75% how much should get in third subject.

86. A man shows his friend a woman sitting in a park and says that she the daughter of my grandmother's only son.What is the relation between the two
Ans. Daughter

87. How many squares with sides 1/2 inch long are needed to cover a rectangle that is 4 ft long and 6 ft wide (a) 24 (b) 96 (c) 3456 (d) 13824 (e) 14266

88. If a=2/3b , b=2/3c, and c=2/3d what part of d is b/ (a) 8/27 (b) 4/9 (c) 2/3 (d) 75% (e) 4/3 Ans. (b)

89. 2598Successive discounts of 20% and 15% are equal to a single discount of (a) 30% (b) 32% (c) 34% (d) 35% (e) 36 Ans. (b)

90. The petrol tank of an automobile can hold g liters.If a liters was removed when the tank was full, what part of the full tank was removed? (a)g-a (b)g/a (c) a/g (d) (g-a)/a (e) (g-a)/g (Ans. (c)) 91. If x/y=4 and y is not '0' what % of x is 2x-y
(a)150% (b)175% (c)200% (d)250% (Ans. (b))


Read more...

  © Blogger templates ProBlogger Template by Ourblogtemplates.com 2008 | Gorgeous Beaches of Goa

Back to TOP