0%

21-letter words containing a, e, o

  • continental breakfast — A continental breakfast is breakfast that consists of food such as bread, butter, jam, and a hot drink. There is no cooked food.
  • continuous assessment — If pupils or students undergo continuous assessment, they get qualifications partly or entirely based on the work they do during the year, rather than on exam results.
  • continuous stationery — paper that is perforated between pages and folded concertina fashion, used in dot-matrix, line, and daisywheel printers
  • conventional medicine — the type of medicine that is generally used in the US and Europe which uses drugs and surgery as a form of treatment
  • conventional mortgage — A conventional mortgage is a fixed rate mortgage with a standard term of 15, 20, or 30 years.
  • convertible insurance — any form of life or health insurance, either individual or group, that enables the insured to change or convert the insurance to another form, as term to whole life insurance or group to individual health insurance.
  • conway's game of life — (simulation)   The first popular cellular automata based artificial life simulation. Life was invented by British mathematician John Horton Conway in 1970 and was first introduced publicly in "Scientific American" later that year. Conway first devised what he called "The Game of Life" and "ran" it using plates placed on floor tiles in his house. Because of he ran out of floor space and kept stepping on the plates, he later moved to doing it on paper or on a checkerboard and then moved to running Life as a computer program on a PDP-7. That first implementation of Life as a computer program was written by M. J. T. Guy and S. R. Bourne (the author of Unix's Bourne shell). Life uses a rectangular grid of binary (live or dead) cells each of which is updated at each step according to the previous state of its eight neighbours as follows: a live cell with less than two, or more than three, live neighbours dies. A dead cell with exactly three neighbours becomes alive. Other cells do not change. While the rules are fairly simple, the patterns that can arise are of a complexity resembling that of organic systems -- hence the name "Life". Many hackers pass through a stage of fascination with Life, and hackers at various places contributed heavily to the mathematical analysis of this game (most notably Bill Gosper at MIT, who even implemented Life in TECO!; see Gosperism). When a hacker mentions "life", he is more likely to mean this game than the magazine, the breakfast cereal, the 1950s-era board game or the human state of existence.
  • cooperative apartment — a block of flats belonging to a corporation in which shares are owned in proportion to the relative value of the flat occupied
  • cooperative-apartment — working or acting together willingly for a common purpose or benefit.
  • coordination language — (networking, protocol)   A language defined specifically to allow two or more parties (components) to communicate in order to accomplish some shared goal. Examples of coordination languages are Linda and Xerox's CLF (STITCH).
  • coquilles st. jacques — an appetizer of minced scallops in a wine and cream sauce topped with grated cheese and browned under a broiler: usually served in scallop shells.
  • cordillera occidental — the western coastal ranges of the Andes, in Peru and Colombia.
  • cornella de llobregat — a city in N Spain.
  • coronal mass ejection — a cloud of particles ejected from the sun's surface during a solar flare
  • corporate hospitality — Corporate hospitality is the entertainment that a company offers to its most valued clients, for example by inviting them to sporting events and providing them with food and drink.
  • correctional facility — A correctional facility is a prison or similar institution.
  • corrupt practices act — any of several U.S. statutes for ensuring the purity of elections by forbidding the purchase of votes, restricting the amount and source of political contributions, limiting campaign expenditures, and requiring the submission of an itemized statement of such expenditures.
  • cosmological argument — one of the arguments that purport to prove the existence of God from empirical facts about the universe, esp the argument to the existence of a first cause
  • cosmological redshift — the part of the redshift of celestial objects resulting from the expansion of the universe.
  • cost driver attribute — (programming)   Factors affecting the productivity of software development. These include attributes of the software, computers, personnel, and project.
  • cost-benefit analysis — an analysis that takes into account the costs of a project and its benefits to society, as well as the revenue it generates
  • cottony-cushion scale — a small scale insect, Icerya purchasi, that is a pest of citrus trees in California: it is controlled by introducing an Australian ladybird, Rodolia cardinalis, into affected areas
  • countably compact set — a set for which every cover consisting of a countable number of sets has a subcover consisting of a finite number of sets.
  • counter-revolutionary — Counter-revolutionary activities are activities intended to reverse the effects of a previous revolution.
  • counterdemonstrations — Plural form of counterdemonstration.
  • counterinterpretation — An interpretation that goes against another interpretation.
  • court of common pleas — (formerly) a superior court exercising jurisdiction in civil actions between private citizens
  • crankcase compression — Crankcase compression is the method of starting some smaller two-stroke engines, where the mixture charge is compressed in a sealed crankcase by the descending piston before passing to the combustion chamber.
  • criminal conversation — (formerly) a common law action brought by a husband by which he claimed damages against an adulterer
  • croscarmellose sodium — Croscarmellose sodium is a substance used in tablets and capsules as a disintegrant.
  • cross-cousin marriage — marriage between the children of a brother and sister.
  • crude oil dehydration — Crude oil dehydration is the removal of water or water vapor from crude oil, by separating the oil from the water, often in a rotating centrifuge.
  • customer satisfaction — When customers are pleased with the goods or services they have bought, you can refer to customer satisfaction.
  • cyclical unemployment — unemployment caused by fluctuations in the level of economic activity inherent in trade cycles
  • cyclomatic complexity — (programming, testing)   A measure of the number of linearly independent paths through a program module. Cyclomatic complexity is a measure for the complexity of code related to the number of ways there are to traverse a piece of code. This determines the minimum number of inputs you need to test all ways to execute the program.
  • dance to another tune — to alter one's actions or opinions as a result of changed conditions
  • darby and joan settee — a settee having a back resembling two chair backs.
  • dark-field microscope — ultramicroscope
  • darken someone's door — to visit someone
  • data set organization — (operating system, storage)   (DSORG) An IBM term for file structure. These include PS physical sequential, DA direct access, IS indexed sequential, PO partitioned (a library). This system dates from OS/360, and breaks down beginning with VSAM and VTAM, where it is no longer applied. Sequential and indexed data sets can be accessed using either a "basic" or a "queued" "access method." For example a DSORG=PS file can use either BSAM (basic sequential access method) or QSAM (queued sequential access method). It can also be processed as a direct file using BDAM. Likewise a library can be processed using BPAM (basic partitioned access method), BSAM, QSAM, or BDAM. DSORG and access method are somewhat, but not completely, orthogonal. The "basic" access method deals with physical blocks rather than records, and usually provides more control over the specific device. Each I/O operation using the "basic" access method reads or writes a single block. A "basic" read or write starts an asynchronous I/O operation, and the programmer is responsible for waiting for completion and checking for errors. The "queued" access method deals with logical records and provides blocking and deblocking services. It is "queued" because it provides read-ahead and write-behind services. While a program is processing records in one input block, for example, QSAM may be reading one or more blocks ahead. Queued "get" or "put" operations are synchronous as far as the programmer is concerned. The operation is complete when the next logical record has been successfully processed. EXCP (Execute Channel Program) is a lower-level method of accessing data. IBM manuals usually named "Data Administration Guide", e.g. SC26-4505-1 for MVS/ESA DFP 3.1, provide more detail about data set organizations and access methods.
  • dataflow architecture — a means of arranging computer data processing in which operations are governed by the data present and the processing it requires rather than by a prewritten program that awaits data to be processed
  • de-ontological ethics — the branch of ethics dealing with right action and the nature of duty, without regard to the goodness or value of motives or the desirability of the ends of any act.
  • dead from the neck up — stupid or unintelligent
  • decompression chamber — a chamber in which the pressure of air can be varied slowly for returning people from abnormal pressures to atmospheric pressure without inducing decompression sickness
  • defender of the faith — the title conferred upon Henry VIII by Pope Leo X in 1521 in recognition of the King's pamphlet attacking Luther's doctrines and retained by subsequent monarchs of England
  • degradation of energy — the principle that during any irreversible process the total energy available to do work decreases.
  • delusions of grandeur — If someone has delusions of grandeur, they think and behave as if they are much more important or powerful than they really are.
  • demand-pull inflation — inflation in which rising demand results in a rise in prices.
  • democratic centralism — the Leninist principle that policy should be decided centrally by officials, who are nominally democratically elected
  • dendrochronologically — By the use of, or with reference to dendrochronology.
Was this page helpful?
Yes No
Thank you for your feedback! Tell your friends about this page
Tell us why?