SSC CGL वर्णमाला परीक्षण — अक्षर स्थान, शब्द निर्माण और क्रम व्यवस्था

beginner 18 min read

अवधारणा

वर्णमाला परीक्षण (Alphabet Test) SSC CGL के Reasoning section में सबसे अधिक अंक देने वाले और सबसे कम समय लेने वाले topics में से एक है — बशर्ते तुम्हारे पास सही framework हो।

मूल रूप से इस topic के तीन प्रकार के प्रश्न आते हैं:

पहला प्रकार — शब्द निर्माण जाँच: कोई बड़ा word दिया जाता है, और पूछा जाता है कि दिए गए options में से कौन-सा शब्द उस बड़े word के letters से बन सकता है या नहीं बन सकता। यहाँ trap यह है कि letter की frequency गिनना भूल जाते हैं — एक letter दो बार चाहिए पर source word में एक ही बार है, यह अंतर पकड़ना पड़ता है।

दूसरा प्रकार — Dictionary क्रम: पाँच-छह शब्द दिए जाते हैं, उन्हें dictionary के अनुसार arrange करना होता है। यहाँ बायें से दायें letter-by-letter comparison करना पड़ता है — जहाँ पहला अंतर आए, वहीं order तय होती है।

तीसरा प्रकार — अक्षर स्थान (Position-based): English alphabet में किसी letter की position पूछी जाती है, या "बायें से 5वाँ letter दायें से कितने स्थान पर है" जैसे सवाल आते हैं।

एक साधारण analogy से समझो: मान लो किसी बड़े word को एक थैला समझो जिसमें अलग-अलग letters के tokens भरे हैं। शब्द निर्माण का मतलब है — क्या तुम उस थैले से ज़रूरी tokens निकाल सकते हो? अगर थैले में 'K' का कोई token ही नहीं है, तो 'K' वाला कोई भी शब्द नहीं बनेगा। अगर 'S' का सिर्फ एक token है पर तुम्हें दो चाहिए — तब भी नहीं बनेगा।

यह topic beginner level का है, पर गलती intermediate students भी करते हैं। SSC CGL में यहाँ से प्रश्न लगभग हर tier में आते हैं और 30-45 सेकंड में हल होने चाहिए।


गहन विश्लेषण

शब्द निर्माण जाँच — सही तरीका

जब source word दिया हो और पूछा जाए "कौन-सा word नहीं बन सकता", तो यह दो-चरणीय process है:

चरण 1 — Letter Inventory बनाओ: Source word के हर letter को एक बार लिखो और उसकी frequency (count) नोट करो।

उदाहरण: QUARRELSOME Q(1), U(1), A(1), R(2), E(2), L(1), S(1), O(1), M(1)

ध्यान दो — R दो बार है, E दो बार है।

चरण 2 — हर option को check करो, "जासूस की नज़र" से: सबसे पहले वह letter खोजो जो source word में है ही नहीं। यह सबसे तेज़ तरीका है।

QUARRELSOME में कौन-कौन से letters नहीं हैं? B, C, D, F, G, H, I, J, K, N, P, T, V, W, X, Y, Z — ये सब absent हैं।

अब options में से जिस word में इनमें से कोई भी letter हो, वह नहीं बन सकता।

AIR — इसमें 'I' है। 'I' QUARRELSOME में नहीं है। इसलिए AIR नहीं बन सकता।

यह जाँच 10 सेकंड में होती है।

Frequency Trap — सबसे आम गलती

कई बार सभी letters source word में मौजूद होते हैं, पर किसी की frequency कम होती है।

उदाहरण: IMPASSIONABLE से IMPOSSIBLE बनाना।

IMPASSIONABLE: I(1), M(1), P(1), A(2), S(1), I, O(1), N(1), B(1), L(1), E(1) — ध्यान से गिनो: S सिर्फ एक बार है।

IMPOSSIBLE: I, M, P, O, S, S, I, B, L, E — इसमें S दो बार चाहिए।

IMPASSIONABLE में S एक ही बार है, इसलिए IMPOSSIBLE नहीं बनेगा।

यही frequency trap है। जब सभी letters दिखें तो रुको — count भी verify करो।

Dictionary क्रम — Letter-by-Letter तुलना

जब कई words को dictionary order में लगाना हो:

