0%

19-letter words containing u, d, o, n, t

  • counterconditioning — the conditioning of a response that is incompatible with some previously learned response; for example, in psychotherapy an anxious person might be taught relaxation, which is incompatible with anxiety
  • counterdemonstrator — Someone who demonstrates in opposition to another demonstration that is happening nearby at the same time.
  • counterpoise bridge — another name for bascule bridge
  • counterproductively — In a counterproductive way.
  • countervailing duty — an extra import duty imposed by a country on certain imports, esp to prevent dumping or to counteract subsidies in the exporting country
  • country and western — Country and western is the same as country music.
  • country-and-western — country music.
  • court correspondent — (in Britain) a journalist who covers stories about the royal family
  • customs declaration — a form declaring the nature and value of goods, etc, for customs purposes
  • de broglie equation — the postulate of wave mechanics that a particle of mass m moving at a velocity v will have the properties of a wave of wavelength h / mv (de Broglie wavelength) where h is Planck's constant.
  • decontextualization — to remove (a linguistic element, an action, etc.) from a context: decontextualized works of art displayed in museums.
  • deindustrialisation — Alternative spelling of deindustrialization.
  • deindustrialization — the decline in importance of manufacturing industry in the economy of a nation or area
  • deinstitutionalized — Simple past tense and past participle of deinstitutionalize.
  • deoxyribonucleotide — an ester of a deoxyribonucleoside and phosphoric acid; a constituent of DNA.
  • dereliction of duty — Dereliction of duty is deliberate or accidental failure to do what you should do as part of your job.
  • difference equation — (mathematics)   A relation between consecutive elements of a sequence. The first difference is D u(n) = u(n+1) - u(n) where u(n) is the nth element of sequence u. The second difference is u(n+2) + a u(n+1) + b u(n) = 0 can be converted to a difference equation (in this case, a second order linear difference equation): D2 u(n) + p D u(n) + q u(n) = 0 and vice versa. a, b, p, q are constants.
  • diplomatic immunity — exemption from taxation, searches, arrest, etc., enjoyed by diplomatic officials and their dependent families under international law, and usually on a reciprocal basis.
  • directional coupler — (communications)   (tap) A passive device used in cable systems to divide and combine radio frequency signals. A directional coupler has at least three ports: line in, line out, and the tap. The signal passes between line in and line out ports with loss referred to as the insertion loss. A small portion of the signal power applied to the line in port passes to the tap port. A signal applied to the tap port is passed to the line in port less the tap attenuation value. The tap signals are isolated from the line out port to prevent reflections. A signal applied to the line out port passes to the line in port and is isolated from the tap port. Some devices provide more than one tap output line (multi-taps).
  • directory enquiries — Directory enquiries is a service which you can telephone to find out someone's telephone number.
  • disadvantageousness — The state or quality of being disadvantageous.
  • disambiguation page — a page on a website that lists various websites or web pages that have or could have the same title. The user is able to select from the list that page, site etc that he or she actually wants
  • discretionary trust — a trust in which the beneficiaries' shares are not fixed in the trust deed but are left to the discretion of other persons, often the trustees
  • discriminated union — (theory)   The discriminated union of two sets A and B is A + B = {(inA, a) | a in A} U {(inB, b)| b in B} where inA and inB are arbitrary tags which specify which summand an element originates from. A type (especially an algebraic data type) might be described as a discriminated union if it is a sum type whose objects consist of a tag to say which part of the union they belong to and a value of the corresponding type.
  • discussion document — a document that puts forward some ideas or opinions that might form the basis of a discussion of a particular topic
  • disjunctive pronoun — an inflection of pronouns in some languages that is used alone or after a preposition, such as moi in French
  • distillation column — a type of still fitted with interior baffles, used for fractional distillation. Compare still2 (def 1).
  • distribution system — The distribution system is the part of an electric system after the transmission system that is dedicated to delivering electric energy to an end user.
  • do not disturb sign — A do not disturb sign is a sign that a guest in a hotel hangs outside their room to tell other people not to knock the door or enter.
  • domain architecture — (systems analysis)   A generic, organisational structure or design for software systems in a domain. The domain architecture contains the designs that are intended to satisfy requirements specified in the domain model. A domain architecture can be adapted to create designs for software systems within a domain and also provides a framework for configuring assets within individual software systems.
  • don't make me laugh — Some people reply to other people's comments or opinions by saying 'Don't make me laugh' when they disagree with them and think they are foolish or inaccurate.
  • double counterpoint — invertible counterpoint using two transposable voices.
  • double-density disk — a disk with more than the normal capacity for storage
  • draw the curtain on — to end
  • east dunbartonshire — a council area of central Scotland to the N of Glasgow: part of Strathclyde region from 1975 until 1996: mainly agricultural and residential. Administrative centre: Kirkintilloch. Pop: 106 970 (2003 est). Area: 172 sq km (66 sq miles)
  • education committee — a committee that discusses the education of children in a particular local authority
  • educational adviser — a person who provides advice and training to teachers about teaching methods and educational policies
  • electroconductivity — Electrical conductivity.
  • end-to-end solution — (jargon)   (E2ES) A term that suggests that the supplier of an application program or system will provide all the hardware and/or software components and resouces to meet the customer's requirement and no other supplier need be involved. Compare: turn-key solution.
  • endowment assurance — a form of life insurance that provides for the payment of a specified sum directly to the policyholder at a designated date or to his beneficiary should he die before this date
  • endowment insurance — Endowment insurance is a type of life insurance that pays a particular sum directly to the policyholder at a stated date, or to a beneficiary if the policyholder dies before this date.
  • environmental audit — the systematic examination of an organization's interaction with the environment, to assess the success of its conservation or antipollution programme
  • euclidean algorithm — Euclid's Algorithm
  • floating foundation — a foundation used in yielding soil, having for its footing a raft tending to displace a weight greater than that of the building.
  • for crying out loud — exasperation
  • foundation subjects — the subjects studied as part of the National Curriculum, including the compulsory core subjects
  • friend of the court — amicus curiae.
  • functional database — (database, language)   A database which uses a functional language as its query language. Databases would seem to be an inappropriate application for functional languages since, a purely functional language would have to return a new copy of the entire database every time (part of) it was updated. To be practically scalable, the update mechanism must clearly be destructive rather than functional; however it is quite feasible for the query language to be purely functional so long as the database is considered as an argument. One approach to the update problem would use a monad to encapsulate database access and ensure it was single threaded. Alternative approaches have been suggested by Trinder, who suggests non-destructive updating with shared data structures, and Sutton who uses a variant of a Phil Wadler's linear type system. There are two main classes of functional database languages. The first is based upon Backus' FP language, of which FQL is probably the best known example. Adaplan is a more recent language which falls into this category. More recently, people have been working on languages which are syntactically very similar to modern functional programming languages, but which also provide all of the features of a database language, e.g. bulk data structures which can be incrementally updated, type systems which can be incrementally updated, and all data persisting in a database. Examples are PFL [Poulovassilis&Small, VLDB-91], and Machiavelli [Ohori et al, ACM SIGMOD Conference, 1998].
  • functional medicine — individualized medical care that recognizes the interactions between genetic and environmental factors and between the body's interconnected systems.
  • get one's dander up — to become or to cause someone to become annoyed or angry
Was this page helpful?
Yes No
Thank you for your feedback! Tell your friends about this page
Tell us why?