Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


Mico Bosch-Bangalore Placement paper 2008



Mico Bosch-Bangalore Placement paper 2008..

Answer / suvarna

haiiiiiii friends,
i am fron EEE branch(2007 batch).i had attended for Mico Bosch
written test & interview on may12th 2008 at bangalore.....actually i got a
call letter for that.i had cleared the first round & attended the
interview.but i had not selected in the interview.we searched for the
placement papers of this company at that time.but no use we didn't got
even exam pattern also.thats why i am sending this....
Just i am giving the pattern for that i didn't remembered the
questions.they r separate technical paper for electrical & mechanical.
There are only two rounds.
1.written test &
2.Personal interview
WRITTEN TEST:
there r 3 sections
105 questions-->1hour 40 min
1.verbal-(20min)
2.Analytical-(30min)
3.Technical(questions on electrical & electronics subjects)-(50min)

PERSONAL INTERVIEW:
interview is for 10min-15min only for EEE members
for mechanical they had interviewed above 1 hour
& for ECE members about 40min.its very cool interview don't worry

1.Tell about ur self
2.what is PCB?(print circuit board)
3.what u know about this company?
4.in which field r u interested?(product development,product
manufacturing,marketing,sales,security systems.....etc)
5.r u ready to relocate any where?in which areas(places) r u interested?

ok byeeeeee friends
"ALL THE BEST FOR UR BRIGHT FUTURE"

Is This Answer Correct ?    24 Yes 5 No

Post New Answer

More Placement Papers Interview Questions

CTS placement papers -------- placement paper 4

1 Answers   CTS,


IBM PLACEMENT PAPERS ------ IBM placement Paper 1

5 Answers   IBM,


The recruitment process of consagous had three rounds. 1. Group discussion 2. Written test 3. Technical interview/ HR The first round was GD. I got the topic “should India break up the friendly ties with Pakistan”. The group had 20 students. After the discussion each student was given a chance to express his/her views on the topic. The second round was written test. The paper was purely technical. It had a total of 50 questions. Out of which 5 questions were subjective. Those questions were: 1. What is RTTI? 2. What is containership? 3. Describe the lifecycle of asp.net page. 4. Why an empty structure occupy 2 bytes memory? 5. What is the difference btw compilation of C++ and C#? The objective questions had some programming questions. Other than that some questions that I remember are: • What is the complexity of binary search algo? • The factor that affects the complexity of an algorithm is a. The maximum amount of memory needed by the algorithm b. The minimum amount of memory needed by the algorithm c. The avg amount of memory needed by the algorithm d. The maximum amount of disc space needed by the algorithm • The class which is used to perform basic console I/O? Ans. System • Which is the first phase of s/w development lifecycle? Ans. Analysis This is all I remember….. The last round was interview. 46 students were selected for the interview. HR questions: • Describe yourself. • Did u held some leadership position in your college (because I mentioned that I was captain in school) • Then they read two aptitude questions(easy ones) and I had to answer them but the condition was that they were not going to repeat the question. • What is your short term and long term goals? • Why your marks decreased in college? • At last they asked about their company. Technical question: • What is the difference between C and C++. • What are access specifiers? • What is a static variable? • How can we define a variable globally? • What is a namespace and assembly? • What is an intermediate language? • Describe your project. • What is the difference between cookies and sessions? And many more……. Finally I got selected after this.

0 Answers   Consagous,


L&T Infotech Interview - 13 Feb 2007

1 Answers   L&T,


SNAPDEAL QUESTIONS 1. A train is going at a speed of 60kmph towards Delhi and returned back at a speed of 30kmph. What is its average speed? ANS : (2*30*60)/(30+60) = 40kmph 2. How many different 4 letter words can be framed that have at least one vowel? ANS : 264 - 214 (total no of 4 digits words – no of words with no vowels) 3. Write an algorithm to find out a number from an array of numbers where only one number occurs once and rest all occurs twice. ANS : XOR all the numbers ,you will get the number with single occurrences . 4. Which among the following have the product of the distance between opposite sides of a regular polygon and it side equals one fourth of the area. A. hexagon B. octagon C. n=16 D. n=18 ANS : n=16.(area of regular polygon = apothem*perimeter/2 Apothem = distance between opposite sides/2 Area = (opp_side_dist * n * a )/4 Product of opp_side_dist and side of reg. polygon = opp_side_dist * a For n= 16 the ration becomes 1:4 5. Which of the following cannot be a relation between two variables? ANS = 4th diagram. 6.what will be the output of this program Void print (int n) { If (n>0) { printf(“hello”); print(n-1); } printf(“world”); } ANS : N times hello followed by N+1 times world. 7. Which among the following cannot be used for future prediction? ANS : 4th Diagram. 8. There are 25 horses. We have to find out the fastest 3 horses In one race maximum 5 horses can run. How many such races are required in minimum to get the result. ANS : 7 races (A. first run all horses = 5 races, eliminate 4th 5th of all races. B. Run horses who came 1st in those 5 races = 1 race , the horse coming first is the fastest Run horses a. 2nd and 3rd with the fastest horse (in first time race A) b. 2nd and 3rd coming horse in B. c. The horse who came 2nd with the horse(who came 2nd in race B) in race A You will have the fastest 3 horses.) 9. In a game of rolling dice you are given 2 dice and you have to roll them. Whatever is the outcome the player will win that many dollars. What should the game owner charge each player (optimum) so that he doesn’t have to bear any loss? ANS : $7 10. We have a function REV(“string”,m,n).This function is capable of reversing the caharacters in the string from mth location to nth location. e.g. REV(“abcd”,2,3) &#61672; the output will be acbd We need to swap a string from a position,e.g. SWAP(“abcdefg”,4) &#61672; output needs to be efgabcd. How can the REV function used do this. ANS : L = string length,N= position given in SWAP function. SWAP(“abcdefg”,4) = REV(REV(REV(“abcdefg”,N+1,L),1,N),1,L).

1 Answers   SnapDeal,


I need Assurgent model question paper

5 Answers   Assurgent,


Tata Elxsi Written Test With Interview Rounds

1 Answers   Infosys, Tata Elxsi, TCS, Wipro,


Symphony Services Placement Pattern

9 Answers   Symphony,


GODREJ PATTERN - 16 MAR 2006 - MUMBAI

6 Answers   Godrej,


logic information system placement papers

2 Answers   Logic Information Systems,


new sonata papers

5 Answers   Sonata, Spandana,


persistant placement paper

1 Answers   HP, Persistent, pspl, Windows,


Categories