0%

19-letter words containing t, a, i, l, e, d

  • a multitude of sins — If you say that something covers or hides a multitude of sins, you mean that it hides something unattractive or does not reveal the true nature of something.
  • absolute impediment — a fact or circumstance that disqualifies a person from lawful marriage.
  • 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.
  • aerial top dressing — the process of spreading lime, fertilizer, etc over farmland from an aeroplane
  • aladdin enterprises — (company)   A small, privately owned, US software consulting and development company, founded in 1986, best known as the original developer of Ghostscript. Address: San Francisco Peninsula, California, USA. Not to be confused with Aladdin Systems, Inc..
  • 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).
  • anti-fundamentalism — (sometimes initial capital letter) a religious movement characterized by a strict belief in the literal interpretation of religious texts, especially within American Protestantism and Islam.
  • anti-fundamentalist — (sometimes initial capital letter) a religious movement characterized by a strict belief in the literal interpretation of religious texts, especially within American Protestantism and Islam.
  • antimony trisulfide — a black or orange-red crystalline compound, Sb2S3, used as a pigment, in pyrotechnics and matches, for fireproofing fabrics and paper, etc.
  • 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
  • as old as the hills — very old
  • bacillary dysentery — shigellosis.
  • backward compatible — backward compatibility
  • 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.
  • be liable to do sth — When something is liable to happen, it is very likely to happen.
  • 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.
  • 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-breasted quail — a small, brightly colored quail, Coturnix chinensis, of southern Asia and Australia, widely kept as a cage bird.
  • blue-tongued lizard — a large Australian lizard, Tiliqua scincoides, characterized by having a cobalt-blue tongue.
  • 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.
  • brush-tailed possum — any of several widely-distributed Australian possums of the genus Trichosurus
  • 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
  • capital expenditure — expenditure on acquisitions of or improvements to fixed assets
  • 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.
  • 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
  • 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.
  • 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.
  • 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.
  • compact disc player — a machine for playing compact discs
  • compact disk player — a device for playing compact disks.
  • confidence interval — an interval of values bounded by confidence limits within which the true value of a population parameter is stated to lie with a specified probability
  • consolidated school — a public school attended by pupils from several adjoining, esp. rural, districts
  • consultation period — a period during which consultations are held before a policy decision is made
  • contemplative order — a religious order whose members are devoted to prayer rather than works.
  • contradistinctively — In contradistinction.

On this page, we collect all 19-letter words with T-A-I-L-E-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 T-A-I-L-E-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?