All Exams Test series for 1 year @ ₹349 only
Question

In a certain code language, 'PLANT' is written as 'NRDVP' and 'SCORE' is written as 'EURGT'. How will 'GRIND' be written in that language?

This question was previously asked in
SSC CGL 2023 (Tier-II) Paper 1 Previous Year Paper (26-Oct-2023) (Shift-1)
The correct answer is

TILFP

Understanding the Coding Pattern

This question involves a coding-decoding pattern where words are transformed into coded versions. We are given two examples of this transformation: 'PLANT' becomes 'NRDVP' and 'SCORE' becomes 'EURGT'. Our goal is to find the pattern and apply it to the word 'GRIND' to find its code.

Analyzing the Examples: Finding Letter Shifts

Let's look at the positional value of each letter in the alphabet (A=1, B=2, ..., Z=26) and the corresponding letters in the coded words. We can calculate the shift for each letter.

Position PLANT Value NRDVP Value Shift (NRDVP - PLANT)
1st P \(16\) N \(14\) \(14 - 16 = -2\)
2nd L \(12\) R \(18\) \(18 - 12 = +6\)
3rd A \(1\) D \(4\) \(4 - 1 = +3\)
4th N \(14\) V \(22\) \(22 - 14 = +8\)
5th T \(20\) P \(16\) \(16 - 20 = -4\)
Position SCORE Value EURGT Value Shift (EURGT - SCORE)
1st S \(19\) E \(5\) \(5 - 19 = -14\) or \(+12\) (\(19 + 12 = 31 \equiv 5 \pmod{26}\))
2nd C \(3\) U \(21\) \(21 - 3 = +18\) or \(-8\) (\(3 - 8 = -5 \equiv 21 \pmod{26}\))
3rd O \(15\) R \(18\) \(18 - 15 = +3\)
4th R \(18\) G \(7\) \(7 - 18 = -11\) or \(+15\) (\(18 + 15 = 33 \equiv 7 \pmod{26}\))
5th E \(5\) T \(20\) \(20 - 5 = +15\)

Let's list the shifts for each word using the smaller magnitude or positive modulo 26 shifts:

  • PLANT: \(-2, +6, +3, +8, -4\)
  • SCORE: \(+12, -8, +3, -11, +15\)

A key observation is that the shift for the 3rd position is consistently \(+3\) in both examples.

Discovering the Positional Shift Pattern

The shifts for other positions seem less straightforward. Let's look at the sequence of shifts for each position across the given words (PLANT, SCORE) and the target word (GRIND), for which we need to find the shifts.

Let the shifts for GRIND be \(s_1, s_2, s_3, s_4, s_5\). We know \(s_3 = +3\).

Let's compare the shifts position by position:

Position PLANT Shift (\(s_{P,j}\)) SCORE Shift (\(s_{S,j}\)) Difference 1 (\(s_{S,j} - s_{P,j}\)) GRIND Shift (\(s_{G,j}\)) Difference 2 (\(s_{G,j} - s_{S,j}\))
1st \(-2\) \(+12\) \(14\) \(s_{G,1}\) \(s_{G,1} - 12\)
2nd \(+6\) \(-8\) \(-14\) \(s_{G,2}\) \(s_{G,2} - (-8)\)
3rd \(+3\) \(+3\) \(0\) \(+3\) \(+3 - 3 = 0\)
4th \(+8\) \(-11\) \(-19\) \(s_{G,4}\) \(s_{G,4} - (-11)\)
5th \(-4\) \(+15\) \(19\) \(s_{G,5}\) \(s_{G,5} - 15\)

Let's look at the sequence of differences for each position: \((s_{S,j} - s_{P,j}), (s_{G,j} - s_{S,j})\).

  • Position 1: \((14, s_{G,1} - 12)\)
  • Position 2: \((-14, s_{G,2} + 8)\)
  • Position 3: \((0, 0)\)
  • Position 4: \((-19, s_{G,4} + 11)\)
  • Position 5: \((19, s_{G,5} - 15)\)

Notice a pattern in the sequence of differences between consecutive words (PLANT to SCORE, SCORE to GRIND):

  • The sequence for Position 2 differences is the negative of Position 1: \((-14, -1) = -(14, 1)\). This implies \(s_{G,1} - 12 = 1\), so \(s_{G,1} = +13\), and \(s_{G,2} + 8 = -1\), so \(s_{G,2} = -9\).
  • The sequence for Position 5 differences is the negative of Position 4: \((19, -3) = -(-19, 3)\). This implies \(s_{G,4} + 11 = 3\), so \(s_{G,4} = -8\), and \(s_{G,5} - 15 = -3\), so \(s_{G,5} = +12\).
  • Position 3 differences are both \(0\), implying \(s_{G,3} - 3 = 0\), so \(s_{G,3} = +3\).

Based on this complex pattern of shifts, the shifts for GRIND are: \((+13, -9, +3, -8, +12)\).

Applying the Shifts to GRIND