नियम: बायें से दायें जाओ। पहले अक्षर में जो अंतर मिले, वहीं order तय हो जाती है। अगर पहला अक्षर same है, दूसरे पर जाओ। इसी तरह आगे बढ़ते रहो।

उदाहरण: Inventory, Involuntary, Invisible, Invariable, Investigate

सभी शब्द "Inv" से शुरू होते हैं। चौथे letter पर जाओ:

Alphabetical order: a < e < i < o

इसलिए पहले Invariable (4), फिर Inventory और Investigate दोनों 'e' से — इन दोनों में 5th letter देखो:

n < s, इसलिए Inventory (1) पहले, फिर Investigate (5)।

अंतिम order: 4, 1, 5, 3, 2

अक्षर स्थान — Position formula

English alphabet में 26 letters होते हैं।

बायें से position + दायें से position = 27

इसलिए अगर कोई letter बायें से nth स्थान पर है, तो वह दायें से (27 - n)वें स्थान पर होगा।

उदाहरण: M बायें से 13वाँ है, इसलिए दायें से 27 - 13 = 14वाँ।

यह formula सीधे याद करो, हर बार गिनना बंद करो।

EJOTY trick: E=5, J=10, O=15, T=20, Y=25 — इन पाँच letters की position याद रखो। किसी भी letter की position इन्हीं से ±1, ±2, ±3, ±4 जोड़-घटाकर निकालो।

उदाहरण: R की position? T=20, R T से 2 पहले है, इसलिए 20-2=18।


शॉर्टकट और युक्तियाँ

eliminationAbsent Letter सबसे पहले खोजो

जब "कौन-सा word नहीं बन सकता" पूछा जाए, तो source word में absent letters की एक मानसिक list बनाओ (B, C, D, F, G, H, I, J, K, N, P, T, V, W, X, Y, Z जैसे uncommon letters पर ध्यान दो)। फिर हर option में सिर्फ वह absent letter खोजो। जैसे ही मिले — वही answer है।

Standard method: हर option के हर letter को source से match करना — 45 seconds। यह shortcut: Absent letters list बनाकर options scan करना — 10-12 seconds।

patternEJOTY Position Formula

E=5, J=10, O=15, T=20, Y=25 — यह पाँच numbers याद करो। किसी भी letter की position निकालनी हो तो इन्हीं से आगे-पीछे गिनो।

उदाहरण: S की position? T=20, S=T-1=19। P की position? O=15, P=O+1=16।

Standard method: A से गिनना शुरू करो — 8-10 seconds। EJOTY shortcut: nearest anchor से गिनो — 2-3 seconds।

यह shortcut position-based हर सवाल में 5-6 seconds बचाता है।

pattern27 का Formula — दोनों तरफ की Position

बायें से position + दायें से position = 27 (26 letters वाले English alphabet के लिए)।

उदाहरण: "G बायें से 7वाँ है, दायें से कौन-सा?" → 27 - 7 = 20वाँ।

Standard method: दायें से गिनना शुरू करो — 6-8 seconds। 27 formula: एक घटाव — 2 seconds।

यह formula हर position-reversal question में काम आता है।

eliminationFrequency Count — Double-Letter Trap पकड़ो

Source word में जो letters दो या अधिक बार हों (जैसे QUARRELSOME में R=2, E=2), उन्हें पहले mark करो। फिर options में देखो कहाँ उस letter की count source से ज़्यादा माँगी जा रही है।

उदाहरण: IMPASSIONABLE → S(1) है। IMPOSSIBLE में S(2) चाहिए → तुरंत eliminate।

Standard method: हर letter individually verify करना — 30 seconds। Double-letter trap shortcut: Repeated letters पहले mark करो, options में उन्हीं को count करो — 12-15 seconds।

patternDictionary Order — Divergence Point खोजो

जब words को dictionary order में लगाना हो, तो सभी words को vertically लिखो और हर column में scan करो। जिस column में पहली बार अंतर दिखे, वहीं order decide करो।

उदाहरण: "Inva-", "Inve-", "Invi-", "Invo-" — 4th column पर ही a/e/i/o का अंतर मिला, बाकी columns skip।

Standard method: हर word को alphabetically compare करते जाना — 40 seconds। Divergence Point method: Common prefix skip करो, पहले अंतर पर focus करो — 15 seconds।


