V1
Lexical Sophistication
Connotation · register-shifting synonyms · precision of word choice
Connotation
the emotional or cultural associations a word carries beyond its literal meaning
Denotation
the literal, dictionary meaning of a word, without emotional associations
Amelioration
a process by which a word gains a more positive meaning over time
Pejoration
a process by which a word gains a more negative meaning over time
Examples
Connotation: "house" is neutral; "home" has warm connotations.
The denotation of "snake" is a reptile; its connotation may be treachery.
Hyperbole
deliberate exaggeration for rhetorical or emphatic effect
Litotes
understatement using a negative to affirm a positive, often for emphasis or irony
Euphemism
a mild or indirect word used in place of one that might seem harsh or offensive
Dysphemism
a harsh or deliberately offensive word used in place of a neutral or positive one
Examples
Hyperbole: "I’ve told you a million times."
Litotes: "not bad" meaning "very good" / "not unlike" meaning "similar"
Synecdoche
a figure of speech where a part represents the whole, or vice versa
Metonymy
using a closely associated concept to refer to something else
Register shift
changing the formality level of language to suit the audience or context
Semantic field
a group of words all related to the same topic or concept
Examples
Synecdoche: "All hands on deck" — hands = sailors
Metonymy: "The Crown" for the monarchy / "The press" for journalism
1 / 3
// Scroll first slide into view on load
(function() {
var dk = document.getElementById('slide-deck');
if (dk) setTimeout(function() { dk.scrollIntoView({ behavior: 'smooth', block: 'start' }); }, 150);
})();
// ✓ badges on Practice / Game nav tabs
(function() {
try {
var p = JSON.parse(localStorage.getItem('wordplay_progress') || '{}');
var lv = p['c2'] || {};
var ws = lv['lexical-sophistication'];
if (ws && ws.pct >= 70) {
var pt = document.querySelector('.chapter-nav-btn[href="index.html"]');
if (pt) pt.textContent = 'Review ✓';
}
var gm = lv['wordplay_game_lexical-sophistication'];
if (gm && gm.pct >= 70) {
var gt = document.querySelector('.chapter-nav-btn[href="game.html"]');
if (gt) gt.textContent = 'Game ✓';
}
} catch(e) {}
})();
(function(){
try{
var mastered = localStorage.getItem('wordplay_vocab_c2_lexical-sophistication_mastered') === '1';
if(mastered){var ft=document.querySelector('.chapter-nav-btn[href="index.html"]');if(ft)ft.textContent='Flashcards';}
var p=JSON.parse(localStorage.getItem('wordplay_progress')||'{}');
var gm=(p['c2']||{})['wordplay_game_lexical-sophistication'];
if(gm&&gm.pct>=70){var gt=document.querySelector('.chapter-nav-btn[href="game.html"]');if(gt)gt.textContent='Game';}
}catch(e){}
})();