Now, we apply these derived shifts to the letters of 'GRIND' based on their position:

  • 1st letter: G (\(7\)) + \(13\) \(= 20\) which corresponds to T.
  • 2nd letter: R (\(18\)) - \(9\) \(= 9\) which corresponds to I.
  • 3rd letter: I (\(9\)) + \(3\) \(= 12\) which corresponds to L.
  • 4th letter: N (\(14\)) - \(8\) \(= 6\) which corresponds to F.
  • 5th letter: D (\(4\)) + \(12\) \(= 16\) which corresponds to P.

Combining the resulting letters, we get 'TILFP'.

Result

Following the established coding pattern, 'GRIND' is written as 'TILFP'.


Revision Table: Key Coding Pattern Analysis

Word Code Letter Shifts
PLANT NRDVP \(-2, +6, +3, +8, -4\)
SCORE EURGT \(+12, -8, +3, -11, +15\)
GRIND TILFP \(+13, -9, +3, -8, +12\)

Additional Information: Types of Letter Coding

Letter coding is a common type of question in logical reasoning. The patterns can vary widely, but some common types include:

  • Shift Coding: Each letter is shifted a fixed number of positions forward or backward in the alphabet. The shift can be constant for the whole word, or vary based on the letter's position or value.
  • Reverse Alphabetical Order: Letters are replaced by their counterparts from the reverse end of the alphabet (A becomes Z, B becomes Y, etc.).
  • Jumbling/Rearrangement: The letters of the word are rearranged according to a specific rule or pattern.
  • Opposite Letters: Each letter is replaced by the letter that is equidistant from the starting and ending points of the alphabet (A opp Z, B opp Y, C opp X, etc.).
  • Vowel/Consonant based: The coding rule might differ for vowels and consonants.
  • Position-based Coding: The rule depends on the position of the letter within the word (e.g., the first letter follows one rule, the second another, and so on). This question is an example of complex position-based coding.

Solving coding-decoding problems requires careful observation, pattern identification, and applying the pattern consistently.

Was this answer helpful?

Similar Questions

  1. In a certain code language, 'INERTIA' is written as 'RGVKGBZ'. How will 'FLOWER' be written in that language?

  2. In a certain code language, ‘ADVANCE’ is written as ‘VDAAECN’ and ‘BABYSIT’ is written as ‘BABYTIS’. How will ‘AFFABLE’ be written in that language?

  3. In a certain code language, ‘FROST’ is written as ‘156’ and ‘CANDLE’ is written as ‘78’. How will ‘SCREAM’ be written in that language?

  4. In a certain code language, 'LABOUR' is written as 'XZSECM' and ‘GAINED’ is written as ‘JJRLCH’. How will 'EARNED' be written in that language?

  5. In a certain code language, 'CAKES’ is written as 'FXNBV' and 'ABUSE' is written as 'DYXPH'. How will 'BARKS' be written in that language?

  6. In a certain code language, “DICTATOR” is written as “DROTATCI” and “GLIMPSE” Is written as “GESPMIL”. How will “CONDEMN” be written in that language?

  7. In a certain code language, 'SPIT' is coded as ‘USKW’ and 'COPY' is coded as ‘ERRB’. How will 'MOCK' be coded in that language?

  8. Select the option that is related to the fifth letter-cluster in the same way as the second letter-cluster is related to the first letter-cluster and the fourth letter-cluster is related to the third letter cluster.

    COMFORT : FMOCTRO :: DIGNITY : NGIDYTI :: FOREIGN : ?

  9. In a certain code language, 'ENGINE' is written as ‘ENIGNE’ and 'TRAIN’ is written as 'NIART'. How will 'LEVEL' be written in that language?

  10. In a certain code language, 'CERTAIN' is written as 'ECTRCGP', 'DIGITAL' is written as 'FGIGVYN'. How will 'FACTORY' be written in that language?


Important Questions from Coding and Decoding By Letter Shifting

  1. In a certain code language, BEAT is written as YVZG. What will be the code of MILD?
  2. If BE QUICK is coded as ZC OSGAI, then the code of the last letter of the third word in the sentence I LOVE MY COUNTRY is
  3. In a certain code language, THANKS is written as SKNTHA. How is STUPID written in that code language?
  4. In a certain code, GARNISH is written as RGAINHS. How will GENIOUS be written in that code?

  5. In a certain code language 'MATHEMATICS' is written as 'LBSIDNZUHDR'. How is 'CHEMISTRY' written in that code language?

Need Expert Advice?
Upcoming Exams
SSC JHT
September 08, 2026
SSC Stenographer
September 09, 2026
SSC Selection Post
September 16, 2026
Test Series
SSC CGL img
SSC
SSC CGL (Tier I + Tier II) 2026 Mock Test Series - Latest Pattern
2501 Tests 6 Tests Free
4245 Attempts
4.2(842)
English, Hindi

Start Your Preparation with Prepp Mobile App

Download the app from Google Play & App Store
Download the app from Google Play & App Store
Prepp Mobile App