0%

24-letter words containing c, l, y, s, t

  • 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.
  • bay of mont-saint-michel — an inlet of the Gulf of St Malo
  • 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
  • by common/mutual consent — If something happens by common consent or by mutual consent, it happens as the result of an agreement between the people or groups involved.
  • carry coals to newcastle1st Duke of, Pelham-Holles, Thomas.
  • 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.
  • 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).
  • 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.
  • constant linear velocity — (storage)   (CLV) A way of controlling the rotation of the disks in a disk drive in which the linear velocity of the disk surface relative to the read/write heads is kept constant. In order to achieve constant linear velocity, the disk must rotate faster (at a higher angular velocity) when reading or writing tracks closer to the centre. Having a constant linear read/write speed along the track means that the electrical signal to and from the heads has a constant data rate (bits per second), thus simplifying the timing of the drive electronics somewhat. However, rotating at less than the maximum possible rate sacrifices some potential performance compared to the alternative, constant angular velocity. Also, varying the rate causes more vibration and consumes more energy.
  • curiosity killed the cat — You say 'Curiosity killed the cat' in order to tell someone that they should not try to find out about something which does not concern them.
  • delayed control-transfer — (architecture)   A technique used on the SPARC processor to reduce the effect of pipeline breaks by executing the instruction after a branch instruction (the "delay instruction" in the "delay slot"). If there is no useful instruction which can be placed in the delay slot then the "annul bit" on the control transfer instruction can be set, preventing execution of the delay instruction (unless the control transfer is conditional and is taken). Annulled branches are indicated in SPARC assembler language by appending ",A" to the operation code. For example, LOOP: ... CMP %L0,10 BLE,A LOOP ADD %L2, %L3, #L4 If the delay instruction is also a control transfer instruction then it gets more complicated. Both control transfer instructions are executed (but not the following instruction) and, assuming they are both taken, control is transferred briefly to the destination of the first and then immediately to the destination of the second.
  • 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.
  • display screen equipment — Visual Display Unit
  • educational psychologist — a person trained in educational psychology
  • explicit type conversion — (programming)   (Or "cast" in C and elsewhere). A programming construct (syntax) to specify that an expression's value should be converted to a different type. For example, in C, to convert an integer (usually 32 bits) to a char (usually 8 bits) we might write: int i = 42; char *p = &buf; *p = (char) i; The expression "(char)" (called a "cast") converts i's value to char type. Casts (including this one) are often not strictly necessary, due to automatic coercions performed by the compiler, but can be used to make the conversion obvious and to avoid warning messages.
  • family income supplement — a benefit formerly paid to low-income families
  • fight like kilkenny cats — to fight until both parties are destroyed
  • footloose and fancy-free — If you describe someone as footloose and fancy-free, you mean that they are not married or in a similar relationship, and you therefore consider them to have very few responsibilities or commitments.
  • glycogen storage disease — any of several inherited disorders of glycogen metabolism that result in excess accumulation of glycogen in various organs of the body.
  • great crested flycatcher — a North American flycatcher, Myiarchus crinitus, noted for its use of the castoff skins of snakes in building its nest.
  • hierarchical file system — (file system)   A file system in which the files are organised into a hierarchy. The nodes of the hierarchy are called directories while the leaves are the files themselves. See also root directory. Compare flat file system.
  • implicit type conversion — (programming)   (Or "coercion") The abilty of some compilers to automatically insert type conversion functions where an expression of one type is used in a context where another type is expected. A common example is coercion of integers to reals so that an expression like sin(1) is compiled as sin(integerToReal(1)) where sin is of type Real -> Real. A coercion is usually performed automatically by the compiler whereas a cast is an explicit type conversion inserted by the programmer. See also subtype.
  • instructional technology — (education)   Design, development, use, management and evaluation of process and resources for learning. Instructional technology aims to promote the application of validated, practical procedures in the design and delivery of instruction. It is often defined either in terms of media and other technology used (e.g. audiovisual media and equipment and computers), or in terms of a systematic process which encompasses instructional design, development, delivery and evaluation.
  • laryngotracheobronchitis — A respiratory disease, a form of croup.
  • m technology association — (body)   The MUMPS User's Group that disbanded some time between 1995 and 2003. Address: 1738 Elton Road, Suite 205, Silver Spring, MD 20903-1725, USA. Telephone: +1 301 431-4070. Fax: +1 301 431-0017.
  • mutual insurance company — an insurance company owned by the policyholders and not by shareholders
  • 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.
  • object-oriented analysis — (programming)   (OOA) The first phase of object-oriented design.
  • physiological atmosphere — ecosphere.
  • polymer matrix composite — A polymer matrix composite is a material consisting of a composite made stronger by adding fibers or particles to it.
  • 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
  • quick-assembly furniture — furniture such as shelves and cupboards which you buy as a number of separate pieces and assemble yourself
  • 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
  • secondary school teacher — a person who teaches at a secondary school
  • selective service system — the U.S. federal agency that facilitates the mobilization of military forces by requiring the registration of males between the ages of 18 and 26 years. Abbreviation: SSS.
  • sequentially compact set — a set in which every sequence has a subsequence that converges to a point of the set.
  • slop oil recovery system — A slop oil recovery system is a method and the equipment used for cleaning and disposing of mixtures of oil, chemicals, and water from various sources in a refinery or oilfield.
  • socialist workers' party — one of the biggest extreme left wing parties in Britain
  • syquest technology, inc. — (company, hardware)   An early entrant into the removable hard disk market for personal computers. For may years SyQuest held the market, particularly as a method of transferring large desktop publisher documents to printers. SyQuest aim their products to give personal computer users "endless" hard drive space for data-intensive applications like desktop publishing, Internet information management, pre-press, multimedia, audio, video, digital photography, fast backup, data exchange, archiving, confidential data security and easy portability for the road. At the top of their current (Mar 1997) range are two drives, The SyJet 1.5 GB a 3.5 inch, double platter removable drive and the EZFlyer 230 MB also on 3.5 inch media. A cartridge holding over 4.7GB is promised before the end of 1997. In recent years they have not fared as well in the market, whilst Iomega has cornered the Small Office/Home Office (SOHO) market. Over the period 1995 to 1997 sales declined resulting in a series of losses. In the first quarter of 1997 these losses had been reduced to $6.8 million with net revenues increasing to $48.3 million. This compares to a net loss of $33.8 million, or $2.98 per share, on net revenues of $78.7 million for the same period the year before. It would appear that substantial restructuring has occurred over the past few years.
  • 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 blow away the cobwebs — If something blows or clears away the cobwebs, it makes you feel more mentally alert and lively when you had previously been feeling tired.
  • 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.
  • virtual software factory — (programming, tool)   (VSF) A product from Systematica which allows users to develop CASE tools appropriate to any software engineering methodology.
  • 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.

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