in a certain code if a is coded as 14, b is is 13, c is 15, d is 12, e is 16, f is 11 and so on , then how is the word press written in that code?
Here’s a clear, logical, and complete explanation to solve your coding puzzle, written in a slightly casual explanatory tone under the requested “Quick Scoop” format.
Quick Scoop
So you’ve got a code where —
- a = 14
- b = 13
- c = 15
- d = 12
- e = 16
- f = 11
and the question is: How is the word “PRESS” written in this code system? Let’s decode it step-by-step 👇
Step 1: Identify the Pattern
Look closely:
Letter| Code
---|---
a| 14
b| 13
c| 15
d| 12
e| 16
f| 11
The numbers are alternating around 13–16 in a zig-zag pattern.
If you list letters in order, you’ll see the mapping alternates between
subtracting and adding sequentially:
- a (1st letter) → 14
- b (2nd) → 13
- c (3rd) → 15
- d (4th) → 12
- e (5th) → 16
- f (6th) → 11
So, even positions go downward by 1 per step , odd ones upward by 1 per step.
Step 2: Extend the Pattern
Following the same logic:
Letter| Position| Code
---|---|---
g| 7| 17
h| 8| 10
i| 9| 18
j| 10| 9
k| 11| 19
l| 12| 8
m| 13| 20
n| 14| 7
o| 15| 21
p| 16| 6
q| 17| 22
r| 18| 5
s| 19| 23
t| 20| 4
u| 21| 24
v| 22| 3
w| 23| 25
x| 24| 2
y| 25| 26
z| 26| 1
(Notice the trend: odd = ascending pattern; even = descending.)
Step 3: Decode “PRESS”
Now match each letter to its corresponding number:
Letter| Code
---|---
P| 6
R| 5
E| 16
S| 23
S| 23
✅ Final coded form of “PRESS” = 6 5 16 23 23 Answer: PRESS → 6 5 16 23 23 Information gathered from public forums or data available on the internet and portrayed here.