Input-Output - Beginner-Intermediate Level: shifting BEGINNER-INTERMEDIATE

This deep dive ★ worksheet contains 20 beginner-intermediate-level input-output problems. Worksheet 11 of 30 focuses on shifting. Practice algorithmic logic, processing rules, output generation with our step-by-step solutions. Difficulty: building on fundamentals with moderate challenges. Recommended for developing learners.

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

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

Question 1

Input: SMART Step 1 (reverse): TRAMS Step 2 (double_letters): TTRRAAMMSS What is the final output after all 3 transformations?
Applied reverse, double_letters, remove_vowels sequentially: SMART → TTRRMMSS

Question 2

Input: FOCUS Step 1 (shift-1): ENBTR Step 2 (swapcase): enbtr What is the final output after all 3 transformations?
Applied shift-1, swapcase, reverse sequentially: FOCUS → rtbne

Question 3

Input: grape 18 plum 29 orange Apply conditional rules based on item type and properties Output: ?
Applied specific rules to each element based on its type and characteristics: hsaqe 9 qmun 81 osaohe

Question 4

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 5

Word: LOGIC Step 1: Shift each letter +2 → NQIKE Step 2: Product of positions Find Step 2.
Product of alphabetical positions: LOGIC → 34020

Question 6

Input: LOGIC Step 1 (swapcase): logic What is the final output after all 2 transformations?
Applied swapcase, reverse sequentially: LOGIC → cigol

Question 7

Input: LOGIC Step 1 (reverse): CIGOL What is the final output after all 2 transformations?
Applied reverse, lowercase sequentially: LOGIC → cigol

Question 8

Input: cat fig bat dog apple 31 19 42 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 9

Input: 5 7 11 What is the next number in the sequence?
Prime number sequence: 5 7 11 → 13

Question 10

Input Matrix: 19 51 80 17 23 97 Apply transformation: rotate_90 What is the output?
Matrix rotated 90 degrees clockwise
19 51 80
17 23 97 → 17 19
23 51
97 80

Question 11

Input: 63 lily lotus orchid 28 jasmine 90 32 Step 1: 28 32 63 90 jasmine lily lotus orchid Step 2: Alternate elements reversed (positions 2,4,6...) What is Step 2 output?
From Step 1, reverse every second element: 28 23 63 09 jasmine ylil lotus dihcro

Question 12

Input: SMART Step 1 (shift+1): TNBSU Step 2 (double_letters): TTNNBBSSUU What is the final output after all 3 transformations?
Applied shift+1, double_letters, remove_vowels sequentially: SMART → TTNNBBSS

Question 13

Input: lotus orchid 84 daisy 71 28 32 rose Step 1: 28 32 71 84 daisy lotus orchid rose Step 2: 28 23 71 48 daisy sutol orchid esor Step 3: Capitalize words, double numbers What is Step 3 output?
From Step 2, double all numbers and capitalize all words: 56 46 142 96 Daisy Sutol Orchid Esor

Question 14

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 15

Input: 1 2 4 What is the next number in the sequence?
Each number is double the previous: 1 2 4 → 8

Question 16

Input: 2 4 16 What is the next number in the sequence?
Each number is the square of the previous: 2 4 16 → 256

Question 17

Input: 2 5 8 What is the next number in the sequence?
Each number increases by 3: 2 5 8 → 11

Question 18

Input: sunflower lotus orchid tulip 28 32 90 63 Step 1: 28 32 63 90 lotus orchid sunflower tulip Step 2: 28 23 63 09 lotus dihcro sunflower pilut Step 3: Capitalize words, double numbers What is Step 3 output?
From Step 2, double all numbers and capitalize all words: 56 46 126 18 Lotus Dihcro Sunflower Pilut

Question 19

Word: ALERT Step 1: Shift each letter +2 → CNGTV Step 2: Product of positions Find Step 2.
Product of alphabetical positions: ALERT → 21600

Question 20

Input Matrix: 97 16 3 90 86 70 54 27 Apply transformation: diagonal_sum What is the output?
Sum of each diagonal (top-left to bottom-right)
97 16 3 90
86 70 54 27 → 97 102 73 144 27
Previous Worksheet Next Worksheet