Sunday, 25 October 2015

#HP Fully Solved Placement Papers For 2015 Passout Guys Must Follow


#HP Fully Solved Placement Papers 2015-
--------------------------------------------------------------- 


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


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

5) What is X.25?
a)option 1 b)option 2 c)option 3 d)option 4

Ans: find out??:-)



C/C++ Section:
Questions on C/C++, Programs O/P etc.

6) main( )
{
unsigned int i=3; freshersworld.com
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)

7) 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

8) # define swap(a,b) temp=a; a=b; b=temp;
main( )
{ freshersworld.com
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.


Java section: 

Questions on Java Related Stuff.

9) Java was initially code named as:

a)Oak b)green c)miller d)option4

Ans: Oak

10) 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 freshersworld.com

Ans: c

11) Why is the synchronize used?

a) to initialize multiple objects b)to lock an object c)option3 d)option 4

Ans: b (probably)

Operating Systems: 

12) Which of the following is not associated with operating systems 

a) Swapper                 b) device drivers                 c) file system                 d) process mgmt

13) What is the size of virtual memory that must be associated 

a) Must be same as physical memory 
b)must be > physical memory 
c) Can be of any size 
d)it must be small enough to allocate process 

14) Which of following is true 
a) Time sharing is also multi programming 
b) Multi programming is also time sharing 

15) Global variables are stored at 
a) Heap             b) Stack             c) Data             d) Code 

Computer Organization: 

16) 32 registers are there.an instructuion can hold upto 3 registers . the opcode is of 4 bits. what is minimum size of instruction. 
Ans: the minimum sizeof instruction has nothing to do with number of registers 

17) Some bit on pipelineling 

18)some bit related to SIMD,MIMD,MISD,SISID 

19) Minimum no of nand gates require to implement xor gate 

Ans : 4 gates(check out) 

Unix: 

20) Two way communication is possible by means of means of which of the following 

Ans: unix_socket 

21) wc -l x>x prints out

Ans: wc command prints 0 

22) The background process that continusly run 

Ans: deamon process 

Networks: 

23) Fragmented packet is reunited at 

a) Destination 
b)at next gateway 
c)at highest MTU gateway 
d)at the next router 

24) The following address 93.58.5.0 

a) Class A             b) class B             c) class C             d) class D 

25) Network to host protocal is 

Ans: RARP 

Data Structures: 

26)given a doubly linked list .you are given with a node n and a pointer p associated with it. what are the operarions that to be performed to delete that node. 

27)swapping the elements of left child of a tree with that of right child . 

revswap(node*) 

node* tree; 
if(tree!=null) 
swap(tree->left,tree->right) 
revswap(tree->left); 
revswap(tree->right); 

if given tree is 

2 3 
4 5 6 7 

28) What is the output for about function applied? 

Ans:
 1 
3 2 
7 6 5 4 

29)t(n)=4+t(n/2) ,t(0)=1. what is the complexity 

30) In hashing each element can be found with complexity of 

Ans: 1 

31) In a program all the addresses that are to be binded to the caller function are done by 

 a)compiler             b) linker             c) loader             d) run time allocator 


32) s->v[integer] 
interger->interger,integer/termial 

Ans: a[2,3,5] 

33) char 1 byte , short of 2 bytes , integer of 4 byte, 
stuct 

char a; 
char b; 
int a[2]; 
short d; 
int e; 
char i; 
} name; 
sizeof(naame) 
Ans:16 

Note: consider c compiler unde unix for all c questions 

C Questions: 

34)main() 


int i=1; 
swith(i) 

i++; 
case 1: printf("case1"); 
break; 
case 2: printf("case 2"); 
break; 
default: printf("default"); 


Ans: when we compile we get warning that unreachable code and if we execute we get "case 1"  will be printed. 

35) Questions related to funtcital pointers 

36) Some question on const char*p , char* const p; 



Aptitude



37. find the average of first 40 natural numbers?

    Ans- 20.5.



38. A train  100 metres long takes 6 seconds to cross a man walking at 5 kmph in the   direction  opposite to that of the train. Find the speed of the train.?

Ans-55 kmph



39. In a game of 80 points; A can give B 5 points  and C 15  points. Then how many points  B can give C  in a game of 60 ?

