#1  
11th January 2011, 04:56 PM
celestamariel
Junior Member
 
Join Date: Jan 2011
Location: Trichy
Posts: 1

Placement papers of HP Company? Tips to face the Aptitude Test?


Can i know where i can download hp placement papers and tips to face the aptitude test?

Please help




  #2  
19th January 2011, 12:51 PM
khanddn
Senior Member+
 
Join Date: Jan 2011
Location: Bangalore
Posts: 546
Default Re: Placement papers of HP Company? Tips to face the Aptitude Test?

Dear Friend'
Warm Greeting for the day
One thing i want to tell you that most of the IT company's Placement paper pattern will be almost same which includes some basics math problem,Reasoning ,English skill test and then question from technical side..

The main thing is time management and dont attempt unnecessary questions which you dont know.

There is a websitehttp:// www.vyomworld.com/placementpapers/index.asp

Thanks
  #3  
19th January 2011, 03:43 PM
mychandru024
Junior Member
 
Join Date: Jan 2011
Posts: 346
Default Re: Placement papers of HP Company? Tips to face the Aptitude Test?

HP Placement Papers

HP Technical Test Procedure

Section A. ------50qns(general appitude,english etc):
Section B. ------ 10 Questions on Computer concepts.
Section C. ------ 30 Questions on C

HP Technical Test questions

1. WAP find and replace a character in a string.
2. WA function to perform the substraction of
two .Eg:char N1="123",N2="478",
N3=-355(N1-N2).
3. WAP dynamically intialize a 2 dimentional array
Eg:5x20,accept strings and check
for vowels and display the no.finally free the space
allocated .
4. WAP read a line from file from location N1 to N2 using
command line agruments
Eg:exe 10 20 a.c
5. WAP find the largest of 4 no using macros.

HP Interview Questions and Java Questions

General section
Computer science general, c/c++ section, Java
section ,The question paper had 48
questions to be answered in 1hr. Time will be quite
sufficient. They have different
sets of question papers. .

1 General section : computer science general knowledge
2. Computer science general: simple questions

1. HP acquired this company in 2002. Which is the company
a) Compaq b) Dell c) option 3 d) Option4
Ans: a

2. What does 3G denote
a) 3rd generation mobile communication b) 3rd
generation computer languages
c) option 3 d) option4
Ans: a

3. An application program that is used by the users to get
the inofrmation from the
backend of some application like databases:
a) application server b)proxy server c)
database server d)option 4
Ans: database server

4. Which of the following is not true about the e-mail
a) It can be accessed by a client program using POP
b) It can be accessed by a client program using imap
protocol
c) option 3
d) option 4
Ans: I don't remember the answer but first 2 are true.

5. Some quesion regarding the company and who developed it
( the thing to remember
is that Apple produce Macintosh computers).

C Questions and C++ questions

c/c++ section: questions on c/c++, programs o/p
etc.



1 main( )
{
unsigned int i=3;
while( i >=0)
printf( "%d", i--);
}
how many times will the printf stmt be executed?
a)0 b)3 c)4 d)infinite
Ans: I think the answer is infinite, b'cos 'i' is an
unsigned integer and it will not
decrement below '0' and hence end up in an infinite
loop.(yes, i checked and it
is getting stuck in an infinite loop)

2. main( )
{
int x,y, z;
x=2;
y=5;
z= x+++y;
printf("%d %d %d", x, y z);
}
a)3 5 7 b)option 2 c)option 3 d)option 4
Ans: a

3 # define swap(a,b) temp=a; a=b; b=temp;
main( )
{
int i, j, temp;
i=5;
j=10;
temp=0;
if( i > j)
swap( i, j );
printf( "%d %d %d", i, j, temp);
}
Ans: On compiling i got ans 10, 0, 0. I did not
understand the concept. Please
expalin this to me.

4. Java section: questions on java related stuff.
1) Java was initially code named as:
a)Oak b)green c)miller d)option4
Ans: Oak

5. What is not true about the following statements about
java.
a) it is compiled using javac compiler
b) the compiled files have .class extension.
c) such files cannot be transfered from one comp to
another.
d) they use the java interpreter
Ans: c

6. Why is the synchronize used?
a) to initialize multiple objects b)to lock an object c)
option3 d)option 4
Ans: b (probably)



Guest


Re: HP PLACEMENT PAPERS -------- Placement Paper - 2
Reply
# 2 3 # define swap(a,b) temp=a; a=b; b=temp;
main( )
{
int i, j, temp;
i=5;
j=10;
temp=0;
if( i > j)
swap( i, j );
printf( "%d %d %d", i, j, temp);
}
Ans: On compiling i got ans 10, 0, 0. I did not
understand the concept. Please
expalin this to me.
its because macro is expanded as

temp = i;
i = j;
j = temp;

the condition gets false as i < j and first statement i.e.
temp = a is not executed and remaining statements gets
executed and results in i = 10 and j = 0



you can get these from allinterview.com.




