|
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
|
|
Easy-Tech
Placement Paper
8)One watch is showing 30 past 3 .What is the angle between
minutes &
hours hand?
(ans 75 degrees)
9)The average of 4 consecutive even numbers is 27. What is the largest
number?
(ans 30)
10) 25 stations ,24 stations are inbetween- - - - -
how many tickets should be required.
(ans 25*24=600)PUZZLES TO PUZZLE YOU "S.DEVI"PROB 24
11)One ball was dropped from 8ft height and every time it goes half
of the height. How much distance it will travell before coming to
rest.
(ans 24 approximately)
12)Two trains are travelline at equilateral .Train A is travelling
in the direction of earths spin.Other train B is travelling in
opposite direction of earths spin.Which trains wheels will wear
first?and why?
(ans TRAIN B .Because of less centrifugal force.)
C QUESTIONS:WHAT IS THE OUT PUT FOR FOLLOWING PROGRAMMS
1)main()
{
char a[2];
*a[0]=7;
*a[1]=5;
printf("%d",&a[1]-a)
ANS:
ans may be 1.(illegal initialization)
2)
#include<stdio.h>
main(){
char a[]="hellow";
char *b="hellow";
char c[5]="hellow";
printf("%s %s %s ",a,b,c);
printf(" ",sizeof(a),sizeof(b),sizeof(c));
}
(ans is hellow,hellow,hellow
6,2,5 )
3)
#include<stdio.h>
main()
float value=10.00;
printf("%g %0.2g %0.4g %f",value,value,value,value)
}
(ans is 10,10,10,10.000000)
4)
#include<stdio.h>
void function1;
int i-value=100;
main()
{
i-value=50;
function1;
printf("i-value in the function=",i-value);
printf("i-value after the function=",i-value);
}
printf("i-value at the end of main=",i-value);
functioni()
i-value=25;
THIS IS ROUGH IDEA OF THE PROGRAM
ANS ARE
1)i-value in the function=25;
2)i-value after the function=50;
3)i-value at the end of the main=100;
5)
main()
{
funct(int n);
{
switch(n)
case1:
m=2;
break;
case2:
m=5;
break;
case3:
m=7;
break;
default:
m=0;
}
THIS IS ROUGH IDEA:
(ANS:Out put is m=0)
Page No :
1
2
Check
Aptitude Interview Questions
for more Aptitude Questions
Check
Placement Papers for more IT
Companies Paper
|