Ans-8 points



40. A and B can do a piece of work in 18 days; Band C can do it in 24 days A and C can do it in 36 days. In how many days will A, Band C finish it together and separately?

Ans-144 days



41. The ratio between a two-digit number and the sum of the digits of that

number is 4 : 1.If the digit in the unit's place is 3 more than the digit in the ten’s place, what is the number?

Ans-36.



42. Express each of the following as rate percent :



(i) 23/36                       (ii) 6 ¾             (iii) 0.004



43. Two dice are thrown together .What is the probability that the sum of the number on the two faces is divided by 4 or 6

Ans-7/18



44. If the a radio is sold for rs 490 and sold for rs 465.50.find loss%.

Ans-5%



Question (9-10) Choose the word that best completes the analogy.



45. PLANE : AIRPORT :: SHIP :

A. Pier

B. Berth

C. Depot

D. Station



46. INEPT : SKILL :: FLIMSY :

A. Power

B. Weight

C. Strength

D. Thickness



47. In the question below, there is a sentence of which some parts have been jumbled up. Rearrange these parts which are labelled P, Q, R and S to produce the correct sentence. Choose the proper sequence.

           

Since the beginning of history

P :        have managed to catch

Q :       the Eskimos and Red Indians

R :       by a very difficulty method

S :        a few specimens of this aquatic animal

The Proper sequence should be:

A.        QRPS 

B.        SQPR

C.        SQRP 

D.        QPSR

Ans-D



48. Choose the word which best expresses the meaning of the given word.

CANTANKEROUS

A.        Quarrelsome   

B.        Rash

C.        Disrespectful  

D.        Noisy

Ans-A



49. choose the word which is the exact OPPOSITE of the given words.

           

MORTAL

A.        Divine

B.        Immortal

C.        Spiritual          

D.        Eternal

Ans-B



50. Each question consist of two words which have a certain relationship to each other followed by four pairs of related words, Select the pair which has the same relationship.

SYMPHONY:COMPOSER

A.        Leonardo:music         

B.        Fresco:painter

C.        colours:pallet  

D.        art:appreciation

Ans-B

Links to Apply

