0%

25-letter words containing s, p, l, a, t, e

  • accelerated graphics port — (hardware, graphics)   (AGP) A bus specification by Intel which gives low-cost 3D graphics cards faster access to main memory on personal computers than the usual PCI bus. AGP dynamically allocates the PC's normal RAM to store the screen image and to support texture mapping, z-buffering and alpha blending. Intel has built AGP into a chipset for its Pentium II microprocessor. AGP cards are slightly longer than a PCI card. AGP operates at 66 MHz, doubled to 133 MHz, compared with PCI's 33 Mhz. AGP allows for efficient use of frame buffer memory, thereby helping 2D graphics performance as well. AGP provides a coherent memory management design which allows scattered data in system memory to be read in rapid bursts. AGP reduces the overall cost of creating high-end graphics subsystems by using existing system memory.
  • allied health professions — any of a wide range of professions related to healthcare other than nursing and medicine, for example physiotherapy, dietetics or radiography
  • alligator snapping turtle — a large American snapping turtle, Macroclemys temmincki, having three prominent ridges on its shell and a wormlike process on the floor of the mouth used to attract prey.
  • alpha-particle scattering — Rutherford scattering.
  • arm's-length relationship — a relationship lacking intimacy or friendliness, esp when possessing some special connection, such as previous closeness
  • as people (or things) go — in comparison with how other people (or things) are
  • association of lisp users — (body)   (ALU) A user group which aims to promote Lisp, help inform and educate Lisp users in general, and help represent Lisp users as a group to the vendors. The ALU holds an annual conference and supports the formation of inter-vendor standards. ALU has international membership and is incorporated in the US. Mailing list: <[email protected]>.
  • at the top of one's lungs — in one's loudest voice; yelling
  • australopithecus robustus — an extinct species of large-toothed bipedal hominid that lived in southern Africa c1.5–2 million years ago: formerly classified as the genus Paranthropus.
  • characteristic polynomial — an expression obtained from a given matrix by taking the determinant of the difference between the matrix and an arbitrary variable times the identity matrix.
  • chief of naval operations — the highest officer in the U.S. Navy and a member of the Joint Chiefs of Staff.
  • command control processor — (operating system)   (CCP) CP/M's command-line interpreter.
  • computer-aided publishing — desktop publishing. Abbreviation: CAP.
  • constant applicative form — (functional programming)   (CAF) A supercombinator which is not a lambda abstraction. This includes truly constant expressions such as 12, (+ 1 2), [1, 2, 3] as well as partially applied functions such as (+ 4). Note that this last example is equivalent under eta abstraction to \ x . + 4 x which is not a CAF. Since a CAF is a supercombinator, it contains no free variables. Moreover, since it is not a lambda abstraction it contains no variables at all. It may however contain identifiers which refer to other CAFs, e.g. c 3 where c = (* 2). A CAF can always be lifted to the top level of the program. It can either be compiled to a piece of graph which will be shared by all uses or to some shared code which will overwrite itself with some graph the first time it is evaluated. A CAF such as ints = from 1 where from n = n : from (n+1) can grow without bound but may only be accessible from within the code of one or more functions. In order for the garbage collector to be able to reclaim such structures, we associate with each function a list of the CAFs to which it refers. When garbage collecting a reference to the function we collect the CAFs on its list.
  • copyright deposit library — one of six libraries legally entitled to receive a gratis copy of every book published in the United Kingdom: the British Library, Bodleian, Cambridge University, Trinity College in Dublin, Scottish National Library, and National Library of Wales
  • crude oil degassing plant — A crude oil degassing plant is equipment that removes light ends such as methane and butane from crude oil.
  • crude oil pyrolysis plant — A crude oil pyrolysis plant is equipment used for converting waste and poor fuel to a better product by pyrolysis (= the use of heat to decompose organic material).
  • dataphone digital service — (communications, product)   (DDS) The first private-line digital service offered by AT&T, with data rates typically at 2.4, 4.8, 9.6 and 56 kilobits per second. DDS is now part of AT&T's Accunet family of services. Most LEC (local exchange carriers) and IXC (IntereXchange Carriers) offer similar services.
  • develop-mentally disabled — a disability, as mental retardation or cerebral palsy, that begins at an early age and continues indefinitely, leading to substantial handicap.
  • dibasic calcium phosphate — Dibasic calcium phosphate is a white powder or crystalline substance used as a dietary supplement and tableting agent.
  • digital signal processing — (DSP) Computer manipulation of analog signals (commonly sound or image) which have been converted to digital form (sampled).
  • directory access protocol — X.500 protocol used for communication between a Directory User Agent and a Directory System Agent.
  • drive someone up the wall — If you say that something or someone is driving you up the wall, you are emphasizing that they annoy and irritate you.
  • electroconvulsive therapy — the treatment of certain psychotic conditions by passing an electric current through the brain to induce coma or convulsions
  • entity-relationship model — (database, specification)   An approach to data modelling proposed by P. Chen in 1976. The model says that you divide your database in two logical parts, entities (e.g. "customer", "product") and relations ("buys", "pays for"). One of the first activities in specifying an application is defining the entities involved and their relationships, e.g. using an entity-relationship diagram to represent a model.
  • exploratory data analysis — (EDA)
  • flash lights impressively — (programming, humour)   (FLI) /FLY/ A joke assembly language instruction first documented in the late 1970s in "The Hackers Dictionary". The FLI instruction was frequently referred to by engineers when minicomputers such as the DEC PDP-8, PDP-11 and some early microcomputers such as the IMSAI and Altair had dozens of front panel lights. "When the computer is about to do some long I/O operation, stick in a FLI so the accountants won't think the machine has hung again."
  • flexible spending account — an account to which an employee contributes a portion of earnings to pay for certain expenses such as medical and dependent care: contributions are exempt from payroll taxes. Abbreviation: FSA.
  • functional representation — representation in a governing body on the basis of social class or occupation.
  • gas desulfurization plant — A gas desulfurization plant is a place with equipment that removes sulfur dioxide from flue gas before it is released into the atmosphere.
  • genealogical relationship — the relationship that exists between languages that have developed from a single earlier language.
  • global positioning system — GPS (def 1).
  • graphic display interface — (hardware)   (GDI) graphics adaptor.
  • hand sth to sb on a plate — If you say that someone has things handed to them on a plate, you disapprove of them because they get good things easily.
  • honi soit qui mal y pense — shamed be he who thinks evil of it: the motto of the Order of the Garter
  • hospitalization insurance — insurance to cover, in whole or in part, the hospital bills of a subscriber or of his or her dependents.
  • in the palm of one's hand — If you have someone or something in the palm of your hand, you have control over them.
  • internal field separators — (operating system)   ($IFS) A predefined environment variable in the Unix Bourne shell whose default value is the three-character string containing space, tab and line feed. Any string of one or more of these characters separates the command and each of its arguments in a command line. $IFS also tells the shell's built-in read command where to split an input line when reading into multiple variables. E.g. setting IFS=: would be appropriate for reading a file with ':'-separated fields, such as /etc/passwd.
  • limited-slip differential — an automotive differential that can transfer power from a wheel that has lost traction to one that has not.
  • mpc level 1 specification — (multimedia)   The original Multimedia Personal Computer specification. Minimum requirements are a 16 MHz 386SX with 2 megabytes of RAM, a 30 MB hard disk drive, and a CD-ROM drive with a sustained data transfer rate of 150 KB/s at no more than 40% of CPU bandwidth and reading at least 16 KB blocks. The maximum average seek time is 1 second and the Mean Time Between Failure 10000 hours. Capability Mode 1. The computer must have 8-bit digital sound and an 8-note synthesizer with MIDI playback. Sample rates of 22.05 and 11.025 kHz must be supported by no more than 10% of CPU bandwidth, preferably 44.1 kHz at no more than 15% of CPU bandwidth. The synthesizer must support multi-voice, multi-timbral generation of six simultaneous melody notes and two simultaneous percussive notes with internal mixing capabilities to combine input from three sources and present the output as a stereo, line-level audio signal at the back panel. The video display must have a resolution of at least 640 x 480 in 16 colours. MIDI, I/O, and joystick ports must be previded. Compare MPC Level 2 Specification.
  • mpc level 2 specification — (multimedia)   An improved version of the MPC Level 1 Specification for Multimedia Personal Computers. Minimum requirements are a 25 Mhz 486SX with 4 MB of RAM and a 160 MB hard disk drive. The CD-ROM drive must support a sustained data transfer rate of 300 KB/s using at most 60% of CPU bandwidth on 16 KB minimum block read size. Its average seek time must be 400 milliseconds maximum. Capability Mode 1, Mode 2 form 1, Mode 2 form 2, Multisession. It must be CD-ROM XA-ready. The computer must have 16-bit digital sound, an 8-note synthesizer, and MIDI playback. A sample rate of 44.1 kHz must be available on stereo channels with more than 15% of CPU bandwidth. A video display with a resolution of 640 x 480 in 65,536 colours, and MIDI, I/O, and joystick ports must be provided.
  • national enterprise board — a public corporation established in 1975 to help the economy of the UK. In 1981 it merged with the National Research and Development Council to form the British Technology Group
  • open educational resource — Usually, open educational resources. a piece of content or a tool for teaching or learning, often developed online, that is made available free of charge for anyone to use, revise, adapt, or redistribute. Abbreviation: OER.
  • oxidative phosphorylation — the aerobic synthesis, coupled to electron transport, of ATP from phosphate and ADP.
  • page description language — a high-level programming language for determining the output of a page printer designed to work with it, independent of the printer's internal codes. Abbreviation: PDL.
  • palo alto research center — XEROX PARC
  • palo alto research centre — XEROX PARC
  • peripheral nervous system — the portion of the nervous system lying outside the brain and spinal cord.
  • personal flotation device — a life preserver, life jacket, or other device for keeping a person afloat in the water. Abbreviation: PFD.
  • personal-opinion telegram — a type of domestic telegram sent at the lowest rate with a minimum charge for 20 words or less to elected federal or state officials on a subject of national or regional interest.

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