0%

24-letter words containing s, i, l, v, e, r

  • administrative-law judge — an official of a federal or state agency who hears, weighs, and decides on evidence in administrative proceedings, and makes recommendations for any necessary legal action.
  • alexandre gustave eiffel — Alexandre Gustave [a-lek-sahn-druh gys-tav] /a lɛkˈsɑ̃ drə güsˈtav/ (Show IPA), 1832–1923, French civil engineer and pioneer aerodynamic researcher.
  • behavioral psychophysics — the branch of psychology that deals with measurement of mental and sensory phenomena brought on by physical stimuli.
  • black english vernacular — Black English (def 1). Abbreviation: BEV.
  • black vernacular english — Black English (def 1). Abbreviation: BEV.
  • black-english-vernacular — Also called African American Vernacular English, African American English, Afro-American English, Black English Vernacular, Black Vernacular English.a dialect of American English characterized by pronunciations, syntactic structures, and vocabulary associated with and used by some North American black people and exhibiting a wide variety and range of forms varying in the extent to which they differ from standard English.
  • broadleaved spindle tree — a flowering tree, Euonymus Latifolius, native to some parts of Western Europe and widely planted as an ornamental
  • cerebrovascular accident — a sudden interruption of the blood supply to the brain caused by rupture of an artery in the brain (cerebral haemorrhage) or the blocking of a blood vessel, as by a clot of blood (cerebral occlusion)
  • civil service commission — an official body which regulates the wages and working conditions of civil servants and promotes their work
  • congestive heart failure — heart failure characterized by weakness, breathlessness, and abnormal congestion in the circulatory system, esp. in the lungs or lower legs
  • 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.
  • 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.
  • cross/step over the line — If you say that someone has crossed the line or has stepped over the line, you mean that they have behaved in a way that is considered unacceptable.
  • definite relative clause — a relative clause with a definite relative pronoun as subordinating word, as that they said in We heard the things that they said.
  • descriptive bibliography — the aspect of bibliography concerned with the close physical study and description of books and other works.
  • destructive distillation — the decomposition of a complex substance, such as wood or coal, by heating it in the absence of air and collecting the volatile products
  • environmental assessment — a formal assessment of the impact a project will have on the environment
  • 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.
  • federal reserve district — the district served by a certain Federal Reserve Bank.
  • 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.
  • intermediate-level waste — radioactive waste material, such as reactor and processing-plant components, that is solidified before being mixed with concrete and stored in steel drums in deep mines or beneath the seabed in concrete chambers
  • internal revenue service — the division of the U.S. Department of the Treasury that collects internal revenue, including income taxes and excise taxes, and that enforces revenue laws.
  • involuntary manslaughter — the unlawful but unintentional killing of a human being
  • kennelly-heaviside layer — E layer.
  • leave much to be desired — be inadequate
  • 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?"
  • manic-depressive illness — bipolar disorder.
  • master-slave manipulator — any of various devices, guided by the hand of the operator, for imitating the motions and tactile sensitivity of the human hand to a greater or lesser extent: used in situations in which direct handling of the objects or materials involved would be dangerous or impossible.
  • 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.
  • national weather service — an agency of the National Oceanic and Atmospheric Administration that is responsible for meteorological observations, weather forecasts, storm and flood warnings, etc.
  • passive balance of trade — a negative balance of trade
  • pre-emptive multitasking — (operating system, parallel)   A type of multitasking where the scheduler can interrupt and suspend ("swap out") the currently running task in order to start or continue running ("swap in") another task. The tasks under pre-emptive multitasking can be written as though they were the only task and the scheduler decides when to swap them. The scheduler must ensure that when swapping tasks, sufficient state is saved and restored that tasks do not interfere. The length of time for which a process runs is known as its "time slice" and may depend on the task's priority or its use of resources such as memory and I/O. This contrasts with cooperative multitasking where each task must include calls to allow it to be descheduled periodically.
  • private health insurance — insurance against the need for medical treatment as a private patient
  • progressive assimilation — assimilation in which a preceding sound has an effect on a following one, as in shortening captain to cap'm rather than cap'n.
  • rapid eye movement sleep — REM sleep.
  • relative record data set — (database)   (RRDS) One of the access methods used by IBM's VSAM.
  • repondez s'il vous plait — Répondez s'il vous plait
  • san joaquin valley fever — coccidioidomycosis.
  • scalable vector graphics — (graphics, web)   A W3C standard for vector graphics, based on XML.
  • 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.
  • single transferable vote — of or relating to a system of voting in which voters list the candidates in order of preference. Any candidate achieving a predetermined proportion of the votes in a constituency is elected. Votes exceeding this amount and those cast for the bottom candidate are redistributed according to the stated preferences. Redistribution continues until all the seats are filled
  • 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.
  • special development area — an area earmarked for special development by the government
  • st.-bruno-de-montarville — a town in S Quebec, in E Canada, near Montreal.
  • tuva autonomous republic — an autonomous republic in the Russian Federation in Asia: formerly an independent republic in Mongolia. 65,810 sq. mi. (170,500 sq. km). Capital: Kyzyl.
  • universal life insurance — a type of insurance in which the payments of the insured are placed in an investment fund, earnings from which pay the premium on term life insurance while any remainder continues to increase the policy's value.
  • variable (interest) rate — an interest rate that varies in relation to fluctuations in the market rates of interest, as over the time period of a loan or mortgage
  • virtual software factory — (programming, tool)   (VSF) A product from Systematica which allows users to develop CASE tools appropriate to any software engineering methodology.
  • virtual storage extended — (operating system)   (VSE, formerly DOS/VSE) is a multitasking, IBM 370-architected operating system similar to Multiple Virtual Storage (MVS). VSE run jobs in partitions rather than address spaces, and uses POWER for input/output rather than JES, but is largely similar to MVS. Subsequent VSE/ESA releases gave VSE the XA-370 channel architecture, 31-bit virtual and real storage support, and data spaces. VSE is the IBM operating system on one-third of installed IBM 4381s and a significant proportion of IBM 9370s as well. It offers transaction processing and batch processing capabilities well beyond Virtual Machine's current capabilities, and has a close affinity with MVS.
  • 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 S-I-L-V-E-R. It’s easy to find right word with a certain length. It is the easiest way to find 24-letter word that contains in S-I-L-V-E-R 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?