New Links To Apply :
http://dumadu.com/job-application
http://www.v2software.com/content/apply-job
http://www.paxterrasolutions.com/…/care…/submit-your-resume/
http://croissancecr.com/careers-2/
http://www.versatiletech.in/careers.php
http://goodthrough.com/fresher/
http://careers.plintron.com/submit-profile/
*************************************************** 
All Previous Links To Apply
1> http://hexaware.com/fresher.htm
(all branch all batch , MCA also allowed , no %criteria)
2> Apply For Atos : 
Send ur resume on : Careers-India@atos.net
Batch : 2014,15 
Criteria : BE/Btech(CSE, IT,IS)(only these 3 branch are allowed), BCA, BSC(cse,it), MSC(cse,it) MCA(60% in all degree)
Send ur resume asap.
3> https://docs.google.com/…/1yWhNM4BHspIH4cd7v-lL2i…/viewform…
4> http://www.emiliatechnologies.com/careers
5> http://kumaran.com/join-us/apply/
6> http://sbs.snapon.com/form/hr_contact_form
7> http://jobsearch.naukri.com/job-listings-Job-Opportunity-li
8> http://careers.coupondunia.in/
**************************************
https://docs.google.com/…/1T-ei-hFu2eII-tcGV4Ur1zJ…/viewform
http://jobsearch.naukri.com/job-listings-ASE-Testing-Adecco
http://jobsearch.naukri.com/job-listings-Node-js-Developer-…
https://www.goodrich.apply2jobs.com/ProfExt/index.cfm
http://www.hirebridge.com/v3/Jobs/JobDetails.aspx
*******************************
1> http://jobsearch.naukri.com/job-listings-Software-Quality-A
2> http://careers.wipro.com/campus-science-wase-2015.aspx
3> https://synergy.wipro.com/ResumePosting/NonEngCampusReg.jsp
4> http://hire.jobvite.com/CompanyJobs/Careers.aspx
**************************
5> Retail on is hiring 
Batch : 2014,15
Criteria : BE/Btech(all branch expcept Mechnical)(no % criteria)
Send ur resume on : hr@retailon.net
http://hconline.indegene.com/Car…/UniversityHiringForm.aspx…
http://www.globussoft.com/careers/post-your-resume/
http://zenq.com/opportunities
http://www.interglobe.com/careers-job-at-interglobe.aspx
https://www.nextsphere.com/careers.aspx
http://globustech.com/careers#frontend
http://www.sqs.com/portal/career/in/application-process.php
http://www.aminfocraft.com/career/
http://www.concertosoft.com/Company/Careers.html
https://symantec.wd1.myworkdayjobs.com/…/Assoc-Software-Eng…
https://www.practo.com/company/careers
http://www.tspl.com/careers-apply-for-a-job.php
http://www.wissen.com/wissen/jobs/apply/1014/
http://trancis.com/career/
http://www.mymindfire.in/AddMyProfile.aspx
http://unikkapps.com/career.html
http://www.maventic.com/Career/newRegistration.html
http://www.darashaw.com/careers/submitresume.asp
https://careers.infosys.com/…/hrrcf_a_candidate_registratio…#
********************************* 
Previous Links To Apply : 
************************
8_10_2015
https://docs.google.com/…/1C_j34rjd3PD0DC4Znq919ps…/viewform
Schedule ur amiti interview 
http://amiti.appointy.com/
Batch :2014,15 batch allowed
profile : Java development
Criteria : BE/Btech(cse,it,ece,EEE, ET, ETC,EI), MCA(60%through out)
Those who has elitmus score can apply for this 
https://www.elitmus.com/…/31938-cgi-associate-software-engi…
http://www.sitaraa.com/career.html
http://www.presentjobs.com/…/fresher-walkin-snap-on-operat…/
http://www.ransysbios.com/career.php?p=2
http://jobsearch.naukri.com/job-listings-Job-Opportunity-Li
*********************************
Links_07_09
https://synergyweb.wipro.com/ResumePosting/WalkIn
http://www.coralhire.com/Post%20your%20resume.php
http://cloudlendinginc.com/about-us/careers/
https://sisainfosec.com/job_apply/35
http://jobsearch.naukri.com/job-listings-IT-Freshers-Java-D
Regards,
Admin Team

Saturday, 3 October 2015

Read Success Story of one of my Job seeker Friend.


Hi friends, need ur attention for a while.... I hope my story will motivate the job seekers in anyway
...
I am Rahul. 2013(CSE), first of all I would like to thanks to my Parents smile emoticon who stand with me in every moment of life to support me emotionally and financially...moreover they kept patience and keep motivating me... Heartly thanks to Nitesh Shukla , Aneesa Matte and Aashu Onlyy smile emoticon who always keep guiding me and encouraged me not to loose hope....
During my final year I got placed in a company Vision Technology and Media Services Pvt. Ltd, Noida. but later I came to know that it was fake, so I had to sit back for couple of months, then I shifted to Kolkata for job search in IT field, I chose kolkata coz its the cheapest city of india smile emoticon, there I tried to get entry in lotz of IT companies but failed each time, meanwhile to improve my communcation skills and for pocket money I joined an international BPO, night shift...time was spending by and no satisfactory job, then I wrote AMCAT and E Litmus both,
After that I came to Bangalore (IT Hub) 5 months back, here I saw the real struggle of a job seeker, learnt many things from the stories of others, faced and gained lotz of experience in this ample of time in all manners. i.e social, behavioral,financial,emotional .....
I tried in these following companies and consultancies:
1) RAM CAPL (BTM 2nd stage)
2) Infosys
3) SLN TGS Solutions Pvt. Ltd.
4) Adecco India
5) Collabera
6) Atos
7) GoCoop Solutions and Services Private Limited
8) CGI
9)Statnetics DSoft Pvt Ltd
10) eLitmus Evaluation Pvt Ltd
11) Axis room travels pvt. ltd.
12) Thinking Hut
13) Thomsons Reuters
14) centurylink
15) IMS Health
16)Xerox
17) Globussoft
18) Iprimed
19) yodlee
there are few more which I dont remember right now, after that in this year got slected in IBM, India and HCL Technologies both....
after selection in IBM I had to wait foe the official mail, during this period I got admit card from HCL, when the slction of HCL was done then I recieved the joining letter from IBM smile emoticon
My interview experience of IBM
1. online aptitude test.... it is quite easy to crack, keep followingindiabix.com OR R.SAgarwal, only thing is that u need to manage the time..
2. two rounds of communication.... be straight forward and confident about ur thoughts, whatever u say must be understood to others, be expressive proffessionally not diplomatically...
3. three rounds of technical followed by HR... in every technical round generally the first question is "tell me about urself" so explain ur acheivements, academics and technical skillset within 2 minutes, u can skip ur 10th and 12th... in this duration interviewr will go thru ur CV, then probably he will ask about project..do specify ur Role in project strongly..then some tchnical and managerial questions.after 10 days I got the offer letter mail from IBM smile emoticon, the happiest day of my life....friends never loose hope, and always be free mind dont be tensed...U'll definetly crack the intrview process, dont worry about the result, keep moving
Some tips:
1. Explore ur conatcts in order to gain more info and knowledge
2. Try everwhere, and always carry xerox copy of all the documents, because I've seen sometimes suddnly the employee asks u to show the proof, that time candidate becomes dumb and helpless
3.meanwhile brushup ur technical basics and communication skills, to improve communication I will suggest to join tech support for part time in night shift....
4.most of the times Interviewer asks u questions from ur answers...so try to answer in such a way that either intrviewr shudn't ask from ur answer OR if asks then u must b ready with ur answers
5. Do believe in urself,
..
All the best smile emoticon like emoticon, I hope it will motivate u in anyway
last but not the least sorry for this lonnnggyyyy post....

