0%

24-letter words containing p, l, e, g, i

  • alternating bit protocol — (networking)   (ABP) A simple data link layer protocol that retransmits lost or corrupted messages. Messages are sent from transmitter A to receiver B. Assume that the channel from A to B is initialised and that there are no messages in transit. Each message contains a data part, a checksum, and a one-bit sequence number, i.e. a value that is 0 or 1. When A sends a message, it sends it continuously, with the same sequence number, until it receives an acknowledgment (ACK) from B that contains the same sequence number. When that happens, A complements (flips) the sequence number and starts transmitting the next message. When B receives a message from A, it checks the checksum. If the message is not corrupted B sends back an ACK with the same sequence number. If it is the first message with that sequence number then it is sent for processing. Subsequent messages with the same sequence bit are simply acknowledged. If the message is corrupted B sends back an negative/error acknowledgment (NAK). This is optional, as A will continue transmitting until it receives the correct ACK. A treats corrupted ACK messages, and NAK messages in the same way. The simplest behaviour is to ignore them all and continue transmitting.
  • animal rights campaigner — a person who campaigns for the rights of animals to be protected from exploitation and abuse by humans
  • basic multilingual plane — (text, standard)   (BMP) The first plane defined in Unicode/ISO 10646, designed to include all scripts in active modern use. The BMP currently includes the Latin, Greek, Cyrillic, Devangari, hiragana, katakana, and Cherokee scripts, among others, and a large body of mathematical, APL-related, and other miscellaneous characters. Most of the Han ideographs in current use are present in the BMP, but due to the large number of ideographs, many were placed in the Supplementary Ideographic Plane.
  • british technology group — an organization formed in 1981 by the merger of the National Enterprise Board and the National Research and Development Corporation to encourage and finance technological innovation: privatized in 2000
  • californian spangled cat — a breed of short-haired cat with a spotted coat, bred in California to resemble a leopard in appearance
  • cellular multiprocessing — (architecture, parallel)   (CMP) The partitioning of processors into separate computing environments running different operating systems. The term cellular multiprocessing appears to have been coined by Unisys, who are developing a system where computers communicate as clustered machines through a high speed bus, rather than through communication protocols such as TCP/IP. The Unisys system is based on Intel processors, initially the Pentium II Xeon and moving on to the 64-bit Merced processors later in 1999. It will be scalable from four up to 32 processors, which can be clustered or partitioned in various ways. For example a sixteen processor system could be configured as four Windows NT systems (each functioning as a four-processor symmetric multiprocessing system), or an 8-way NT and 8-way Unix system. Supported operating systems will be Windows NT, SCO's Unixware 7.0, Unisys' SVR4 Unix and possibly the OS2200 and MCP-AS mainframe operating systems (with the assistance of Unisys' own dedicated chipset).
  • cerebrospinal meningitis — an acute infectious form of meningitis caused by the bacterium Neisseria meningitidis, characterized by high fever, skin rash, delirium, stupor, and sometimes coma
  • compensatory lengthening — the lengthening of a vowel when a following consonant is weakened or lost, as the change from Old English niht [nikht] /nɪxt/ (Show IPA) to night [nahyt] /naɪt/ (Show IPA) with loss of [kh] /x/ (Show IPA) and lengthening of [i] /ɪ/ (Show IPA) to a vowel that eventually became [ahy] /aɪ/ (Show IPA).
  • compiler target language — (CTL) The intermediate language used by the ALICE parallel machine.
  • computer design language — (language)   An ALGOL-like language for computer design.
  • cooperative multitasking — (parallel, operating system)   A form of multitasking where it is the responsibility of the currently running task to give up the processor to allow other tasks to run. This contrasts with pre-emptive multitasking where the task scheduler periodically suspends the running task and restarts another. Cooperative multitasking requires the programmer to place calls at suitable points in his code to allow his task to be descheduled which is not always easy if there is no obvious top-level main loop or some routines run for a long time. If a task does not allow itself to be descheduled all other tasks on the system will appear to "freeze" and will not respond to user action. The advantage of cooperative multitasking is that the programmer knows where the program will be descheduled and can make sure that this will not cause unwanted interaction with other processes. Under pre-emptive multitasking, the scheduler must ensure that sufficient state for each process is saved and restored that they will not interfere. Thus cooperative multitasking can have lower overheads than pre-emptive multitasking because of the greater control it offers over when a task may be descheduled. Cooperative multitasking is used in RISC OS, Microsoft Windows and Macintosh System 7.
  • decentralized processing — the use of word processing or data processing units in stand-alone or localized situations
  • descriptive bibliography — the aspect of bibliography concerned with the close physical study and description of books and other works.
  • digital compact cassette — a magnetic tape cassette on which sound can be recorded in a digital format
  • domain-specific language — (language)   A machine-processable language whose terms are derived from a domain model and that is used for the definition of components or software architectures supporting that domain. A domain-specific language is often used as input to an application generator.
  • educational psychologist — a person trained in educational psychology
  • electrocardiographically — By means of electrocardiography.
  • electromagnetic spectrum — the complete range of electromagnetic radiation from the longest radio waves (wavelength 105 metres) to the shortest gamma radiation (wavelength 10–13 metre)
  • english springer spaniel — breed of dog
  • equivalence partitioning — equivalence class partitioning
  • evolutionary programming — (EP) A stochastic optimisation strategy originally conceived by Lawrence J. Fogel in 1960. An initially random population of individuals (trial solutions) is created. Mutations are then applied to each individual to create new individuals. Mutations vary in the severity of their effect on the behaviour of the individual. The new individuals are then compared in a "tournament" to select which should survive to form the new population. EP is similar to a genetic algorithm, but models only the behavioural linkage between parents and their offspring, rather than seeking to emulate specific genetic operators from nature such as the encoding of behaviour in a genome and recombination by genetic crossover. EP is also similar to an evolution strategy (ES) although the two approaches developed independently. In EP, selection is by comparison with a randomly chosen set of other individuals whereas ES typically uses deterministic selection in which the worst individuals are purged from the population.
  • fight-or-flight response — the response of the sympathetic nervous system to a stressful event, preparing the body to fight or flee, associated with the adrenal secretion of epinephrine and characterized by increased heart rate, increased blood flow to the brain and muscles, raised sugar levels, sweaty palms and soles, dilated pupils, and erect hairs.
  • floating decimal (point) — a decimal (point) whose position is not fixed
  • floating point underflow — underflow
  • floating-point specratio — SPECfp92
  • general protection fault — General Protection Failure
  • geographical determinism — the theory that human activity is determined by geographical conditions
  • glasgow haskell compiler — (language)   (GHC) A Haskell 1.2 compiler written in Haskell by the AQUA project at Glasgow University, headed by Simon Peyton Jones <[email protected]> throughout the 1990's [started?]. GHC can generate either C or native code for SPARC, DEC Alpha and other platforms. It can take advantage of features of gcc such as global register variables and has an extensive set of optimisations. GHC features an extensible I/O system based on a "monad", in-line C code, fully fledged unboxed data types, incrementally-updatable arrays, mutable reference types, generational garbage collector, concurrent threads. Time and space profiling is also supported. It requires GNU gcc 2.1+ and Perl. GHC runs on Sun-4, DEC Alpha, Sun-3, NeXT, DECstation, HP-PA and SGI. E-mail: <[email protected]>.
  • graphical user interface — a software interface designed to standardize and simplify the use of computer programs, as by using a mouse to manipulate text and images on a display screen featuring icons, windows, and menus.
  • gregorio lopez y fuentes — Gregorio [gre-gaw-ryaw] /grɛˈgɔ ryɔ/ (Show IPA), 1895–1966, Mexican writer.
  • ground-fault interrupter — a circuit breaker that senses currents caused by ground faults and quickly shuts off power before damage can occur to generating equipment.
  • gulf cooperation council — an association of Persian Gulf nations formed for the purpose of collective defense against aggression. Abbreviation: GCC.
  • heart in the right place — If you say that someone's heart is in the right place, you mean that they are kind, considerate, and generous, although you may disapprove of other aspects of their character.
  • high-density lipoprotein — a blood constituent involved in the transport of cholesterol and associated with a decreased risk of atherosclerosis and heart attack. Abbreviation: HDL .
  • homolographic projection — an equal-area projection in which the proportion between regions of unequal area is correctly shown.
  • independent logical file — (database)   (ILF) One kind of dynamic database management system. Examples of ILF databases are INQUIRE, ADABAS, NOMAD, FOCUS and DATACOM.
  • jam programming language — (language)   (JPL) A string-based imperative language from JYACC Corporation, part of the JAM tool for developing screen (non-window) applications.
  • knowledge representation — The subfield of artificial intelligence concerned with designing and using systems for storing knowledge - facts and rules about some subject. A body of formally represented knowledge is based on a conceptualisation - an abstract view of the world that we wish to represent. In order to manipulate this knowledge we must specify how the abstract conceptualisation is represented as a concrete data structure. An ontology is an explicit specification of a conceptualisation.
  • laugh in a person's face — to show open contempt or defiance towards a person
  • legal expenses insurance — Legal expenses insurance is insurance coverage against expenses incurred when you need to seek legal advice or pay for a lawsuit.
  • liquid components of gas — Liquid components of gas are associated hydrocarbons in natural gas, which include ethane, propane, and butane.
  • long-spined sea scorpion — Cottus bubalis or Taurulus bubalis
  • mass psychogenic illness — a condition in which a large group of people report similar physical symptoms that are traceable to psychological factors rather than environmental or physiological factors.
  • michael viii palaeologus — 1234–1282, Byzantine ruler 1259–82, first of the Palaeologus emperors.
  • multiple virtual storage — (operating system)   (MVS) Release 2 of OS/VS2, called MVS because it had multiple 16 MB virtual address spaces, in contrast to SVS. MVS ran on the IBM 390 series mainframes. It became MVS/SP, then MVS/XA (with 31-bit addressing) and then MVS/ESA. MVS/Open Edition (MVS/OE), aimed at the growing open systems market, added TCP/IP and Unix support in an MVS address space, allowing users to run IBM, CICS-type applications, batch applications and Unix. MVS/ESA was repackaged as OS/390 as a marketing exercise but it's basically the same thing. Version: 5.1.
  • new programming language — (language)   (NEWP) A language which replaced ESPOL on the Burroughs Large System.
  • optical signal processor — optical computing
  • parallel cousin marriage — marriage between the children of two brothers or two sisters.
  • parliamentary government — government by a body of cabinet ministers who are chosen from and responsible to the legislature and act as advisers to a nominal chief of state.
  • physiological atmosphere — ecosphere.

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