Practice the pronunciation of common programming language keywords including char, enum, void, async, and tuple.
0 / 5 completed
1 / 5
How is the keyword 'char' pronounced?
The keyword char (the character data type) is most commonly pronounced /tʃɑː/ — 'CHAR', rhyming with 'car' but starting with the /tʃ/ sound as in 'church' (since it is short for 'character'). Single syllable: CHAR. A persistent debate exists — some say 'KAR' (hard /k/, matching 'character') or 'CARE' — but /tʃɑː/ is the most widespread. Non-native speakers vary widely. 'char' declares a single-character variable in C, Java, and many other languages: \'Store the initial as a CHAR\'.
2 / 5
How is the keyword 'enum' pronounced?
The keyword enum (short for 'enumeration') is most commonly pronounced /ˈiːnʌm/ — 'EE-num'. 'E' = /iː/ (long 'ee', as in the start of 'enumeration'). '-num' = /nʌm/ (short /ʌ/ as in 'numb'). Two syllables: EE-num, stress on the first. Some developers say 'EN-um' (short 'e'), but 'EE-num' is more widespread. An enum defines a type consisting of a fixed set of named constants: \'Model the status field as an EE-num\'.
3 / 5
How is the keyword 'void' pronounced?
The keyword void is pronounced /vɔɪd/ — 'VOYD', exactly like the English word for emptiness, rhyming with 'avoid'. Single syllable: VOYD. The diphthong /ɔɪ/ as in 'boy', 'toy', 'coin', followed by /d/. Non-native speakers sometimes use /oʊ/ ('VOHD') or /aɪ/ ('VYDE'). 'void' indicates that a function returns no value: \'The handler is declared as VOYD because it returns nothing\'.
4 / 5
How is the keyword 'async' pronounced?
The keyword async (short for 'asynchronous') is most commonly pronounced /ˈeɪsɪŋk/ — 'AY-sink'. 'A' = /eɪ/ (diphthong, as in the start of 'asynchronous'). '-sync' = /sɪŋk/ (short /ɪ/ + /ŋk/, like the word 'sink'). Two syllables: AY-sink, stress on the first. Some say 'ASS-ink' (short 'a'), but 'AY-sink' is the most widespread. 'async' marks a function as asynchronous, allowing the use of 'await': \'Mark the fetch function AY-sink so you can await the response\'.
5 / 5
How is the keyword 'tuple' pronounced?
The keyword tuple has two accepted pronunciations: /ˈtjuːpəl/ — 'TYOO-pul' (rhyming with 'quadruple') and /ˈtʌpəl/ — 'TUP-ul' (rhyming with 'couple'). The 'TOO/TYOO-pul' form (long /uː/) follows the Latin/mathematical origin (from quintuple, sextuple), while 'TUP-ul' follows the 'couple/quadruple' pattern. Both are common; 'TOO-pul' tends to dominate in data-science contexts. A tuple is an ordered, often immutable, finite sequence of elements: \'Return the coordinates as a TOO-pul of (x, y)\'.