Input-Output - Intermediate-Advanced Level: output generation INTERMEDIATE-ADVANCED

This fundamentals focus worksheet contains 20 intermediate-advanced-level input-output problems. Worksheet 21 of 30 focuses on output generation. Practice input manipulation, operation sequences, logical machines with our step-by-step solutions. Difficulty: advanced concepts with increasing complexity. Recommended for advanced developing learners.

📝 Worksheet 21 of 30 • 20 questions • ⏱️ Estimated time: 20 minutes • 🎯 Intermediate-advanced level

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

Question 1

Input: 209 23 226 225 Rule: Apply left shift on first number Output: ?
Left shift by 1 bits: 209 << 1 = 418

Question 2

Input: 1 5 1 What is the next number in the sequence?
Pattern: sum of all three numbers = 7

Question 3

Rule: capitalize first - Capitalize first letter of each word Example: hello world test → Hello World Test Input: hello world python Output: ?
Following the 'capitalize first' rule: hello world python → Hello World Python

Question 4

Input: FOCUS Step 1 (reverse): SUCOF Step 2 (shift+1): TVDPG What is the final output after all 3 transformations?
Applied reverse, shift+1, swapcase sequentially: FOCUS → tvdpg

Question 5

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 6

Input: 32 jasmine 90 sunflower tulip orchid 17 45 Step 1: 17 32 45 90 jasmine orchid sunflower tulip Step 2: Alternate elements reversed (positions 2,4,6...) What is Step 2 output?
From Step 1, reverse every second element: 17 23 45 09 jasmine dihcro sunflower pilut

Question 7

Input: 3 6 12 What is the next number in the sequence?
Each number is double the previous: 3 6 12 → 24

Question 8

Input: 3 6 12 What is the next number in the sequence?
Geometric progression (multiply by 2): 3 6 12 → 24

Question 9

Input: 84 49 90 69 Coding Scheme: 0→+, 1→-, 2→=, 3→/, 4→\, ... Rule: Replace each digit with its corresponding symbol Output: ?
Each digit replaced by its symbol: 84 49 90 69 → [\ \] ]+ (]

Question 10

Input Matrix: 10 16 13 30 87 71 64 95 68 Apply transformation: diagonal_sum What is the output?
Sum of each diagonal (top-left to bottom-right)
10 16 13
30 87 71
64 95 68 → 10 46 164 166 68

Question 11

Word: MATH Step 1: Shift each letter +2 → OCVJ Step 2: Product of positions Find Step 2.
Product of alphabetical positions: MATH → 2080

Question 12

Input: 3 6 12 What is the next number in the sequence?
Geometric progression (multiply by 2): 3 6 12 → 24

Question 13

Input: 196 253 63 114 Rule: Apply XOR operation on first two numbers Output: ?
Bitwise XOR operation: 196 ^ 253 = 57

Question 14

Input: 28 94 97 89 Coding Scheme: 0→!, 1→?, 2→~, 3→^, 4→&, ... Rule: Replace each digit with its corresponding symbol Output: ?
Each digit replaced by its symbol: 28 94 97 89 → ~$ %& %# $%

Question 15

Input: 92 82 184 22 Rule: Apply OR operation on first two numbers Output: ?
Bitwise OR operation: 92 | 82 = 94

Question 16

Input: 2 5 10 What is the next number in the sequence?
Pattern: add 3, multiply by 2, add 3, multiply by 2... → 13

Question 17

Input: 204 201 52 132 Rule: Apply AND operation on first two numbers Output: ?
Bitwise AND operation: 204 & 201 = 200

Question 18

Input: 9 12 15 What is the next number in the sequence?
Each number increases by 3: 9 12 15 → 18

Question 19

Input: 186 202 112 41 Rule: Apply AND operation on first two numbers Output: ?
Bitwise AND operation: 186 & 202 = 138

Question 20

Input Matrix: 39 93 30 35 22 9 70 17 56 Apply transformation: diagonal_sum What is the output?
Sum of each diagonal (top-left to bottom-right)
39 93 30
35 22 9
70 17 56 → 39 128 122 26 56
Previous Worksheet Next Worksheet