0%

16-letter words containing r, e, p, n, t

  • open parenthesis — left parenthesis
  • operating budget — money allocated to a project
  • operating income — revenue from business operations after operating expenses are deducted from gross income.
  • operating manual — a leaflet of instructions on how to use something (such as an electrical appliance, etc)
  • operating margin — An operating margin is a ratio used to measure how well a company controls its costs, that is calculated by dividing operating income by net sales, and expressing it as a percentage.
  • operating profit — the profit of a company, etc, after it deducts its operating costs or the costs necessary to conduct the business
  • operating system — (operating system)   (OS) The low-level software which handles the interface to peripheral hardware, schedules tasks, allocates storage, and presents a default interface to the user when no application program is running. The OS may be split into a kernel which is always present and various system programs which use facilities provided by the kernel to perform higher-level house-keeping tasks, often acting as servers in a client-server relationship. Some would include a graphical user interface and window system as part of the OS, others would not. The operating system loader, BIOS, or other firmware required at boot time or when installing the operating system would generally not be considered part of the operating system, though this distinction is unclear in the case of a rommable operating system such as RISC OS. The facilities an operating system provides and its general design philosophy exert an extremely strong influence on programming style and on the technical cultures that grow up around the machines on which it runs. Example operating systems include 386BSD, AIX, AOS, Amoeba, Angel, Artemis microkernel, BeOS, Brazil, COS, CP/M, CTSS, Chorus, DACNOS, DOSEXEC 2, GCOS, GEORGE 3, GEOS, ITS, KAOS, Linux, LynxOS, MPV, MS-DOS, MVS, Mach, Macintosh operating system, Microsoft Windows, MINIX, Multics, Multipop-68, Novell NetWare, OS-9, OS/2, Pick, Plan 9, QNX, RISC OS, STING, System V, System/360, TOPS-10, TOPS-20, TRUSIX, TWENEX, TYMCOM-X, Thoth, Unix, VM/CMS, VMS, VRTX, VSTa, VxWorks, WAITS.
  • operating-system — the collection of software that directs a computer's operations, controlling and scheduling the execution of other programs, and managing storage, input/output, and communication resources. Abbreviation: OS.
  • operationalizing — Present participle of operationalize.
  • organoleptically — In an organoleptic manner.
  • organophosphates — Plural form of organophosphate.
  • over-application — the act of putting to a special use or purpose: the application of common sense to a problem.
  • over-consumption — the act of consuming, as by use, decay, or destruction.
  • over-expectation — the act or the state of expecting: to wait in expectation.
  • over-explanation — the act or process of explaining.
  • over-speculation — the contemplation or consideration of some subject: to engage in speculation on humanity's ultimate destiny.
  • overcapitalizing — Present participle of overcapitalize.
  • overcompensating — Present participle of overcompensate.
  • overcompensation — a pronounced striving to neutralize and conceal a strong but unacceptable character trait by substituting for it an opposite trait.
  • overcompensatory — a pronounced striving to neutralize and conceal a strong but unacceptable character trait by substituting for it an opposite trait.
  • overcomplicating — Present participle of overcomplicate.
  • overexploitation — use or utilization, especially for profit: the exploitation of newly discovered oil fields.
  • oversubscription — to subscribe for more of than is available, expected, or required: The charity drive was oversubscribed by several thousand dollars.
  • pacific sturgeon — a dark gray sturgeon, Acipenser transmontanus, inhabiting marine and fresh waters along the northwestern coast of North America, valued as a food and sport fish.
  • paediatric nurse — a nurse who specializes in the care of children
  • paint-by-numbers — formulaic; showing no original thought or creativity
  • painted trillium — a North American trillium, Trillium undulatum, having white flowers streaked with pink or purple.
  • pairs tournament — an event in a sport such as tennis or darts open to pairs of competitors
  • palmerston north — a city in New Zealand, in the S North Island on the Manawatu River. Pop: 78 100 (2004 est)
  • pancreatic juice — a thick, colorless, very alkaline fluid secreted by the pancreas, containing enzymes that break down protein, fat, and starch.
  • para-nitrophenol — any compound derived from phenol by the replacement of one or more of its ring hydrogen atoms by the nitro group.
  • para-phenetidine — a colorless organic liquid, C 8 H 1 1 NO, used chiefly in its para form (para-phenetidine) in the synthesis of phenacetin, dyes, and other compounds.
  • parallel fortran — (language)   (Pfortran) Extensions to Fortran by Ridgway Scott <[email protected]> of Houston University. Pfortran provides a shared memory SIMD model on message passing computers. It was under development in 1994.
  • parents' evening — an occasion when the parents of children at a school and their teachers come together (outside normal school hours, in the evening) in order to discuss the progress or work of the children
  • parity operation — the mathematical operation of reversing the directions of all three space coordinates. Symbol: P.
  • parliament hinge — a butt hinge the knuckle of which protrudes from the door so that the door when fully opened stands away from the wall.
  • parole violation — an illegal act or offence that breaches the conditions of a prisoner's parole
  • parser generator — A program which takes a formal description of a grammar (e.g. in BNF) and outputs source code for a parser which will recognise valid strings obeying that grammar and perform associated actions. Unix's yacc is a well known example.
  • partial ordering — a relation defined on a set, having the properties that each element is in relation to itself, the relation is transitive, and if two elements are in relation to each other, the two elements are equal.
  • parts of lindsey — an area in E England constituting a former administrative division of Lincolnshire
  • pass-band filter — band-pass filter
  • passive transfer — Immunology. injection of lymphocytes or antibody from an immune or sensitized donor to a nonimmune host in order to impart immunity or test for allergic reactions.
  • paterson's curse — a purple-flowered noxious plant, Echium plantagineum, a close relative of viper's bugloss, naturalized in Australia and NZ where its harmfulness to livestock has prompted attempts to limit its spread
  • pattern matching — 1. A function is defined to take arguments of a particular type, form or value. When applying the function to its actual arguments it is necessary to match the type, form or value of the actual arguments against the formal arguments in some definition. For example, the function length [] = 0 length (x:xs) = 1 + length xs uses pattern matching in its argument to distinguish a null list from a non-null one. There are well known algorithm for translating pattern matching into conditional expressions such as "if" or "case". E.g. the above function could be transformed to 2. Descriptive of a type of language or utility such as awk or Perl which is suited to searching for strings or patterns in input data, usually using some kind of regular expression.
  • pattern practice — (in foreign-language learning) a technique for practicing a linguistic structure in which students repeat a sentence or other structure, each time substituting a new element, such as a new verb, as directed by the teacher, or transforming the original structure, as in changing a statement to a question.
  • peano arithmetic — (mathematics)   Giuseppe Peano's system for representing natural numbers inductively using only two symbols, "0" (zero) and "S" (successor). This system could be expressed as a recursive data type with the following Haskell definition: data Peano = Zero | Succ Peano The number three, usually written "SSS0", would be Succ (Succ (Succ Zero)). Addition of Peano numbers can be expressed as a simple syntactic transformation: plus Zero n = n plus (Succ m) n = Succ (plus m n) (1995-03-28)
  • peasants' revolt — the first great popular rebellion in English history (1381), caused by the imposition of an unpopular poll tax: it lasted less than a month and failed as a social revolution
  • pectoralis minor — the smaller of the two large chest muscles that assist in movements of the shoulder and upper arm
  • peninsular state — Florida (used as a nickname).
  • pension mortgage — an arrangement whereby a person takes out a mortgage and pays the capital repayment instalments into a pension fund and the interest to the mortgagee. The loan is repaid out of the tax-free lump sum proceeds of the pension plan on the borrower's retirement
Was this page helpful?
Yes No
Thank you for your feedback! Tell your friends about this page
Tell us why?