0%

21-letter words containing a, l, m, d

  • redevelopment company — a private corporation or a public agency that stimulates the improvement of land, as through a building project subject to certain designs and controls, by financing, selling, or leasing such real estate to interested buyers or lessees.
  • relational data model — (database)   (Or "relational model") A data model introduced by E.F. Codd in 1970, particularly well suited for business data management. In this model, data are organised in tables. The set of names of the columns is called the "schema" of the table. Here is an example table with the schema (account number, amount) and 3 lines. account number amount -------------- --------- 12343243546456 +30000.00 23149875245824 +2345.33 18479827492874 -123.25 The data can be manipulated using a relational algebra. SQL is a standard language for talking to a database built on the relational model (a "relational database").
  • remote procedure call — (networking, programming)   (RPC) A protocol which allows a program running on one host to cause code to be executed on another host without the programmer needing to explicitly code for this. RPC is an easy and popular paradigm for implementing the client-server model of distributed computing. An RPC is initiated by the caller (client) sending request message to a remote system (the server) to execute a certain procedure using arguments supplied. A result message is returned to the caller. There are many variations and subtleties in various implementations, resulting in a variety of different (incompatible) RPC protocols.
  • residual unemployment — the unemployment that remains in periods of full employment, as a result of those mentally, physically, or emotionally unfit to work
  • sampling distribution — the distribution of a statistic based on all possible random samples that can be drawn from a given population.
  • sealed-beam headlight — a headlight in which the reflector and lens are hermetically sealed together with the filament in a single unit.
  • semantic differential — a technique for measuring the connotative meaning of concepts by having an individual rate each concept on a series of graduated scales, each scale defined by a pair of polar adjectives, as good–bad or strong–weak.
  • seven-segment display — (electronics)   (SSD) A kind of display element consisting of seven independently controllable lines arranged as a rectangular figure eight. A seven-segment display is the simplest device that can display any of the digits zero to nine (and some other characters) by lighting different combinations of lines. They are often seen in electronic calculators or measuring equipment.
  • sierra madre oriental — the system of mountains in the east of Mexico
  • sir william alexander — Sir William (Alexander) 1867–1957, Scottish lexicographer and philologist.
  • slatwall merchandiser — A slatwall merchandiser is a three-dimensional display unit with grooves cut into its surface into which metal hanging rails can be fixed at various heights.
  • social administration — the administration and maintenance of issues to do with social policies and welfare
  • sodium metabisulphite — an inorganic compound with the chemical formula Na2S2O5 that is used as a preservative, antioxidant and disinfectant
  • stem-and-leaf diagram — a histogram in which the data points falling within each class interval are listed in order
  • stock list department — (in an American stock exchange) the department dealing with monitoring compliance with its listing requirements and rules
  • submerged arc welding — a type of heavy electric-arc welding using mechanically fed bare wire with the arc submerged in powdered flux to keep out oxygen
  • the moral high ground — If you say that someone has taken the moral high ground, you mean that they consider that their policies and actions are morally superior to the policies and actions of their rivals.
  • the women's land army — a unit of women recruited to do agricultural work in the United Kingdom during World War I and World War II
  • thermal decomposition — Thermal decomposition is the process in which a chemical species breaks down when its temperature is increased.
  • to kill a mockingbird — a novel (1960) by Harper Lee.
  • to live hand to mouth — If someone lives hand to mouth or lives from hand to mouth, they have hardly enough food or money to live on.
  • to risk life and limb — If someone risks life and limb, they do something very dangerous that may cause them to die or be seriously injured.
  • tool command language — (language)   /tik*l/ (Tcl) An interpreted string processing language for issuing commands to interactive programs, developed by John Ousterhout at UCB. Each application program can extend tcl with its own set of commands. Tcl is like a text-oriented Lisp, but lets you write algebraic expressions for simplicity and to avoid scaring people away. Though originally designed to be a "scripting language" rather than for serious programming, Tcl has been used successfully for programs with hundreds of thousands of lines. It has a peculiar but simple syntax. It may be used as an embedded interpreter in application programs. It has exceptions and packages (called libraries), name-spaces for procedures and variables, and provide/require. It supports dynamic loading of object code. It is eight-bit clean. It has only three variable types: strings, lists and associative arrays but no structures. Tcl and its associated GUI toolkit, Tk run on all flavors of Unix, Microsoft Windows, Macintosh and VMS. Tcl runs on the Amiga and many other platforms. See also expect (control interactive programs and pattern match on their output), Cygnus Tcl Tools, [incr Tcl] (adds classes and inheritence to Tcl), Scriptics (John Ousterhout's company that is the home of Tcl development and the TclPro tool suite), Tcl Consortium (a non-profit agency dedicated to promoting Tcl), tclhttpd (an embeddable Tcl-based web server), tclx (adds many commands to Tcl), tcl-debug.
  • transactinide element — any element having an atomic number higher than 103, the last of the actinide series. These superheavy, radioactive elements are extremely short-lived, and can only be created in the laboratory.
  • transcendental number — a number that is not a root of any algebraic equation having integral coefficients, as π or e .
  • ulm's modula-2 system — (language)   A Modula-2 compiler, library and tools by Andreas Borchert <[email protected]>. The compiler is derived from the ETHZ compiler for the Lilith system. Version 2.2.1 conforms to PIM3. It requires gas version 1.36 (to be found in the same directory). Commercial use requires a licence. It runs on Sun-3, Nixdorf Targon/31, Concurrent 3200 Series.
  • universal disk format — (storage, standard)   (UDF) A CD-ROM file system standard that is required for DVD ROMs. UDF is the OSTA's replacement for the ISO 9660 file system used on CD-ROMs, but will be mostly used on DVD. DVD multimedia disks use UDF to contain MPEG audio and video streams. To read DVDs you need a DVD drive, the kernel driver for the drive, MPEG video support, and a UDF driver. DVDs containing both UDF filesystems and ISO 9660 filesystems can be read without UDF support. UDF can also be used by CD-R and CD-RW recorders in packet writing mode.
  • vladivostok agreement — a preliminary arms control accord concluded by Soviet leader Leonid Brezhnev and U.S. President Gerald Ford in Vladivostok, U.S.S.R., in December 1974.
  • weak head normal form — (reduction, theory)   (WHNF) A lambda expression is in weak head normal form (WHNF) if it is a head normal form (HNF) or any lambda abstraction. I.e. the top level is not a redex. The term was coined by Simon Peyton Jones to make explicit the difference between head normal form (HNF) and what graph reduction systems produce in practice. A lambda abstraction with a reducible body, e.g. \ x . ((\ y . y+x) 2) is in WHNF but not HNF. To reduce this expression to HNF would require reduction of the lambda body: (\ y . y+x) 2 --> 2+x Reduction to WHNF avoids the name capture problem with its need for alpha conversion of an inner lambda abstraction and so is preferred in practical graph reduction systems. The same principle is often used in strict languages such as Scheme to provide call-by-name evaluation by wrapping an expression in a lambda abstraction with no arguments: D = delay E = \ () . E The value of the expression is obtained by applying it to the empty argument list:
  • yellow-rumped warbler — a common North American wood warbler, Dendroica coronata, having yellow spots on the rump, crown, and sides, including a white-throated eastern subspecies (myrtle warbler) and a yellow-throated western subspecies (Audubon's warbler)
Was this page helpful?
Yes No
Thank you for your feedback! Tell your friends about this page
Tell us why?