0%

19-letter words containing a, l, i, u, n

  • 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.
  • diamond-leaf laurel — a tree, Pittosporum rhombifolium, of Australia, having coarsely toothed, oval or diamond-shaped leaves and white flowers, widely planted as an ornamental in the southwestern U.S.
  • differential backup — (operating system)   A kind of backup that copies all files that have changed since the last full backup. Each differential backup will include all files in previous differential backups since the full backup so to restore a version of a file, you only need to search the full backup and the relevant differential backup. Some systems support differential backup by associating an "Archive" flag with each file and setting this flag whenever the file is modified to indicate that it should be included in the next backup. A differential backup does not change this flag, whereas an incremental backup resets it.
  • 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).
  • distillation column — a type of still fitted with interior baffles, used for fractional distillation. Compare still2 (def 1).
  • distinguishableness — The state or quality of being distinguishable.
  • duplicating machine — a duplicator, especially one for making identical copies of documents, letters, etc.
  • ecumenical movement — See under ecumenical (def 4).
  • educational adviser — a person who provides advice and training to teachers about teaching methods and educational policies
  • electrostatic units — the system of CGS electric and magnetic units that assigns the value of one to the dielectric constant of a vacuum
  • employment tribunal — (in England, Scotland, and Wales) a tribunal that rules on disputes between employers and employees regarding unfair dismissal, redundancy, etc
  • entry qualification — the qualifications and conditions required to join an organization, club, etc
  • environmental audit — the systematic examination of an organization's interaction with the environment, to assess the success of its conservation or antipollution programme
  • equal opportunities — Equal opportunities refers to the policy of giving everyone the same opportunities for employment, pay and promotion, without discriminating against particular groups.
  • equatorial mounting — an astronomical telescope mounting that allows motion of the telescope about two mutually perpendicular axes, one of which is parallel to the earth's axis
  • equatorial zenithal — a type of map projection in which part of the earth's surface is projected onto a plane tangential to it at the equator
  • euclidean algorithm — Euclid's Algorithm
  • european parliament — law: assembly in Strasbourg
  • evaluation strategy — reduction strategy
  • fahd ibn abdul aziz — 1923–2005, king of Saudi Arabia (1982–2005)
  • false consciousness — a Marxist theory that people are unable to see things, especially exploitation, oppression, and social relations, as they really are; the hypothesized inability of the human mind to develop a sophisticated awareness of how it is developed and shaped by circumstances.
  • fault tolerant unix — (operating system)   (FTX) Stratus's own Unix System V Release 4 multiprocessor operating system. In 2016, FTX is supported but no longer developed. FTX was one of three operating systems supplied by Stratus on their hardware, the other two, HP-UX and VOS, were the more common choices, FTX was only sold on an exceptional basis. Early FTX 3.x releases used an in-house virtual disk layer (VDL) driver, but later releases switched to a version of Veritas VxVM. FTX supported many of the proprietary communications boards (ISDN, serial, parallel, X.25, etc.).
  • fault tree analysis — (programming)   A form of safety analysis that assesses hardware safety to provide failure statistics and sensitivity analyses that indicate the possible effect of critical failures.
  • fault-based testing — (testing)   Software testing using test data designed to demonstrate the absence of a set of pre-specified faults; typically, frequently occurring faults. For example, to demonstrate that the software handles or avoids divide by zero correctly, the test data would include zero.
  • february revolution — Russian Revolution (def 1).
  • february-revolution — Also called February Revolution. the uprising in Russia in March, 1917 (February Old Style), in which the Czarist government collapsed and a provisional government was established.
  • female circumcision — clitoridectomy.
  • figurative language — language that contains or uses figures of speech, especially metaphors.
  • financial ombudsman — any of five British ombudsmen: the Banking Ombudsman, set up in 1986 to investigate complaints from bank customers; the Building Society Ombudsman, set up in 1987 to investigate complaints from building society customers; the Insurance Ombudsman, set up in 1981 to investigate complaints by policyholders (since 1988 this ombudsman has also operated a Unit Trust Ombudsman scheme); the Investment Ombudsman set up in 1989 to investigate complaints by investors (the Personal Investment Authority Ombudsman is responsible for investigating complaints by personal investors); and the Pensions Ombudsman, set up in 1993 to investigate complaints regarding pension schemes
  • first person plural — a grammatical category of pronouns and verbs used by the speaker to refer to or talk about himself together with others
  • 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.
  • floating restaurant — a boat or ship that has been converted for use as a restaurant
  • floating-point unit — (hardware)   (FPU) A floating-point accelerator, usually in a single integrated circuit, possible on the same IC as the central processing unit.
  • fractional currency — coins or paper money of a smaller denomination than the basic monetary unit.
  • fraternal insurance — insurance underwritten by a fraternal society, under either a legal reserve plan or an assessment plan.
  • free alongside quay — (of a shipment of goods) delivered to the quay without charge to the buyer
  • functional analysis — the branch of mathematics that deals with the theory of vector spaces and linear functionals.
  • functional calculus — the branch of symbolic logic that includes the sentential calculus and that deals with sentential functions and quantifiers and with logical relations between sentences containing quantifiers.
  • functional currency — Functional currency is the main currency used by a business.
  • 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 language — (language)   A language that supports and encourages functional programming.
  • functional medicine — individualized medical care that recognizes the interactions between genetic and environmental factors and between the body's interconnected systems.
  • gallipoli peninsula — peninsula in S European Turkey, forming the NW shore of the Dardanelles: c. 55 mi (89 km) long
  • gastrocolic omentum — the peritoneal fold attached to the stomach and the colon and hanging over the small intestine.
  • general linguistics — the study of the characteristics of language in general rather than of a particular language; theoretical, rather than applied, linguistics.
  • giraldus cambrensis — literary name of Gerald de Barri. ?1146–?1223, Welsh chronicler and churchman, noted for his accounts of his travels in Ireland and Wales
Was this page helpful?
Yes No
Thank you for your feedback! Tell your friends about this page
Tell us why?