तेज़-समाधान रूपरेखा

जब वर्णमाला परीक्षण का प्रश्न सामने आए, यह decision tree follow करो:

क्या प्रश्न "शब्द निर्माण" (word formation) पर है? → हाँ: पहले source word की absent letters identify करो। क्या किसी option में absent letter है? → हाँ: वही answer। → नहीं (सभी letters present हैं): Source word में कौन-कौन से letters repeat होते हैं? Option में उनकी count ज़्यादा माँगी जा रही है? → हाँ: वही answer।

क्या प्रश्न "dictionary क्रम" पर है? → सभी words का common prefix identify करो और skip करो। Divergence point (पहले अलग letter) पर alphabetical order लगाओ। Tie हो तो अगले letter पर जाओ।

क्या प्रश्न "letter position" पर है? → EJOTY anchor use करो। Position-reversal के लिए 27 का formula।

हर प्रश्न में पहले question का type identify करना 3-4 seconds का काम है, पर यह बाकी 30 seconds बचाता है। Type गलत identify हुआ तो पूरी solving path बदल जाती है।


हल किए गए PYQs

क्यों यह प्रश्न: यह प्रश्न absent letter identification का classic example है। QUARRELSOME जैसे बड़े word में students सभी letters verify करने लगते हैं — यह trap है।

Previous Year Questionपिछले वर्ष का प्रश्न2025
In the following question, select the word which cannot be formed using the letters of the given word. QUARRELSOME
  1. LOAM
  2. SOME
  3. QUARREL
  4. AIR
Solutionसमाधान
QUARRELSOME contains the letters Q,U,A,R,R,E,L,S,O,M,E. The word LOAM requires an A, L, O, M — but checking carefully, the letter 'A' appears once and all other letters are present. However, LOAM needs an 'A' — present — but actually 'QUARRELSOME' does not contain the letter 'A'... wait: Q-U-A-R-R-E-L-S-O-M-E — 'A' is present. Re-examining: AIR needs 'I' which is NOT in QUARRELSOME, so AIR cannot be formed. The answer is AIR.

समाधान का रास्ता: QUARRELSOME को letter-by-letter scan करो: Q-U-A-R-R-E-L-S-O-M-E। इसमें 'I' कहीं नहीं है। AIR में 'I' है — इसलिए AIR नहीं बन सकता। LOAM (L, O, A, M — सभी present), LURE (L, U, R, E — सभी present) बन सकते हैं। Absent letter खोजने में 8 seconds लगे।


क्यों यह प्रश्न: TRIVANDRUM जैसे proper noun-based word में 'K' absent है — यह uncommon letter है जो students अक्सर miss करते हैं।

Previous Year Questionपिछले वर्ष का प्रश्न2014
From the given alternative words, select the word which cannot be formed using the letters of the given word: TRIVANDRUM
  1. DRUK
  2. RAIN
  3. TRAIN
  4. DRUM
Solutionसमाधान
DRUK requires a 'K', which is not present in TRIVANDRUM. All other words can be formed using the available letters.

समाधान का रास्ता: TRIVANDRUM: T-R-I-V-A-N-D-R-U-M। K कहीं नहीं। DRUK में K है → DRUK नहीं बन सकता। यह 6 seconds का काम है।


क्यों यह प्रश्न: यह "कितने meaningful words बन सकते हैं" type का प्रश्न है। Students अक्सर सभी permutations लिखने लगते हैं — यह approach slow है।

Previous Year Questionपिछले वर्ष का प्रश्न2014
How many meaningful English words can be made with the letters 'OEHM' using each letter only once in each word?
  1. FOUR
  2. THREE
  3. TWO
  4. ONE
Solutionसमाधान
Only one meaningful word 'HOME' can be formed using all the letters O, E, H, M each exactly once.

समाधान का रास्ता: OEHM के letters: O, E, H, M। Common words में 'H' + vowels से HOME तुरंत दिखता है। MOHE, OHME जैसे combinations meaningful नहीं हैं। सिर्फ HOME बनता है — answer ONE (एक word)।


क्यों यह प्रश्न: APPROPRIATE एक frequency-trap word है — P तीन बार है। Students 'V' की अनुपस्थिति miss कर देते हैं।

