0%

22-letter words containing c, h, u, r, i

  • a name to conjure with — If you say that the name of a particular person or organization is a name to conjure with, you mean that that person or organization is very important and influential in the field you are discussing.
  • acoustic spectrography — a technique for analyzing sound by separating it into its component frequencies.
  • antediluvian patriarch — See under patriarch (def 1).
  • articulatory phonetics — the branch of phonetics concerned with the production of speech sounds
  • bacillus thuringiensis — a bacterium used in genetically altered form in the biological control of budworms, gypsy moth larvae, Japanese beetles, and other insect pests. Abbreviation: B.t.
  • behaviour modification — the use of techniques to change someone's behaviour by reinforcing desired behaviour
  • bring down the curtain — If something brings down the curtain on an event or situation, it causes or marks the end of it.
  • bristle-thighed curlew — an Alaskan curlew, Numenius tahitiensis, that winters in Polynesia, having bristlelike feathers on its thighs.
  • chinese army technique — Mongolian Hordes technique
  • chinese water chestnut — a Chinese cyperaceous plant, Eleocharis tuberosa, with an edible succulent corm
  • chip on one's shoulder — an inclination to fight or quarrel
  • chlorotrifluoromethane — a colorless gas, CClF 3 , used chiefly as a refrigerant, in the hardening of metals, and in pharmaceutical processing.
  • cognitive architecture — (architecture)   A computer architecure involving non-deterministic, multiple inference processes, as found in neural networks. Cognitive architectures model the human brain and contrast with single processor computers. The term might also refer to software architectures, e.g. fuzzy logic.
  • component architecture — (programming)   A notion in object-oriented programming where "components" of a program are completely generic. Instead of having a specialised set of methods and fields they have generic methods through which the component can advertise the functionality it supports to the system into which it is loaded. This enables completely dynamic loading of objects. JavaBeans is an example of a component architecture. See also design pattern.
  • constitutional monarch — the sovereign in a constitutional monarchy
  • consummatory behaviour — any behaviour that leads directly to the satisfaction of an innate drive, e.g. eating or drinking
  • covered with confusion — greatly embarrassed
  • crime against humanity — repeated actions undertaken by, or condoned by, a government, deemed to infringe human dignity and safety, such as rape, torture, murder, etc
  • curvature of the spine — a condition in which the spine is abnormally curved
  • delayed-action shutter — a camera shutter that opens after an interval set by the photographer
  • diachronic linguistics — historical linguistics.
  • diethylbarbituric acid — barbital
  • drumhead court-martial — a court-martial held, usually on a battlefield, for the summary trial of charges of offenses committed during military operations.
  • earth inductor compass — a compass actuated by induction from the earth's magnetic field.
  • echegaray y eizaguirre — José (xoˈse). 1832–1916, Spanish dramatist, statesman, and mathematician. His plays include Madman or Saint (1877); Nobel prize for literature 1904
  • frequency shift keying — (communications)   (FSK) The use of frequency modulation to transmit digital data, i.e. two different carrier frequencies are used to represent zero and one. FSK was originally used to transmit teleprinter messages by radio (RTTY) but can be used for most other types of radio and land-line digital telegraphy. More than two frequencies can be used to increase transmission rates.
  • graphical display unit — an output device incorporating a cathode ray tube on which both line drawings and text can be displayed. It is usually used in conjunction with a light pen to input or reposition data
  • gum bichromate process — a contact printing method in which the image is formed on a coating of sensitized gum containing a suitable colored pigment and potassium or ammonium dichromate.
  • highway contract route — a route for carrying mail over the highway between designated points, given on contract to a private carrier and often requiring, in rural areas, delivery to home mailboxes. Abbreviation: HCR.
  • historical linguistics — the study of changes in a language or group of languages over a period of time.
  • human interface device — (hardware)   (HID) Any device to interact directly with humans (mostly input) like keyboard, mouse, joystick, or graphics tablet.
  • hybrid multiprocessing — (parallel)   (HMP) The kind of multitasking which OS/2 supports. HMP provides some elements of symmetric multiprocessing, using add-on IBM software called MP/2. OS/2 SMP was planned for release in late 1993.
  • industrial archaeology — the study of past industrial machines, works, etc
  • instruction scheduling — The compiler phase that orders instructions on a pipelined, superscalar, or VLIW architecture so as to maximise the number of function units operating in parallel and to minimise the time they spend waiting for each other. Examples are filling a delay slot; interspersing floating-point instructions with integer instructions to keep both units operating; making adjacent instructions independent, e.g. one which writes a register and another which reads from it; separating memory writes to avoid filling the write buffer. Norman P. Jouppi and David W. Wall, "Available Instruction-Level Parallelism for Superscalar and Superpipelined Processors", Proceedings of the Third International Conference on Architectural Support for Programming Languages and Operating Systems, pp. 272--282, 1989.
  • jacquard, joseph-marie — Joseph-Marie Jacquard
  • label switching router — (networking)   (LSR) A device that typically resides somewhere in the middle of a network and is capable of forwarding datagrams by label switching. In many cases, especially early versions of MPLS networks, a LSR will typically be a modified ATM switch that forwards datagrams based upon a label in the VPI/VCI field.
  • landscape architecture — the art of arranging or modifying the features of a landscape, an urban area, etc., for aesthetic or practical reasons.
  • mcculloch-pitts neuron — (artificial intelligence)   The basic building block of artificial neural networks. It receives one or more inputs and produces one or more identical outputs, each of which is a simple non-linear function of the sum of the inputs to the neuron. The non-linear function is typically a threshhold or step function which is usually smoothed (i.e. a sigmoid) to facilitate learning.
  • nonspecific urethritis — nongonococcal urethritis.
  • north atlantic current — an ocean current flowing NE toward the British Isles, formed by the convergence of the Gulf Stream and the Labrador Current SE of Newfoundland.
  • occupational therapist — professional who assists with rehabilitation
  • ousterhout's dichotomy — (language)   John Ousterhout's division of high-level languages into "system programming languages" and "scripting languages". This distinction underlies the design of his language Tcl. System programming languages (or "applications languages") are strongly typed, allow arbitrarily complex data structures, and programs in them are compiled, and are meant to operate largely independently of other programs. Prototypical system programming languages are C and Modula-2. By contrast, scripting languages (or "glue languages") are weakly typed or untyped, have little or no provision for complex data structures, and programs in them ("scripts") are interpreted. Scripts need to interact either with other programs (often as glue) or with a set of functions provided by the interpreter, as with the file system functions provided in a UNIX shell and with Tcl's GUI functions. Prototypical scripting languages are AppleScript, C Shell, MS-DOS batch files and Tcl. Many believe that this is a highly arbitrary dichotomy, and refer to it as "Ousterhout's fallacy" or "Ousterhout's false dichotomy". While strong-versus-weak typing, data structure complexity, and independent versus stand-alone might be said to be unrelated features, the usual critique of Ousterhout's dichotomy is of its distinction of compilation versus interpretation, since neither semantics nor syntax depend significantly on whether code is compiled into machine-language, interpreted, tokenized, or byte-compiled at the start of each run, or any mixture of these. Many languages fall between being interpreted or compiled (e.g. Lisp, Forth, UCSD Pascal, Perl, and Java). This makes compilation versus interpretation a dubious parameter in a taxonomy of programming languages.
  • peanut-butter sandwich — a sandwich with a filling of peanut-butter
  • phosphorus trichloride — a clear, colorless, fuming liquid, PCl 3 , used chiefly in organic synthesis as a chlorinating agent.
  • polymyalgia rheumatica — a chronic inflammatory disease, common among older persons, characterized by recurrent episodes of muscle pain and stiffness, sometimes leading to cardiovascular complications or blindness.
  • public housing project — a group of homes for poorer families which is funded and controlled by the local government
  • public service vehicle — a bus or coach
  • quantitative character — a character or trait that is transmitted by quantitative inheritance.
  • quantum chromodynamics — a quantum field theory that describes quarks and gluons and their interactions, with the color of the quarks playing a role analogous to that of electric charge. Abbreviation: QCD. Also called chromodynamics. Compare color (def 18).
  • quarter inch cartridge — (storage)   /kwik/ (QIC) a type of magnetic tape and tape drive. Development standards for QIC make it possible for tapes written on one QIC drive to be read on another. QIC drives are made to work with different lengths of tape. The model number of the drive consists of QIC followed by a number which indicates the drives tape capacity in megabytes (MB).

On this page, we collect all 22-letter words with C-H-U-R-I. It’s easy to find right word with a certain length. It is the easiest way to find 22-letter word that contains in C-H-U-R-I to use in Scrabble or Crossword puzzles

Was this page helpful?
Yes No
Thank you for your feedback! Tell your friends about this page
Tell us why?