Questions pattern and Selection Process for CGI

Questions pattern for CGI

Written Round:

1st round is written test on aptitude and English , there were  25 questions that need to be attempted in 30 min, somewhat difficult manage the time well.

Sample Questions:

a) A train running at the speed of 60 km/hr crosses a pole in 9 seconds. What is the length of the train?
b) puzzle- six person, six profession, six instruments (each person plays a single instrument).... very    easily this puzzled can be solved..- 5 questions.
English is bit tough..

One paragraph will be given.. 4 sentences will be missing within the paragraph. Options r given below.. u need to put the correct sentence on correct place..
Rest of the English questions: each questions has separate paragraph.. So this part is very time consuming..

Technique to follow while attempting written round :

1st solve two puzzles then Quant part.. and then at the end go for English.. it will be helpful in managing ..

Group Discussion Round:

This round is not so tough be confident, they will select you,  out of 10 candidate they choose 7-8.. so no need to get nervous.

Sample topics: 

1. Corruption in India
2. Social networking
3. Electronic media vs news paper
4. Traffic in Bangalore


Technical Rounds:

Basically there are two technical Rounds, In which First Technical Round is Most Important , Second will be bit OK type.

Technical Round 1

This round is most important round, You have  to face 30-50 question(avg), Prepare well on your project which you done in your college, most of the question asked in this round will be from project and some technical question will be asked.. so answer confidently all question..
Technical Round 2

If you reach to this round then your chances for getting selected are about 95%, most of the time this round is non-rejection round, some tough technical question will be asked try to answer them properly, Mostly this round will be taken by managers, so be careful when u r answering as they are also checking for team skills, problem solving apart from technical skills.

HR Round

This is simple formal round , HR team will ask some simple question to check your communication skills and some behavioral skills

Sample Questions:

Why CGI?
Location Preferred?
Who referred u?
Family background.

****************************that’s it guys  Best of Luck.*******************



Post your Queries in form of comments.


AMCAT Syllabus for 2015 - Question Paper Pattern

AMCAT Syllabus for 2015 - Question Paper Pattern

1) Quantitative Aptitude Syllabus: 20 Questions

    Geometry
    Speed, Time and Distance
    Time and Work
    Number System
    Probability
    Permutation and Combinations
    Few Miscellaneous Questions


2) Reasoning Syllabus: 20 Questions

    Seating Arrangement
    Tabular Data
    Cryptarithmetic Questions
    Data Sufficiency questions


3) Verbal Ability Syllabus: 20 Questions

    Reading Comprehension
    Jumbled Paragraph Questions
    Vocabulary Based Questions
    Fill in Blanks
    Miscellaneous Questions


All the best .. :)