Curioustab
Aptitude
General Knowledge
Verbal Reasoning
Computer Science
Interview
Take Free Test
Aptitude
General Knowledge
Verbal Reasoning
Computer Science
Interview
Take Free Test
Coding Decoding Questions
Decode the symbol string to digits using the given number→symbol coding. Coding: 1→!, 2→@, 3→#, 4→$, 5→%, 6→^, 7→&, 8→*, 9→+ Given symbols: ^ * & # !
Select the equivalent capital letters for the given lowercase string by applying the ATBASH cipher (a↔z, b↔y, …, m↔n) and converting the result to uppercase. Given: hjwlcm Task: Compute Atbash(hjwlcm) and write it in capitals.
Decode the uppercase string using a Caesar shift of +5 (i.e., shift every letter 5 positions forward in the alphabet, wrapping around), then report the resulting 6-letter word in lowercase. Given: ELBJSR
Decode the uppercase string using a Caesar shift of −6 (i.e., shift every letter 6 positions backward), then output the result in lowercase. Given: VPRFKM
Decode the uppercase string using a Caesar shift of −6 (backward by 6), then output in lowercase. Given: XACGLY
Decode the uppercase string using a Caesar shift of −6 (backward by 6). Output the result in lowercase. Given: LKFZOS
Decode the uppercase string using a Caesar shift of −6, then output in lowercase. Given: XDMJRA
Decode the uppercase string using a Caesar shift of −6; output in lowercase. Given: GOYEPS
Decode the uppercase string using a Caesar shift of −6; output in lowercase. Given: PSAFLT
Decode the uppercase string using a Caesar shift of −6; output in lowercase. Given: TZCLJW
Decode the uppercase string using a Caesar shift of −6; output in lowercase. Given: QNUBDI
Pattern-based arithmetic puzzle: Given 16 - 2 = 2, 9 - 3 = 0, and 81 - 1 = 8 (using a hidden rule), determine the value of 64 - 4 under the same rule.
Code-language inference: “Sue Re Nik” = “She is brave”; “Pi Sor re nik” = “She is always smiling”; “Sor Re Zhi” = “is always cheerful”. What is the code for the word “smiling”?
Letter-to-digit coding consistency: Given PKROK = 72962 and KRRPK = 29972 using a fixed mapping, determine the correct code for NJMLZ.
Position-based letter shift rule: If “MOUSE” is coded as “PRUQC” by applying +3 to the first two letters, leaving the middle unchanged, and −2 to the last two letters, how is “SHIFT” written?
Consistent letter→digit substitution: Given “GLOSSORY” = 97533562 and “GEOGRAPHY” = 915968402, determine the code for “GEOLOGY”.
Apply the established substitution from “ELEPHANT” → “57589143”: What is the code for “LEAP”?
Greek-letter code to English words: If αδγηε corresponds to ARGUE and σφλπε to SOLVE, then παγηελω corresponds to which English word?
Alphabet jump rule: If D→H, E→J, and G→N by adding each letter’s own alphabet index (D=4, E=5, G=7), then what does K become?
Adjacent-pair swapping in a word: If you swap (1↔2), (3↔4), (5↔6), … in “COMMUNICATIONS”, which letter becomes the 10th from the right in the new arrangement?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23