techpreparation-homepage

Home  Interview Questions  Aptitude Questions  Tutorials  Placement Papers  Search  Resume Guide  Soft Skills  Video  Forum  Blog


IT Placement Papers

3i-Infotech Placement Papers
Accenture Placement Papers
Infosys Placement Papers
Adobe Placement Papers
                              .........More

Technical Interview Questions
Networking Interview Questions
C Interview Questions
                              .........More

Resume Guide for Jobseekers
Resume - Action words
Resume To-Do List
                              .........More

Soft Skills
Communication Skills
Leadership Skills
                              .........More

Subscribe to our Newsletters
Name:
Email:

 

 

  

Blue Star Placement Papers 

SECTION 4 - COMPUTATIONAL.

41. 2 passengers have together 560 kgs of luggage and are charged for the excess above the weight allowed at 10$ and 26$. If all the luggage had belonged to one of them he would have to pay 46$. The amount of luggage each passenger is allowed without any charge is
(a) 100 kg (b) 150 kg (c) 160 kg (d) Insufficient data

42. 6 pigs cost the same as 9 sheep. 27 sheep cost the same as 30 goats. 50 goats cost the same as 3 elephants. If two elephants cost $4800, then the cost of one pig in dollar is
(a) 120 (b) 240 (c) 105 (d) 250

43. A wholesaler allows a discount of 20 % on the list price to the retailer. The retailer sells at 5% below the list price. If the customer pays Rs.19 for an article what profit is made by the retailer on it?
(a) Rs.2 (b) Rs.3 (c) Rs.4 (d) Rs.4.5

44. A circular metal plate of even thickness has 12 holes of radius 1 cm drilled into it. As a result the plate lost 1/6th its original weight. The radius of the circular plate is
(a) 16sqrt2 (b) 8sqrt2 (c) 32sqrt2 (d) sqrt72

45. 3 machines a,b,c can be used to produce a product. Machine a will take 60 hours to produce a million units. Machine b is twice as fast as machine a. Machine c takes the same amount of time as machine a and b taken together. How much time will be required to produce a million units if all the three machines are used simultaneously?
(a) 12 hours (b) 10 hours (c) 8 hours (d) 6 hours

1.What would be the output of the following program.
#include<stdio.h>
main()
{
extern int a;
printf("%d",a);;
}
int a=20;
(a) 20 (b) 0 (c) garbage value (d) error!!

2.What would be the output of the following program.
main()
{
int a[5]={2,3};
printf("\n %d %d %d",a[2],a[3],a[4]);
}
(a) garbage value (b) 2 3 3 (c) 3 2 2 (d) 0 0 0

3.What would be the output of the following program.
main()
{
inti=-3,j=2,k=0,m;
m=++i&&++j||++k;
printf("\n %d %d %d %d",i,j,k,m);
}
(a) -2 3 0 1 (b) -3 2 0 1 (c) -2 3 1 1 (d) error

4.What would be the output of the following program.
main()
{
int a,b;
a=sumdig(123);
b=sumdig(123);
printf("%d %d",a,b);
}
sumdig(int n)
{
static int s=0;
int d;
if(n!=0)
{
d=n%10;
n=(n-d)/10;
s=s+d;
sumdig(n);
}
else return(s);
}
(a) 12 6 (b) 6 12 (c) 3 15 (d) error

5.What would be the output of the following program.
#define CUBE(x) (x*x*x)
main()
{
int a,b=3;
a=CUBE(b++);
printf("\n %d %d",a,b);
}
(a) 64 4 (b) 27 4 (c) 27 6 (d) 64 6

Page No :  1         2         3

Check Aptitude Interview Questions for more Aptitude Questions

Check Placement Papers for more IT Companies Paper