Previous Year Questionपिछले वर्ष का प्रश्न2012
From the given alternatives select the word which cannot be formed by using the letters of the given word: APPROPRIATE
  1. PIRATE
  2. APPROVE
  3. PROPER
  4. RAPPORT
Solutionसमाधान
APPROPRIATE contains the letters A,P,P,R,O,P,R,I,A,T,E. APPROVE needs two P's and a V, but there is no V in APPROPRIATE, so it cannot be formed.

समाधान का रास्ता: APPROPRIATE: A-P-P-R-O-P-R-I-A-T-E। Absent letters में V है। APPROVE में V है → APPROVE नहीं बनेगा। 8 seconds।


क्यों यह प्रश्न: CONCENTRATION एक high-frequency source word है जहाँ frequency trap + absent letter दोनों tricks test होती हैं।

Previous Year Questionपिछले वर्ष का प्रश्न2011
From the given alternative words, select the word which cannot be formed using the letters of the given word: 'CONCENTRATION'
  1. NATION
  2. TRAIN
  3. CONCERN
  4. CENTRE
Solutionसमाधान
CONCENTRATION contains: C,O,N,C,E,N,T,R,A,T,I,O,N. CONCERN needs two C's and two N's and an R — checking letters: C(2), O(2), N(3), C, E, R — CONCERN needs C,O,N,C,E,R,N = 2 C's, but CONCENTRATION has only 2 C's; however it also needs O twice — it has 2 O's. Actually CONCERN can be formed. CENTRE needs C,E,N,T,R,E — requires 2 E's but CONCENTRATION has only 1 E, so CENTRE cannot be formed.

समाधान का रास्ता: CONCENTRATION: C(2), O(2), N(3), E(1), T(2), R(1), A(1), I(1)। CENTRE के लिए C, E, N, T, R, E चाहिए — E दो बार। लेकिन CONCENTRATION में E सिर्फ एक बार है। इसलिए CENTRE नहीं बन सकता। Frequency trap — 15 seconds।


क्यों यह प्रश्न: यह "बन सकता है" type का प्रश्न है — direction उलटी है। यहाँ हर option को verify करना पड़ता है।

Previous Year Questionपिछले वर्ष का प्रश्न2011
From the given alternative words, select the word which can be formed using the letters of the given word: 'DETERMINATION'
  1. NATIONAL
  2. DEVIATION
  3. DECLARATION
  4. TERMINATED
Solutionसमाधान
DETERMINATION contains D,E,T,E,R,M,I,N,A,T,I,O,N. TERMINATED needs T,E,R,M,I,N,A,T,E,D — all these letters are present in DETERMINATION, making it formable.

समाधान का रास्ता: DETERMINATION: D(1), E(2), T(2), R(1), M(1), I(2), N(2), A(1), O(1)। TERMINATED: T(2)✓, E(2)✓, R(1)✓, M(1)✓, I(1)✓, N(1)✓, A(1)✓, D(1)✓ — सभी letters available हैं। TERMINATED बन सकता है।


क्यों यह प्रश्न: Dictionary order का यह classic SSC question है — सभी words "Inv" से शुरू होते हैं, इसलिए common prefix skip करने की skill test होती है।

Previous Year Questionपिछले वर्ष का प्रश्न2010
Arrange the following words according to the dictionary? 1. Inventory 2. Involuntary 3. Invisible 4. Invariable 5. Investigate
  1. 4, 5, 1, 3, 2
  2. 4, 2, 5, 3, 1
  3. 2, 5, 4, 1, 3
  4. 4, 1, 5, 3, 2
Solutionसमाधान
In dictionary order, words starting with 'Inva' come before 'Inve', 'Invi', 'Invo'. So Invariable(4) first, then Inventory(1), Investigate(5), Invisible(3), Involuntary(2) giving 4,1,5,3,2.

समाधान का रास्ता: सभी words "Inv" तक same हैं। 4th letter देखो: Inva-(4), Inve-(1,5), Invi-(3), Invo-(2)। Alphabetical: a < e < i < o। "Inve-" वाले words में 5th letter: Inven-(1) vs Inves-(5) → n < s। Final order: 4, 1, 5, 3, 2। Divergence point method से 20 seconds।


आम गलतियाँ


संबंधित विषय

SarkariRise पर अभ्यास

Sign up + get 3 free mocks →