MPSC PYQ

Machine Input-Output

Tested in 2 real MPSC questions across 2 years (20142015). See it in context on the interactive Concept Graph →

Years it was asked

What you need to know first

Basic sorting algorithms knowledge

Real questions that test this

एक अंक व्यवस्थापन यंत्र, संख्यांच्या इनपुट ला प्रत्येक चरणात विशिष्ट नियमानुसार पुनर्व्यवस्थित करते. खाली इनपुट आणि पुनर्व्यवस्थापनाचे चरण यांचे एक उदाहरण दिलेले आहे : इनपुट - 38, 28, 3, 7, 30, 5 चरण I - 3, 38, 28, 7, 30, 5 चरण II - 3, 28, 38, 7, 30, 5 चरण III - 3, 28, 5, 38, 7, 30 चरण IV - 3, 28, 5, 30, 38, 7 चरण V - 3, 28, 5, 30, 7, 38 चरण V या इनपुटचा अंतीम चरण आहे. जर 11, 58, 45, 17, 20, 38 हा एखाद्या इनपुटाचा प्रथम चरण असेल तर, 11, 45, 38, 20, 58, 17 हा, त्या इनपुटाचा कोणता चरण असेल? A number arrangement machine rearranges the input of numbers in each step according to some rule; the example of which is given as follows : In put - 38, 28, 3, 7, 30, 5 Step I - 3, 38, 28, 7, 30, 5 Step II - 3, 28, 38, 7, 30, 5 Step III - 3, 28, 5, 38, 7, 30 Step IV - 3, 28, 5, 30, 38, 7 Step V - 3, 28, 5, 30, 7, 38 Step V is the last step of this input. If 11, 58, 45, 17, 20, 38 is the first step of some input then, 11, 45, 38, 20, 58, 17 will be which step of that input?

1)IV✓ Correct
2)III
3)V
4)II

The machine arrangement shifts numbers step by step following a specific sorting rule. Tracking the exact movement sequence for the given first step leads to Step IV as the match.

एका शब्द संयोजन यंत्राला विशिष्ट सामग्री दिल्यानंतर ते यंत्र, ती सामग्री विशिष्ट नियमानुसार पुनः संयोजित करते. खाली, दिलेली सामग्री आणि पुनः संयोजनाच्या पायऱ्या यांचा नमुना दिलेला आहे. दिलेली सामग्री : Ja Ma Da Ch Ha Bo Ka पायरी I : Da Ja Ma Ha Bo Ka Ch पायरी II : Ha Da Ja Ma Ka Ch Bo पायरी III : Ja Ha Da Ka Ch Bo Ma आणि या प्रमाणे. जर दिलेल्या सामग्रीची 'पायरी II', 'ga re bu la ra hi hai' असेल, तर वरील पायऱ्यांमधील नियमानुसार 'पायरी VII' काय असेल ? A word arrangement machine when given a particular input, rearranges it, following a particular rule. The following is the illustration of the input and the steps of arrangement. Input : Ja Ma Da Ch Ha Bo Ka Step I : Da Ja Ma Ha Bo Ka Ch Step II : Ha Da Ja Ma Ka Ch Bo Step III : Ja Ha Da Ka Ch Bo Ma and so on. If 'Step II' of an input is 'ga re bu la ra hi hai', what would be the 'Step VII', as per the rule followed in the above steps ?

1)ra ga hai hi re la bu
2)hai ra ga bu hi re la
3)hi ra hai ga la bu re
4)ra hai ga hi re la bu✓ Correct

By analyzing the word-shifting pattern from Step I to Step II and onwards, the cyclic permutation rule is deduced to correctly determine Step VII.