0%

24-letter words containing s, i, y

  • heart is a lonely hunter — a novel (1940) by Carson McCullers.
  • 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.
  • high bypass ratio engine — a type of by-pass engine in which a large fan driven by a turbine and housed in a short duct forces air rearwards around the exhaust gases in order to increase the propulsive thrust
  • high court of justiciary — the senior criminal court in Scotland, to which all cases of murder and rape and all cases involving heavy penalties are referred
  • 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 .
  • high-fructose corn syrup — corn syrup to which enzymes have been added to change some of the glucose to fructose, making the product sweeter than regular corn syrup. Abbreviation: HFCS.
  • hyaline membrane disease — respiratory distress syndrome.
  • ichthyophthirius-disease — ich.
  • immunofluorescence assay — a diagnostic blood test using the technique of immunofluorescence. Abbreviation: IFA.
  • 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.
  • in words of one syllable — simply; bluntly
  • information superhighway — internet
  • 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.
  • internal auditory meatus — the canal extending through the petrous portion of the temporal bone, through which the glossopharyngeal nerve, the facial nerve, and the auditory nerve and artery pass.
  • involuntary manslaughter — the unlawful but unintentional killing of a human being
  • irritable bowel syndrome — any combination of common disturbances of the bowel, as diarrhea or constipation, occurring with abdominal pain, sometimes accompanied by psychological stress. Abbreviation: IBS.
  • iterated function system — (graphics)   (IFS) A class of fractals that yield natural-looking forms like ferns or snowflakes. Iterated Function Systems use a very easy transformation that is done recursively.
  • kennelly-heaviside layer — E layer.
  • lady washington geranium — show geranium.
  • laryngotracheobronchitis — A respiratory disease, a form of croup.
  • lay something on someone — to tell something to someone
  • 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.
  • low-density polyethylene — highly branched polyethylene with low crystallinity and melting point, and a density of 0.91 to 0.94, prepared at very high pressures, and used mainly for sheeting, films, and packaging materials. Abbreviation: LDPE.
  • 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.
  • 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.
  • ministry of the interior — a government department that deals with the domestic or internal affairs of a country, esp law and order
  • motorway service station — an establishment off a motorway where drivers can refuel their vehicles, buy food, drink, etc
  • 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.
  • network operating system — (operating system)   (NOS) The operating system on Control Data Corporation's Cyber Computer.
  • 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.
  • open system architecture — (operating system)   (OSA) A competitor to IBM's SNA.
  • people's liberation army — See under Huk (def 1).
  • physiological atmosphere — ecosphere.
  • physiological psychology — the branch of psychology concerned with the relationship between the physical functioning of an organism and its behavior.
  • polymer matrix composite — A polymer matrix composite is a material consisting of a composite made stronger by adding fibers or particles to it.
  • preparatory to doing sth — If one action is done preparatory to another, it is done before the other action, usually as preparation for it.
  • pretty amazing new stuff — (humour, communications)   (PANS) What PSTN is evolving into.
  • 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
  • pyrotraumatic dermatitis — hot spot.
  • quick-assembly furniture — furniture such as shelves and cupboards which you buy as a number of separate pieces and assemble yourself
  • rapid eye movement sleep — REM sleep.
  • 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.
  • repetitive strain injury — overuse strain injury
  • representative democracy — a person or thing that represents another or others.
  • responsibility allowance — payment made to somebody who has special responsibilities
Was this page helpful?
Yes No
Thank you for your feedback! Tell your friends about this page
Tell us why?