Input-Output - Beginner Level: output generation BEGINNER

Master input-output concepts through this speed drill practice set. Worksheet 6 of 30 contains 20 beginner-level problems. Deep dive into output generation while learning output generation, input manipulation, operation sequences. Recommended for entry-level learners aiming for foundational concepts and basic patterns.

📝 Worksheet 6 of 30 • 20 questions • ⏱️ Estimated time: 20 minutes • 🎯 Beginner level

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

Question 1

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 3 yrrehc 24 hcaep

Question 2

Input: 160 159 197 85 Rule: Count set bits (1's) in binary of first number Output: ?
Count of 1's in binary representation of 160 = 2

Question 3

Input Matrix: 95 98 27 8 56 12 24 33 Apply transformation: flip_horizontal What is the output?
Matrix flipped horizontally (left-right mirror)
95 98 27 8
56 12 24 33 → 8 27 98 95
33 24 12 56

Question 4

Input: dog fig cat 31 19 bat 42 apple Step 1: 19 31 42 apple bat cat dog fig Step 2: 38 62 84 APPLE BAT CAT DOG FIG Step 3: Add 5 to numbers, replace 'A' with '*' What is Step 3 output?
From Step 2, numbers increased by 5, 'A' replaced with '*': 43 67 89 *PPLE B*T C*T DOG FIG

Question 5

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

Question 6

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

Question 7

Word: FOCUS Step 1: Shift each letter +2 → HQEWU Step 2: Product of positions Find Step 2.
Product of alphabetical positions: FOCUS → 107730

Question 8

Input Matrix: 49 2 53 4 74 24 48 70 19 Apply transformation: diagonal_sum What is the output?
Sum of each diagonal (top-left to bottom-right)
49 2 53
4 74 24
48 70 19 → 49 6 175 94 19

Question 9

Rule: swap first and last - Swap first and last letter of each word Example: code logic brain → eod cigol nairb Input: python java cpp Output: ?
Following the 'swap first and last' rule: python java cpp → nythop aavj ppc

Question 10

Input: 72 71 17 40 Coding Scheme: 0→@, 1→#, 2→$, 3→%, 4→&, ... Rule: Replace each digit with its corresponding symbol Output: ?
Each digit replaced by its symbol: 72 71 17 40 → ?$ ?# #? &@

Question 11

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 3 diessz 24 Peach

Question 12

Input: 253 58 105 42 Rule: Apply AND operation on first two numbers Output: ?
Bitwise AND operation: 253 & 58 = 56

Question 13

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

Question 14

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

Question 15

Rule: double letters - Double each letter in every word Example: cat dog fox → ccaatt ddoogg ffoxx Input: bat rat mat Output: ?
Following the 'double letters' rule: bat rat mat → bbaatt rraatt mmaatt

Question 16

Input Matrix: 70 90 99 7 28 81 17 60 65 Apply transformation: flip_horizontal What is the output?
Matrix flipped horizontally (left-right mirror)
70 90 99
7 28 81
17 60 65 → 99 90 70
81 28 7
65 60 17

Question 17

Input: 46 1 148 244 Rule: Apply OR operation on first two numbers Output: ?
Bitwise OR operation: 46 | 1 = 47

Question 18

Input: SMART Step 1 (shift+1): TNBSU What is the final output after all 2 transformations?
Applied shift+1, reverse sequentially: SMART → USBNT

Question 19

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

Question 20

Input: 127 15 26 183 Rule: Count set bits (1's) in binary of first number Output: ?
Count of 1's in binary representation of 127 = 7
Previous Worksheet Next Worksheet