Machine Input-Output - Advanced Level: sequential processing ADVANCED

Master machine input-output concepts through this hard problem set practice set. Worksheet 26 of 30 contains 20 advanced-level problems. Deep dive into sequential processing while learning output determination, input processing, machine rules. Recommended for advanced learners aiming for complex scenarios and multi-step problems.

📝 Worksheet 26 of 30 • 20 questions • ⏱️ Estimated time: 20 minutes • 🎯 Advanced level

What you'll learn in this worksheet:
Your progress through Machine Input-Output
Worksheet 26 of 30 (86% complete)

Question 1

Input: bat 55 12 cat 19 apple ice Step 1: Check condition for each element Step 2: Elements satisfying condition: Step 3: Rearranged output: bat cat apple ice 55 12 19 What is the final output?
Final output after conditional rearrangement: bat cat apple ice 55 12 19

Question 2

Input: ice dog 19 12 37 fox cat Rule: Words starting with vowel go to left, consonant words to right Which elements satisfy the condition?
Elements satisfying the condition: ice

Question 3

Machine Input: Row 1: sun star planet Row 2: blue yellow green Rule: Words are paired by total length (shortest pairs first) Step 1: Pair by length → Row 1: sun star planet Step 2: Row 2: blue yellow green What is the final arrangement?
Final output:
Row 1: sun star planet
Row 2: blue yellow green

Question 4

Input: 19 cat ice elephant apple 12 28 Step 1: Check condition for each element Step 2: Elements satisfying condition: Step 3: Rearranged output: cat ice elephant apple 19 12 28 What is the final output?
Final output after conditional rearrangement: cat ice elephant apple 19 12 28

Question 5

Machine Input: Row 1: galaxy star moon Row 2: red yellow blue Rule: Row 1 sorted alphabetically, Row 2 sorted alphabetically Step 1: Row 1 → galaxy moon star Step 2: Row 2 → blue red yellow What is the final arrangement?
Final output:
Row 1: galaxy moon star
Row 2: blue red yellow

Question 6

Input: B D C H A F Step 1: B D C H A F Step 2: B C A D H F Step 3: B A H C D F What is Step 4?
Step 4: Step 4: B H D A C F

Question 7

Study the pattern: Input: 42 15 78 23 Output: 15 23 42 78 Now, what will be the output for: Input: 30 45 70 98
The machine applies 'numbers_ascending' rule.
30 45 70 98 → 30 45 70 98

Question 8

Input: 41 25 peach cherry banana 38 mango 12 What is Step 1 output?
Step 1: Step 1: 25 peach cherry banana 38 mango 12 41

Question 9

Input: B D C H A F Step 1: B D C H A F Step 2: B C A D H F What is Step 3?
Step 3: Step 3: B A H C D F

Question 10

Input: 25 apple 12 41 peach berry grape 67 Step 1: apple 25 12 41 peach berry grape 67 Step 2: 25 12 41 peach apple berry grape 67 What is Step 3 output?
Step 3: Step 3: 12 25 41 peach apple berry grape 67

Question 11

Study the pattern: Input: cat dog bat ant Output: ant bat cat dog Now, what will be the output for: Input: mango grape banana apple
The machine applies 'alphabetical_sort' rule.
mango grape banana apple → apple banana grape mango

Question 12

Study the pattern: Input: cat dog bat ant Output: ant bat cat dog Now, what will be the output for: Input: grape apple banana zebra
The machine applies 'alphabetical_sort' rule.
grape apple banana zebra → apple banana grape zebra

Question 13

Input: CODE Step 1 (Uppercase): CODE What is the output after 1 operation(s)?
After 1 operation(s): code

Question 14

Machine Input: Row 1: star galaxy planet Row 2: purple yellow green Rule: Words are paired by total length (shortest pairs first) Step 1: Pair by length → Row 1: star planet galaxy Step 2: Row 2: purple green yellow What is the final arrangement?
Final output:
Row 1: star planet galaxy
Row 2: purple green yellow

Question 15

Machine Input: Row 1: star planet moon Row 2: yellow green purple Rule: Row 1 sorted alphabetically, Row 2 sorted alphabetically Step 1: Row 1 → moon planet star Step 2: Row 2 → green purple yellow What is the final arrangement?
Final output:
Row 1: moon planet star
Row 2: green purple yellow

Question 16

Input: FOCUS Step 1 (First to End): OCUSF What is the output after 1 operation(s)?
After 1 operation(s): FSUCO

Question 17

Machine Input: Row 1: moon sun galaxy Row 2: red blue green Rule: Elements at same positions are swapped between rows Step 1: Swap positions → Row 1: red blue green Step 2: Row 2: moon sun galaxy What is the final arrangement?
Final output:
Row 1: ['red', 'blue', 'green']
Row 2: ['moon', 'sun', 'galaxy']

Question 18

Input: 70 20 10 60 80 30 Step 1: 70 20 10 60 80 30 Step 2: 20 10 80 70 60 30 What is Step 3?
Step 3: Step 3: 10 80 60 20 70 30

Question 19

Study the pattern: Input: hello world python Output: olleh dlrow nohtyp Now, what will be the output for: Input: python java php
The machine applies 'reverse_words' rule.
python java php → nohtyp avaj php

Question 20

Input: grape 73 cherry 41 peach 67 berry 38 Step 1: 73 cherry 41 peach grape 67 berry 38 Step 2: cherry 41 peach grape 67 berry 38 73 Step 3: 41 peach cherry grape 67 berry 38 73 ... What is the final output?
Final output: berry 38 cherry 41 grape 67 peach 73
Previous Worksheet Next Worksheet