The first is the test regarding your IQ. The test will usually involve several of these tests : simple math; reading tables; making conclusion from statements according to certain premise whether it’s true, false, or unknown; guessing the missing part of a sequence of numbers; finding for the next pattern of a set of logically interconnected patterns; finding the same shapes when it’s rotated; memorizing words, and some other tests that I can’t remember.

- The test to determine your personality. It’ll usually involve drawing. In this test, you are asked to draw or complete a set of patterns which will be the manifestation of your personality. The drawing tests that I have gone through so far are :

1. Completing 8 patterns into a complete drawing, describe those pictures, and choose which one is the easiest, which one is the hardest to draw, which one you like the most, and which one you like the least.
2. Drawing a complete tree and usually you are not allowed to draw pines, cactus, beringins, and cotton trees. I was told that the tricks are to draw from the root, draw the parts as complete as you can, and uses strong lines when you draw. In the end, you’ll be asked
3. Drawing a complete person, and describe the person, his job, his age, his strengths and weaknesses. I have no clear idea but what is required, but I believe you should draw from the head, draw the person as complete as you can to describe his job, his hobby, his personality, his shortcomings in physical appearance (like tons of acnes), etc.

Now, it’s about the interview. There are several common questions that are asked to fresh graduates and those questions usually come from your Curriculum Vitae. So make sure you have certain base on what you write there.

1. What do you usually do at your free time?
2. What are your weaknesses and how you plan to overcome those weaknesses?
3. Can you tell me about your projects?
4. How about your organizational experience?
5. What are your dreams?
6. What makes you come to work here?
7. Where else have you applied besides this company?
8. What are your hobbies?
9. What do you think about your current GPA? Is it hard to achieve it?
10. So far, what do you think have been your greates achievement?
11. What do you think will be your greatest obstacles at work?
12. Why did you choose the uni and the department you’re currently working at?
13. What do you think about challenges and how do you plan to face them?

Those questions are all I can remember for now. Will add later if something cross my mind in the mean time.

I haven’t had any luck yet in my interviews and IMO I always messed up my interview badly. So my tips would be for the interview, answer honestly, don’t stutter, show them how smart, qualified, yet cooperative and nice you are. Impress them. Show them that you’re the gold that they should get. And I believe I failed in my two interviews. Must do better, next time .
  #4  
19th January 2011, 06:30 PM
nanty29
Junior Member
 
Join Date: Oct 2010
Posts: 59
Default Re: Placement papers of HP Company? Tips to face the Aptitude Test?

Hello Friend,

With regards to your query regarding placement paper of HP company i suggest you to plz. go through the website of freshersworld.com because this websites was especially designed for engineering graduates that helps him in any sort odf query.

And i hope by going through that websites you will get all your answer which will help you in cracking the paper.
Reply With Quote
  #5  
13th February 2011, 03:29 PM
Unregistered
Guest
 
Posts: n/a
Default Re: Placement papers of HP Company? Tips to face the Aptitude Test?

pleas tell me what type of answers they expect
Reply With Quote
  #6  
15th March 2011, 07:15 AM
Taurus47
Senior Member+
 
Join Date: Feb 2011
Location: bbsr
Posts: 887
Default Re: Placement papers of HP Company? Tips to face the Aptitude Test?

hi

Placement papers of HP Company
some basics math problem,Reasoning ,English skill test and then question from technical side..
The main thing is time management and dont attempt unnecessary questions which you dont know.
There is a websitehttp:// www.vyomworld.com/placementpapers/index.asp
go through the website of freshersworld.com because this websites was especially designed for engineering graduates that helps him in any sort odf query.

see the atached file...

good luck
Attached Files
File Type: txt New Text Document.txt(6.2 KB, 433 views)
Reply With Quote
  #7  
2nd October 2012, 08:10 PM
Unregistered
Guest
 
Posts: n/a
Default Re: Placement papers of HP Company? Tips to face the Aptitude Test?

how to prepare the interviews questions in hp where i get the etails
Reply With Quote
  #8  
18th March 2013, 11:19 PM
Unregistered
Guest
 
Posts: n/a
Default Re: Placement papers of HP Company? Tips to face the Aptitude Test?

how can we place in hp? Wat r all the stages involved in hp placement? give me the tips to get place .....
Reply With Quote
  #9  
2nd September 2015, 12:12 PM
Unregistered
Guest
 
Posts: n/a
Default Re: Placement papers of HP Company? Tips to face the Aptitude Test?

I need technical questions asked from HP company to download
Reply With Quote
Do you have any question? or have anything to say?



Related Topics:

Thread Replies Last Post
Placement papers of Microsoft and HP? Previous year papers of the placement exams? 5 7th July 2013 01:32 PM
What should I do to get good placements after B.Tech Electronics and Communication Branch if I scored 55%, 50% and 65% in 10th, 12th and B.Tech respectively? 7 30th July 2012 08:03 PM
Am I eligible for TCS interview after completion of my B.Tech degree with 70% marks from GNDU Amritsar? I have 67% marks in 10th and 59.6% marks in 12th 1 9th March 2012 11:21 AM
Shortcuts and formulae for placement papers? 4 23rd April 2011 07:48 PM



Powered by vBulletin® Version 3.8.3
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.3.0
Please also check: