0%

24-letter words containing a, n, y, p, l

  • a licence to print money — If you describe a commercial activity as a licence to print money, you mean that it allows people to gain a lot of money with little effort or responsibility.
  • austin kyoto common lisp — (language)   (AKCL) A collection of ports, bug fixes, and performance improvements to KCL by William Schelter <[email protected]>, <[email protected]>, University of Texas. Version 1-615 includes ports to Decstation 3100, HP9000/300, i386/Sys V, IBM-PS2/AIX, IBM-RT/AIX, SGI, Sun-3/Sunos 3 or 4, Sun-4, Sequent Symmetry, IBM370/AIX, VAX/BSD VAX/Ultrix, NeXT.
  • colony collapse disorder — a pathological condition affecting a large number of honeybee colonies, in which various stresses may lead to the abrupt disappearance of worker bees from the hive, leaving only the queen and newly hatched bees behind and thus causing the colony to stop functioning. Abbreviation: CCD.
  • 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).
  • complementary wavelength — the wavelength of monochromatic light that could be mixed in suitable proportions with a given coloured light so as to produce some specified achromatic light
  • computational complexity — (algorithm)   The number of steps or arithmetic operations required to solve a computational problem. One of the three kinds of complexity.
  • developmental disability — a disability, as mental retardation or cerebral palsy, that begins at an early age and continues indefinitely, leading to substantial handicap.
  • developmental psychology — a branch of psychology that studies changes in human behavior from early life to death.
  • dicyclopentadienyl metal — ferrocene (def 2).
  • diphenylaminechlorarsine — adamsite.
  • display screen equipment — Visual Display Unit
  • educational psychologist — a person trained in educational psychology
  • ethyl-para-aminobenzoate — benzocaine
  • evolutionary computation — Computer-based problem solving systems that use computational models of evolutionary processes as the key elements in design and implementation. A number of evolutionary computational models have been proposed, including evolutionary algorithms, genetic algorithms, the evolution strategy, evolutionary programming, and artificial life.
  • 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.
  • family income supplement — a benefit formerly paid to low-income families
  • flip chip pin grid array — (hardware, processor)   (FC-PGA) The package of certain Intel Celeron and Pentium III processors. FC-PGA processors fit into Socket 370 motherboard sockets. The Flip Chip Pin Grid Array is similar to PPGA, except that the silicon core is facing up and the heat slug is exposed. FC-PGA packaging is used by Pentium III processors, and Celeron 566 processors onward. Earlier Celeron processors used PPGA packaging. Celeron processors are also available in Slot 1 SEPP packaging and Pentium III processors in Slot 1 SECC2 packaging. Adapters are available to allow a PPGA Celeron to plug into a Slot 1 connector.
  • frequent-flyer programme — a plan or system under which frequent flyers earn rewards for being regular customers
  • hyperbetalipoproteinemia — An abnormally high level of betalipoprotein in the blood.
  • law of supply and demand — the theory that prices are determined by the interaction of supply and demand: an increase in supply will lower prices if not accompanied by increased demand, and an increase in demand will raise prices unless accompanied by increased supply
  • lease with option to buy — A lease with option to buy is a lease that states that the person leasing the property has the right to purchase it at the end of the lease period.
  • mandy rice-davis applies — (chat)   (MRDA) An acronym used to imply that someone is lying to protect their own interests. During the trial of Stephen Ward (who was charged with living off the immoral earnings of Christine Keeler and Rice-Davies), the prosecuting counsel pointed out that Lord Astor denied any involvement with her and Rice-Davies replied, "Well, he would, wouldn't he?"
  • 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.
  • minister plenipotentiary — plenipotentiary.
  • mutual insurance company — an insurance company owned by the policyholders and not by shareholders
  • nalbuphine hydrochloride — an opiate drug used as a painkiller
  • narcissistic personality — a personality disorder characterized by extreme self-centeredness and self-absorption, fantasies involving unrealistic goals, an excessive need for attention and admiration, and disturbed interpersonal relationships.
  • neutrosophic probability — (logic)   An extended form of probability based on Neutrosophy, in which a statement is held to be t true, i indeterminate, and f false, where t, i, f are real values from the ranges T, I, F, with no restriction on T, I, F or the sum n=t+i+f.
  • non-proliferation treaty — an international agreement signed in 1968 which aims to reduce the spread of nuclear weapons
  • 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.
  • people's liberation army — See under Huk (def 1).
  • permeability coefficient — the volume of an incompressible fluid that will flow in unit time through a unit cube of a porous substance across which a unit pressure difference is maintained
  • polychlorinated biphenyl — PCB.
  • probability distribution — a distribution of all possible values of a random variable together with an indication of their probabilities.
  • psychopathic personality — an antisocial personality characterized by the failure to develop any sense of moral responsibility and the capability of performing violent or antisocial acts
  • rapid eye movement sleep — REM sleep.
  • rational-emotive therapy — a form of therapy in which a patient is asked to reject irrational attitudes and assumptions in order to deal effectively with stressful situations.
  • referential transparency — (programming)   An expression E is referentially transparent if any subexpression and its value (the result of evaluating it) can be interchanged without changing the value of E. This is not the case if the value of an expression depends on global state which can change value. The most common example of changing global state is assignment to a global variable. For example, if y is a global variable in: f(x) { return x+y; } g(z) { a = f(1); y = y + z; return a + f(1); } function g has the "side-effect" that it alters the value of y. Since f's result depends on y, the two calls to f(1) will return different results even though the argument is the same. Thus f is not referentially transparent. Changing the order of evaluation of the statements in g will change its result. We could make f above referentially transparent by passing in y as an argument: f(x, y) = x+y Similarly, g would need to take y as an argument and return its new value as part of the result: g(z, y) { a = f(1, y); y' = y+z; return (a + f(1, y'), y'); } Referentially transparent programs are more amenable to formal methods and easier to reason about because the meaning of an expression depends only on the meaning of its subexpressions and not on the order of evaluation or side-effects of other expressions. We can stretch the concept of referential transparency to include input and output if we consider the whole program to be a function from its input to its output. The program as a whole is referentially transparent because it will always produce the same output when given the same input. This is stretching the concept because the program's input may include what the user types, the content of certain files or even the time of day. If we do not consider global state like the contents of files as input, then writing to a file and reading what was written behaves just like assignment to a global variable. However, if we must consider the state of the universe as an input rather than global state then any deterministic system would be referentially transparent! See also extensional equality, observational equivalence.
  • responsibility allowance — payment made to somebody who has special responsibilities
  • sequentially compact set — a set in which every sequence has a subsequence that converges to a point of the set.
  • single european currency — the official currency, also known as the Euro, of some of the members of the European Union
  • telephony user interface — (communications)   (TUI) Either a software interface to telephony (e.g. a phone-capable PC) or a DTMF-based interface to software (e.g. voicemail).
  • to cramp someone's style — If someone or something cramps your style, their presence or existence restricts your behaviour in some way.
  • transpersonal psychology — a branch of psychology or psychotherapy that recognizes altered states of consciousness and transcendent experiences as a means to understand the human mind and treat psychological disordrs.
  • tricyclic antidepressant — pertaining to or embodying three cycles.
  • visual component library — (programming)   VCL A application framework library for Microsoft Windows and Borland Software Corp.'s Delphi and C++Builder rapid application development software. VCL was originally designed for Delphi but is now also used for C++Builder. This replaces OWL Object Windows Library as Borland's Windows C++ framework of choice. VCL encapsulates the C-based Win32 API into a much easier to use, object-oriented form. Like its direct rival, Microsoft Foundation Class Library (MFC), VCL includes classes to create Windows programs. The VCL component class can be inherited to create new VCL components, which are the building blocks of Delphi and C++Builder applications. VCL components are somewhat in competition with ActiveX controls, though a VCL wrapper can be created to make an ActiveX control seem like a VCL component.
  • what are you playing at? — If you ask what someone is playing at, you are angry because you think they are doing something stupid or wrong.
  • wired equivalent privacy — (networking, standard)   (WEP) IEEE 802.11:1999. A cryptographic privacy algorithm, based on the RC4 encryption engine, used to provide confidentiality for 802.11 wireless networks. WEP is intended to provide roughly the same level of confidentiality for wireless data as a wired LAN (Ethernet), which is NOT protected by encryption. WEP is often wrongly expanded as "Wireless Encryption Protocol". WEP is a protocol that provides encryption used on wireless networks but that's not what it stands for.

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