

InterviewSolution
Saved Bookmarks
1. |
A word and number arrangement machine when given an input line of words andnumbers rearrangement them following a particular rule. The following is an illustration of input and re-arrangement. Input : Warmer 7189Scraper Leader 11 Greater 4834Adopter Step-1: Adopt Warmer 71 Scraper Leader 11 Greater 48 34 90 Step 2: 12 Adopt 71 Scraper Leader Greater 48 34 90 Warm Step 3: Great 12 Adopt Scraper Leader 48 34 90 warm 72 Step 4: 35 Great 12 Adopt Leader 48 90 Warm 72 scrap Step 5 Lead 35 Great 12 Adopt 90 Warm 72 Scrap 49 Step V is the output of the above input As per the rules followed in the above steps, find out in each of the following question the appropriate steps for the given input Input : Farmer 7288 Writer Thinner 18 Harmer 4833 Cheaper Which steps number would be the following output ? Farm 19 Cheap Thinner Hamer 4833 89 Write 73 |
Answer» 3 Step 1: Cheap Farmer 72 Writer Thiner 18 Harmer 48 33 89 Step 2 : 19 cheap farmer 72 Thinner Harmer 48 33 89 write Step 3: Farm 19 cheap thinner harmer 48 33 89 Write 73 Step 4: 34 Farm 19 cheap harmer 48 89 write 73 thin Step 5: HARM 34 farm 19 cheap 89 write 73 thin 49 Explanation : For step 1: The word which appears first in dictionary is arranged at left end and that comparative word is changes to POSITIVES degree word. And the highest numbers is increased by 1 and it is arranged at right end. For step-2 : The lowest number is increased by 1 and it is arranged in leftend and the word which is appear last in the dictionary is arranged at right end and that comparative word is changes to positive degree word Similarly step-3 follows the pattern of step 1 , and step 4 followes the patter of step2, and step 5 follows pattern of step 1 |
|