0%

19-letter words containing e, l, c, t, d

  • accelerated program — a course of study which allows students to progress through their education more quickly than usual
  • acknowledgment slip — a piece of paper that you sign as proof of having received a letter, parcel, payment, etc
  • acoustic theodolite — an acoustic device that records a continuous vertical profile of ocean currents at a particular site.
  • advanced revelation — (database)   (AREV) A database development environment for personal computers available from Revelation Software since 1982. Originally based on the PICK operating system, there are over one million users worldwide in 1996.
  • affordable care act — a federal law providing for a fundamental reform of the U.S. healthcare and health insurance system, signed by President Barack Obama in 2010: formally called Affordable Care Act or Patient Protection and Affordable Care Act.
  • alexander technique — a technique for developing awareness of one's posture and movement in order to improve it
  • algebraic data type — (programming)   (Or "sum of products type") In functional programming, new types can be defined, each of which has one or more constructors. Such a type is known as an algebraic data type. E.g. in Haskell we can define a new type, "Tree": data Tree = Empty | Leaf Int | Node Tree Tree with constructors "Empty", "Leaf" and "Node". The constructors can be used much like functions in that they can be (partially) applied to arguments of the appropriate type. For example, the Leaf constructor has the functional type Int -> Tree. A constructor application cannot be reduced (evaluated) like a function application though since it is already in normal form. Functions which operate on algebraic data types can be defined using pattern matching: depth :: Tree -> Int depth Empty = 0 depth (Leaf n) = 1 depth (Node l r) = 1 + max (depth l) (depth r) The most common algebraic data type is the list which has constructors Nil and Cons, written in Haskell using the special syntax "[]" for Nil and infix ":" for Cons. Special cases of algebraic types are product types (only one constructor) and enumeration types (many constructors with no arguments). Algebraic types are one kind of constructed type (i.e. a type formed by combining other types). An algebraic data type may also be an abstract data type (ADT) if it is exported from a module without its constructors. Objects of such a type can only be manipulated using functions defined in the same module as the type itself. In set theory the equivalent of an algebraic data type is a discriminated union - a set whose elements consist of a tag (equivalent to a constructor) and an object of a type corresponding to the tag (equivalent to the constructor arguments).
  • applied linguistics — linguistic theory as applied to such fields as lexicography, psychology, the teaching of reading, the creation of orthographies, and especially language teaching.
  • aqueduct of sylvius — a canal in the midbrain, connecting the third and fourth ventricles of the brain.
  • arsenic trichloride — a colorless or yellow, oily, poisonous liquid, AsCl 3 , used chiefly as an intermediate in the manufacture of organic arsenicals.
  • articulated vehicle — a large vehicle (esp a lorry) made in two separate sections, a tractor and a trailer, connected by a pivoted bar
  • artificial additive — artificial flavouring, colouring or preservatives
  • bacillary dysentery — shigellosis.
  • backward compatible — backward compatibility
  • backward somersault — a somersault performed in a backward direction with the legs leading the rest of the body
  • balfour declaration — the statement made by Arthur Balfour in 1917 of British support for the setting up of a national home for the Jews in Palestine, provided that the rights of "existing non-Jewish communities" in Palestine could be safeguarded
  • baudotbetical order — (algorithm)   /baw do bet' i k*l/ Sorted into an order where numerics and special characters are intermixed by sorting a 5-bit Baudot code file ignoring the numeric shift and unshift codes.
  • benedict's solution — a chemical solution used to detect the presence of glucose and other reducing sugars. Medically, it is used to test the urine of diabetics
  • benzylidene acetone — a colorless, crystalline, water-insoluble solid, C 10 H 10 O, having a vanillalike odor, used chiefly as a scent in the manufacture of perfume.
  • bilingual education — schooling in which those not fluent in the standard or national language are taught in their own language.
  • bismuth oxychloride — a white, crystalline, water-insoluble powder, BiOCl, used chiefly in the manufacture of pigments, face powders, and artificial pearls.
  • black-footed ferret — a musteline mammal, Mustela nigripes, of W North America, closely related to the weasels
  • black-tailed godwit — a large wading bird with a very long beak, Limosa limosa, found in W and Central Europe, Africa, Asia, and Australasia
  • blue-ringed octopus — a highly venomous octopus, Octopus maculosus, of E Australia which exhibits blue bands on its tentacles when disturbed
  • boat-tailed grackle — a large grackle, Quiscalus major, of the southeastern U.S., that folds its tail into a shape resembling the keel of a boat.
  • born out of wedlock — born when one's parents are not legally married
  • cable-stayed bridge — a type of suspension bridge in which the supporting cables are connected directly to the bridge deck without the use of suspenders
  • cannot very well do — If you say that you cannot very well do something, you mean that it would not be right or possible to do it.
  • capital expenditure — expenditure on acquisitions of or improvements to fixed assets
  • castelnuovo-tedesco — Mario [mah-ryaw] /ˈmɑ ryɔ/ (Show IPA), 1895–1968, U.S. composer, born in Italy.
  • cathodoluminescence — luminescence caused by irradiation with electrons (cathode rays)
  • celestial longitude — the angular distance measured eastwards from the vernal equinox to the intersection of the ecliptic with the great circle passing through a celestial body and the poles of the ecliptic
  • chandrasekhar limit — the upper limit to the mass of a white dwarf, equal to 1.44 solar masses. A star having a mass above this limit will continue to collapse to form a neutron star
  • chartered librarian — (in Britain) a librarian who has obtained a qualification from the Library Association in addition to a degree or diploma in librarianship
  • choledocholithiasis — The presence of gallstones in the common bile duct.
  • choledocholithotomy — The removal of the gallstone from the bile duct in a case of choledocholithiasis.
  • circular definition — a definition in which the definiendum (the expression being defined) or a variant of it appears in the definiens (the expression that defines it).
  • circulating decimal — repeating decimal
  • clandestine entrant — a person who hides in or on a vehicle as it enters the United Kingdom with the aim of avoiding immigration controls
  • client-server model — client-server
  • cloakroom attendant — a person whose job is to check coats and other personal items for visitors to a place
  • cobaltous hydroxide — a rose-red, amorphous, water-insoluble powder, Co 2 O 3 ⋅3H 2 O, used chiefly in the preparation of cobalt salts and in the manufacture of paint and varnish driers.
  • cobol-1961 extended — (language)   A short-lived separation of COBOL specifications.
  • collect on delivery — payment in cash when a purchase or shipment is delivered
  • collector electrode — See under Klystron.
  • collision detection — (networking)   A class of methods for sharing a data transmission medium in which hosts transmit as soon as they have data to send and then check to see whether their transmission has suffered a collision with another host's. If a collision is detected then the data must be resent. The resending algorithm should try to minimise the chance that two hosts's data will repeatedly collide. For example, the CSMA/CD protocol used on Ethernet specifies that they should then wait for a random time before re-transmitting. See also backoff. This contrasts with slotted protocols and token passing.
  • colorado tick fever — a usually mild viral disease occurring in the Rocky Mountain regions of the United States, carried by a tick, Dermacentor andersoni, and characterized by fever, sensitivity to light, headache, and leg and back pain.
  • come into the world — to be born
  • command line option — (software)   (Or "option", "flag", "switch", "option switch") An argument to a command that modifies its function rather than providing data. Options generally start with "-" in Unix or "/" in MS-DOS. This is usually followed by a single letter or occasionally a digit. More recently, GNU software adopted the --longoptionname style, usually in addition to traditional, single-character, -x style equivalents. Some commands require each option to be a separate argument, introduced by a new "-" or "/", others allow multiple option letters to be concatenated into a single argument with a single "-" or "/", e.g. "ls -al". A few Unix commands (e.g. ar, tar) allow the "-" to be omitted. Some options may or must be followed by a value, e.g. "cc prog.c -o prog", sometimes with and sometimes without an intervening space.
  • common object model — Component Object Model

On this page, we collect all 19-letter words with E-L-C-T-D. It’s easy to find right word with a certain length. It is the easiest way to find 19-letter word that contains in E-L-C-T-D 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?