Input-Output - Advanced Level: rearrangement ADVANCED

Quick competitive exam prep session: 20 advanced-level input-output questions. Worksheet 27 of 30 - Focus: rearrangement. Practice output generation, input manipulation, operation sequences with instant feedback. Great for advanced students needing complex scenarios and multi-step problems practice.

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

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

Question 1

Input Matrix: 42 99 68 53 51 52 81 67 65 48 22 91 Apply transformation: flip_vertical What is the output?
Matrix flipped vertically (top-bottom mirror)
42 99 68 53
51 52 81 67
65 48 22 91 → 65 48 22 91
51 52 81 67
42 99 68 53

Question 2

Input Matrix: 77 61 76 30 64 55 Apply transformation: flip_vertical What is the output?
Matrix flipped vertically (top-bottom mirror)
77 61 76
30 64 55 → 30 64 55
77 61 76

Question 3

Word: LOGIC Step 1: Alternate encoding - letter followed by its position number What is the encoded output?
Each letter followed by its position (A=1, B=2...): LOGIC → L12O15G7I9C3

Question 4

Input: apple 42 banana 16 kiwi Apply conditional rules based on item type and properties Output: ?
Applied specific rules to each element based on its type and characteristics: fpple 6 caoaoa 7 Kiwi

Question 5

Input Matrix: 92 62 99 4 61 17 84 94 82 Apply transformation: flip_vertical What is the output?
Matrix flipped vertically (top-bottom mirror)
92 62 99
4 61 17
84 94 82 → 84 94 82
4 61 17
92 62 99

Question 6

Input: 11 60 64 99 Coding Scheme: 0→+, 1→-, 2→=, 3→/, 4→\, ... Rule: Replace each digit with its corresponding symbol Output: ?
Each digit replaced by its symbol: 11 60 64 99 → -- (+ (\ ]]

Question 7

Input: 217 212 162 209 Rule: Count set bits (1's) in binary of first number Output: ?
Count of 1's in binary representation of 217 = 5

Question 8

Input: SMART Step 1 (lowercase): smart Step 2 (reverse): trams What is the final output after all 3 transformations?
Applied lowercase, reverse, uppercase sequentially: SMART → TRAMS

Question 9

Input: 1 4 7 What is the next number in the sequence?
Each number increases by 3: 1 4 7 → 10

Question 10

Input: 47 82 57 85 Coding Scheme: 0→!, 1→?, 2→~, 3→^, 4→&, ... Rule: Replace each digit with its corresponding symbol Output: ?
Each digit replaced by its symbol: 47 82 57 85 → &# $~ *# $*

Question 11

Input: 84 lily jasmine 45 17 orchid sunflower 71 Step 1: Sort numbers ascending, then words alphabetically What is Step 1 output?
All numbers moved to left (sorted ascending), then words sorted alphabetically: 17 45 71 84 jasmine lily orchid sunflower

Question 12

Rule: number to word length - Replace each word with its length Example: a an the → 1 2 3 Input: a an the Output: ?
Following the 'number to word length' rule: a an the → 1 2 3

Question 13

Input: lemon 27 fig 38 date Apply conditional rules based on item type and properties Output: ?
Applied specific rules to each element based on its type and characteristics: menoo 4 gif 11 eaue

Question 14

Input: mango 35 cherry 42 peach Apply conditional rules based on item type and properties Output: ?
Applied specific rules to each element based on its type and characteristics: naoho 8 diessz 4 qeadi

Question 15

Input: 10 99 79 46 Coding Scheme: 0→!, 1→?, 2→~, 3→^, 4→&, ... Rule: Replace each digit with its corresponding symbol Output: ?
Each digit replaced by its symbol: 10 99 79 46 → ?! %% #% &@

Question 16

Input Matrix: 43 16 28 96 48 14 Apply transformation: flip_vertical What is the output?
Matrix flipped vertically (top-bottom mirror)
43 16 28
96 48 14 → 96 48 14
43 16 28

Question 17

Input: mango 35 cherry 42 peach Apply conditional rules based on item type and properties Output: ?
Applied specific rules to each element based on its type and characteristics: ognam 25 Cherry 6 qeadi

Question 18

Input: 4 7 10 What is the next number in the sequence?
Each number increases by 3: 4 7 10 → 13

Question 19

Input: 226 183 37 16 Rule: Apply XOR operation on first two numbers Output: ?
Bitwise XOR operation: 226 ^ 183 = 85

Question 20

Input: CODE Step 1 (lowercase): code What is the final output after all 2 transformations?
Applied lowercase, remove_vowels sequentially: CODE → cd
Previous Worksheet Next Worksheet