Difficulty: Medium
Correct Answer: None of these
Explanation:
Introduction / Context:This pattern removes one letter from the left and one from the right at each step. You must apply the same two-sided truncation to find the next fragment. Such problems test careful observation of string operations rather than numerical arithmetic.
Given Data / Assumptions:
Concept / Approach:Verify the rule on each transition. From the original to the second term, the first letter P and last letter R are dropped. From the second to the third, the first letter E and last letter A are dropped. Apply the same operation once more to obtain the fourth term.
Step-by-Step Solution:
S0: PERPENDICULARS1: ERPENDICULA (removed P and R)S2: RPENDICUL (removed E and A)S3 (remove first and last from S2): remove R and L → PENDICU.Therefore, the correct next fragment is PENDICU.Verification / Alternative check:Counting lengths: 13 → 11 → 9 → 7, consistent with removing two letters each step. Visual inspection confirms the internal order of letters remains unchanged while trimming edges.
Why Other Options Are Wrong:
Common Pitfalls:Forgetting that both ends are trimmed each time; assuming a single-end deletion; overlooking the expected length reduction of two characters per step.
Final Answer:None of these
Discussion & Comments