Showing posts with label aptitude. Show all posts
Showing posts with label aptitude. Show all posts

Tuesday, May 10, 2011

HONEYWELL PAPER - Unsolved- BANGALORE




These are the questions asked for the Honeywell test conducted on 22 July 06 in their Bangalore office.

There were 100 questions:

50 Technical questions (branch wise)
30 C questions
20 aptitude questions

Aptitude is very easy. Simple questions from profit&loss, ratio, odd-man series, time-distance, clock...

HCL Technologies paper model




Section I: Computer awareness (i.e general things about computer)
Q. 15
-ve marks -1/4

Section II: Simple C- language Q. 15 & -ve marks: -1/4
Section III: On pointers & structures
and C++, Java ( only 1 on this) Q.10 each quetion ->2 marks
-ve marks: -1
Section IV: Analytical Q.20 each quetion -> 2 marks.

-ve marks: -1/4

CTS Placement Paper solved

VERBAL SECTION (25 questions - 25 min)

Directions for Questions 1-5: Read the passage and answer the questions that follow on the basis of the information provided in the passage.

For a period of more than two centuries paleontologists have been intrigued by the fossilized remains of pterosaurs, the first flying vertebrates. The issues, which puzzle them, are how these heavy creatures, having a wingspan of about 8-12 meters managed the various problems associated with powered flight and whether these creatures were reptiles or birds.

Monday, May 9, 2011

Computer Networks Apptitude Question


1. What are the two types of transmission technology available?
(i) Broadcast and (ii) point-to-point
2. What is subnet?
A generic term for section of a large networks usually separated by a bridge or router.

RDBMS Concepts

1. What is database?
A database is a logically coherent collection of data with some inherent meaning, representing some aspect of real world and which is designed, built and populated with data for a specific purpose.

C - Aptitude Questions 51-150


51) main( )
{ void *vp; char ch = ‘g’, *cp = “goofy”; int j = 20; vp = &ch; printf(“%c”, *(char *)vp); vp = &j; printf(“%d”,*(int *)vp); vp = cp; printf(“%s”,(char *)vp + 3);
}
Answer:
g20fy
Explanation:

Sunday, May 8, 2011

C - Aptitude Questions 1-46

Predict the output or error(s) for the following:
1. void main()
{ int const * p=5; printf("%d",++(*p));
}
Answer:
Compiler error: Cannot modify a constant value. Explanation: p is a pointer to a "constant integer". But we tried to change the value of the "constant integer".

Data Structures Aptitude Question

1. What is data structure?
A data structure is a way of organizing data that considers not only the items
stored, but also their relationship to each other. Advance knowledge about the
relationship between data items allows designing of efficient algorithms for the
manipulation of data.

Saturday, May 7, 2011

Best Aptitude Questions Solved set -2

Aptitude Questions

1. A software engineer returns from America. As he is fat he decided to have evening walk.....he started at 3pm. he walks along the road at 4km/hr for some time then he climbs a upward slope area at 3km/hr then downwards at the rate of 6km/hr. then back to the home through the road at 4km/hr. what is the distance he covered in one way if he reaches back home at 9pm.

Best Aptitude Questions Solved set -1



Questions
1. One guy has Rs. 100/- in hand. He has to buy 100 balls. One football costs Rs. 15/, One Cricket ball costs Re. 1/- and one table tennis ball costs Rs. 0.25 He spend the whole Rs. 100/- to buy the balls. How many of each balls he bought?