Friday 13 January 2012

Unisys placement papers.

Hai guys,Back again,..
this time I am having unisys Placement papers for you..

Download as a PDF file

or







Unisys Placement Paper 2011
About Unisys India:-
Unisys was began its operations in India in 1994 with an office in Mumbai. In 2004, Unisys started its global sourcing operations in Bangalore. Five years down the line, we have scaled up tremendously, both in terms of headcount and infrastructure to become a truly integral part of the company’s global delivery organization.
Why Unisys - Why should i join Unisys?:-
Unisys has state-of-the-art facilities in three locations, Bangalore, Mumbai and Hyderabad, boast of a unique combination of mature processes, sharp focus on tools and a team of highly talented and motivated employees who are engaged in a diverse range of functions including product development, application design and migration, customer support, enterprise computing and field operations back office.
1. What is the output of the program
void main()
{
struct a
{
int i;
char *st1;
};
typedef struct a ST;
ST *str1;
str1=(ST*)malloc(100);
str1->i=100;
strcpy(str1->st1,"Welcome to Oracle");
printf(" %d%s\n",str1->i,str1->st1);
getch();
}
A. core dump  B. will not compile  C. 100,Welcome to Oracle  D. None of these
Ans: C
2. What is the output of the program
void main()
{
 int i,j,k;
i=2;j=4;
k=i++>j&2;
printf("%d\n",k);
if(++k && ++i<--j|| i++)
{j=++k;}
printf(" %d %d %d",i,-j--,k);
getch();
}
 A. 4,-3,2   B. 5,-3,2 C. 4,-2,2  D. 5,-2,2
Ans: D
3. Find (7x + 4y ) / (x-2y) if x/2y = 3/2 ?
(a) 6 (b) 8 (c) 7 (d) data insufficient
Ans . C
4. If 2x-y=4 then 6x-3y=?
(a)15  (b)12  (c)18  (d)10
Ans.. (b)
5. If x=y=2z and xyz=256 then what is the value of x?
(a)12      (b)8        (c)16      (d)6
Ans.. (b)
6. (1/10)18 - (1/10)20 = ?
(a) 99/1020         (b) 99/10              (c) 0.9    (d) none of these
Ans.. (a)
7. Pipe A can fill in 20 minutes and Pipe B in 30 mins and Pipe C can empty the same in 40 mins.If all of them work together, find the time taken to fill the tank
(a) 17 1/7 mins (b) 20 mins          (c) 8 mins             (d) none of these
Ans.. (a)


8. Thirty men take 20 days to complete a job working 9 hours a day.How many hour a day should 40 men work to complete the job?
(a) 8 hrs                (b) 7 1/2 hrs        (c) 7 hrs                (d) 9 hrs
Ans.. (b)
9. Find the smallest number in a GP whose sum is 38 and product 1728
(a) 12     (b) 20    (c) 8       (d) none of these
Ans.. (c)
10. 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

11. 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)
12. 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)
13.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)
14.  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)
15. 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%)
16. 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)
17. 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 ?
18. 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.?
19. Three pipes, A, B, & C are attached to a tank. A & B can fill it in 20 & 30 minutes respectively while C can empty it in 15 minutes. If A, B & C are kept open successively for 1 minute each, how soon will the tank be filled?
Ans.. 167 minutes.
20. A person walking 5/6 of his usual rate is 40 minutes late. What is his usual time?
Ans.. 3 hours 20 minutes.




2010 Unysis Placement Paper:-

1. What is the output of the program
void main()
{
int i,j,k,n=5;
clrscr();
for(i=5;i>0;i--)
{
j=1<i;
k=n&j;
k==0?printf("0"):printf("1");
}
getch();
}
A. 00011               B. 11110               c. 11001                D. 11100
Ans: B. 11110
2. What is the output of the program, if integer occupies 2 bytes memory?
union
{
int a;
char b;
char c[10];
}u1;
void main()
{
int l=sizeof(u1);
printf("%d",l);
getch();
}
 A. 13     B. 10     c. 16      D. None of the above
Ans: B. 10
3. Rita puts 9 pairs of black socks and 8 pairs of white socks in a drawer. She takes 3 socks. What is the probability that we get a pair of black socks.
4. What is the value of the following series 1/7 + 2/72 + 1/73 +2/74 + 1/75 + ……….
5. What should be the value of a, in the polynomials x2 – 11x + a and x2 – 14x + 2a, so that these two polynomials have common factors. a) 24 b)1 c)-1 d)1/2
6. What is the sum of all the four digit numbers formed using the digits 0, 1, 2 and 3. None of the two digits should be repeated.
7. a right angled triangle, the square of the hypotenuse is twice the product of the other two sides. Then one of the acute angles of the triangle is… a) 450 b) 300 c) 600 d) 150
8. There are two square rooms. Both are of same height. The second room is 5m longer than the first room. The rate for papering the walls is 10 paisa per square meter. The total cost for papering the rooms is Rs 60 and Rs 80. What is the height of the rooms.
9. How many nos. are there between 100 and 200 both inclusive and divisible by 2 or 3?
a) 67 b) 68 c) 84 d) 100
10. Find the greatest no. that will divide 964,1238 and 1400 leaving remainder of 41,31 and 51 resp.
a) 58 b) 64 c) 69 d) 71
11. If all 6’s get inverted and become 9’s , by how much will the sum of all nos. between 1 and 100 both inclusive change?
a) 300 b) 330 c) 333 d) none of these
12. If all the picture cards are removed from a pack of cards, the sum of the values of the remaining is
a) 55 b) 220 c) 54 d) 216
13. What is the min. no. of weighing operations required to measure 31 kg of rice if only one stone of 1 kg is available?
a) 31 b) 6 c) 5 d) 16
14. The ratio of the no. of white balls in a bag to that of black balls is 1:2. If 9 grey balls are added the ratio of nos. of white, black and grey become 2:4:3. How many black balls were in the bag?
a) 6 b) 9 c) 12 d) 8
15. There are 2 toy cars facing each other at a distance of 500 cm from each other. Each car moves forward by 100 cm at a speed of 50 cm/s and then moves backward by 50 cm at a speed of 25 cm/s. How long will it take for the cars to collide?
a) 12s b) 14s c) 16s d) 13s
16. There are four teams A, B, C, D playing game. If any one team loses, it will play twice the money to all  other teams. They play 3 games. B, C, D loses one game each in the order. Finally A & B has Rs. 40  each & C has Rs. 80 & D has Rs. 16.
17. Which team has started with minimum money? i) A ii) B iii) C iv) D ans. A (5)
18. Which team has started with maximum money? i) A ii) B iii) C iv) D Ans. ii) B (93)
19. Two trains are traveling in 60 kmph on same trace, towards each other. When the distance between them is  18 km, a fly is going to start, flying between them in 80 kmph speed. Find the traveling path distance of the  fly up to when it is going to crush by the 2 trains?Ans. 12 km
20. There are 4 numbers as 5,8,2,1 Form 4, four digit numbers as A, B and find the sum? Sum 106656

No comments:

Post a Comment