0%

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

  • 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.
  • acceptable quality level — a quality standard that indicates the maximum percentage of defects allowed in a production process
  • 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.
  • behavioral psychophysics — the branch of psychology that deals with measurement of mental and sensory phenomena brought on by physical stimuli.
  • cathode ray oscilloscope — A cathode ray oscilloscope is an instrument based upon the cathode ray tube, that provides a visible image of one or more rapidly varying electrical quantities.
  • 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
  • completely regular space — a topological space in which, for every point and a closed set not containing the point, there is a continuous function that has value 0 at the given point and value 1 at each point in the closed set.
  • computational complexity — (algorithm)   The number of steps or arithmetic operations required to solve a computational problem. One of the three kinds of complexity.
  • descriptive bibliography — the aspect of bibliography concerned with the close physical study and description of books and other works.
  • 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
  • electrocardiographically — By means of electrocardiography.
  • 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.
  • 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.
  • 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.
  • mathematical probability — the probability of an event consisting of n out of m possible equally likely occurrences, defined to be n/m
  • 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.
  • 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
  • physiological atmosphere — ecosphere.
  • physiological psychology — the branch of psychology concerned with the relationship between the physical functioning of an organism and its behavior.
  • polychlorinated biphenyl — PCB.
  • polymer matrix composite — A polymer matrix composite is a material consisting of a composite made stronger by adding fibers or particles to it.
  • programmable array logic — (hardware)   (PAL) A family of fuse-programmable logic integrated circuits originally developed by MMI. Registered or combinatorial output functions are modelled in a sum of products form. Each output is a sum (logical or) of a fixed number of products (logical and) of the input signals. This structure is well suited for automatic generation of programming patterns by logic compilers. PAL devices are programmed by blowing the fuses permanently using overvoltage. Today, more complex devices based on the same original architecture are available (CPLD's for Complex PLD's) that incorporate the equivalent of several original PAL chips. PAL chips are, however, still popular due to their high speed.
  • 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
  • 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
  • socialist workers' party — one of the biggest extreme left wing parties in Britain
  • 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.
  • to play your cards right — If you say that someone will achieve success if they play their cards right, you mean that they will achieve success if they act skilfully and use the advantages that they have.
  • 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.
  • 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.
  • yellow-bellied sapsucker — a woodpecker, Sphyrapicus varius, of eastern North America, having a red patch on the forehead and black and white plumage with a pale-yellow abdomen, and feeding on sap from trees.

On this page, we collect all 24-letter words with A-C-L-Y-P. 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-C-L-Y-P 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?