0%

19-letter words containing a, b, c, t, i

  • a creature of habit — If you say that someone is a creature of habit, you mean that they usually do the same thing at the same time each day, rather than doing new and different things.
  • a mountain to climb — If you say that someone has a mountain to climb, you mean that it will be difficult for them to achieve what they want to achieve.
  • absorption spectrum — the characteristic pattern of dark lines or bands that occurs when electromagnetic radiation is passed through an absorbing medium into a spectroscope. An equivalent pattern occurs as coloured lines or bands in the emission spectrum of that medium
  • abstinence syndrome — the withdrawal symptoms that occur after abstinence from a drug, especially a narcotic, to which one is addicted.
  • abstracting journal — a periodical consisting mainly or entirely of abstracts of current works.
  • abstracting service — a service that provides abstracts of publications on a subject or group of related subjects, usually on a subscription basis.
  • accounts receivable — A company's accounts receivable are all the money that it is owed by other companies for goods or services that it has supplied, or a list of these companies and the amounts that they owe.
  • adobe systems, inc. — (company)   A California font foundry and software house. Adobe created the PostScript page description language and wrote the Blue Book, Green Book, Red Book and White Book on it. They also developed PDF. Adobe took over Frame Technology Corporation in late 1995/early 1996. E-mail: <[email protected]>. Address: Silicon Valley, California, USA.
  • 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).
  • algebraic extension — a field containing a given field such that every element in the first field is algebraic over the given field.
  • algebraic operation — any of the mathematical operations of addition, subtraction, multiplication, division, raising to a power, or extraction of a root.
  • algebraic structure — (mathematics)   Any formal mathematical system consisting of a set of objects and operations on those objects. Examples are Boolean algebra, numerical algebra, set algebra and matrix algebra.
  • alphabetic language — (human language)   A written human language in which symbols reflect the pronunciation of the words. Examples are English, Greek, Russian, Thai, Arabic and Hebrew. Alphabetic languages contrast with ideographic languages.
  • anaerobic digestion — the conversion of biodegradable waste matter into compost in the absence of oxygen
  • anatomical snuffbox — the triangular depression on the back of the hand between the thumb and the index finger
  • anno urbis conditae — in a (specified) year from the founding of the city: the ancient Romans reckoned dates from Rome's founding, c. 753 b.c.
  • anticipatory breach — a declaration by one party to a contract that it does not intend to fulfil its obligations to the second party, who can then accept this declaration and choose not to be bound by the contract
  • arbitration service — a service which provides an impartial referee to settle disputes
  • arecibo observatory — an observatory in Puerto Rico at which the world's largest dish radio telescope (diameter 305 m) is situated. It is operated by the National Astronomy and Ionosphere Center
  • artificial climbing — the sport of climbing an artificially constructed, rocklike wall by means of footholds and handholds and, typically, a belaying device.
  • at bus architecture — Industry Standard Architecture
  • at sb's convenience — If something is arranged to happen at your convenience, it happens at a time which is most suitable for you.
  • atmospheric braking — a technique of reentry in which the vehicle is maneuvered in the upper atmosphere so as to lose velocity by utilizing drag without overheating.
  • bacillary dysentery — shigellosis.
  • backward compatible — backward compatibility
  • bacteriochlorophyll — a pale blue-gray form of chlorophyll that is unique to the photosynthetic but anaerobic purple bacteria.
  • 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
  • ballistocardiograph — an instrument that records the slight recoil of the body, while on a special bed, caused by the contractions of the heart: used to measure cardiac pumping power and the elasticity of the aorta
  • bank reconciliation — A bank reconciliation is the process of adjusting a bank statement to show transactions that have occurred since the date of issue, or a document showing this.
  • bankruptcy petition — an official request for protection under bankruptcy laws, which initiates bankruptcy proceedings
  • barometric gradient — pressure gradient
  • barometric pressure — atmospheric pressure as indicated by a barometer
  • basic object system — (programming)   (BOS) A C-callable library that implements the notion of object and which uses Tcl as its interpreter for interpreted methods (you can have "compiled" methods in C, and mix compiled and interpreted methods in the same object, plus lots more). You can subclass and mix in existing objects using BOS to extend, among other things, the set of tk widgets. BOS is a class-free object system, also called a prototype-based object system; it is modelled loosely on the Self system from Stanford University. Version 1.31 by Sean Levy <[email protected]>.
  • batterie de cuisine — cooking utensils collectively; pots and pans, etc
  • 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 burnt to a crisp — If something is burnt to a crisp, it is completely burnt.
  • behavioral genetics — an interdisciplinary field studying the effects of genetics and hereditary factors on animal and human behavior.
  • belgian east africa — a former Belgian trust territory in Africa, also (1924–62) Ruanda-Urundi, now the independent countries of Rwanda and Burundi.
  • benefit performance — a theatrical or musical performance in aid of charity
  • 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.
  • betamethyl acrolein — crotonaldehyde.
  • bicarbonate of soda — Bicarbonate of soda is a white powder which is used in baking to make cakes rise, and also as a medicine for your stomach.
  • bilingual education — schooling in which those not fluent in the standard or national language are taught in their own language.
  • bill of particulars — an itemized statement of claims or counterclaims provided to the opposing party of a lawsuit
  • binary large object — (database)   (BLOB) A large block of data stored in a database, such as an image or sound file. A BLOB has no structure which can be interpreted by the database management system but is known only by its size and location.
  • binocular disparity — the small differences in the positions of the parts of the images falling on each eye that results when each eye views the scene from a slightly different position; these differences make stereoscopic vision possible
  • black-tailed godwit — a large wading bird with a very long beak, Limosa limosa, found in W and Central Europe, Africa, Asia, and Australasia
  • board certification — the process of certifying that a physician has passed an examination and met the standards of a professional organization representing a particular medical specialty.
  • 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.
  • bracket abstraction — (compiler)   An algorithm which turns a term into a function of some variable. The result of using bracket abstraction on T with respect to variable v, written as [v]T, is a term containing no occurrences of v and denoting a function f such that f v = T. This defines the function f = (\ v . T). Using bracket abstraction and currying we can define a language without bound variables in which the only operation is monadic function application. See combinator.

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