0%

22-letter words containing pr

  • a programming language — (language)   (APL) A programming language designed originally by Ken Iverson at Harvard University in 1957-1960 as a notation for the concise expression of mathematical algorithms. It went unnamed (or just called Iverson's Language) and unimplemented for many years. Finally a subset, APL\360, was implemented in 1964. APL is an interactive array-oriented language and programming environment with many innovative features. It was originally written using a non-standard character set. It is dynamically typed with dynamic scope. APL introduced several functional forms but is not purely functional. Dyalog APL/W and Visual APL are recognized .NET languages. Dyalog APL/W, APLX and APL2000 all offer object-oriented extensions to the language. ISO 8485 is the 1989 standard defining the language. Commercial versions: APL SV, VS APL, Sharp APL, Sharp APL/PC, APL*PLUS, APL*PLUS/PC, APL*PLUS/PC II, MCM APL, Honeyapple, DEC APL, APL+Win, APL+Linux, APL+Unix and VisualAPL, Dyalog APL, IBM APL2, APLX, Sharp APL Open source version: NARS2000. See also Kamin's interpreters.
  • abstract expressionism — a school of painting in New York in the 1940s that combined the spontaneity of expressionism with abstract forms in unpremeditated, apparently random, compositions
  • acceleration principle — the principle that an increase in the demand for a finished product will create a greater demand for capital goods.
  • account representative — (job)   A person in a company who identifies new accounts, analyses customer needs, proposes business solutions, negotiates and oversees the implementation of new projects.
  • apprentice electrician — a trainee electrician
  • approved social worker — (in England) a qualified social worker specially trained in mental-health work, who is approved by his employing local authority to apply for a mentally disordered person to be admitted to hospital and detained there, or to apply for the person to be received into the guardianship of the local authority
  • arithmetic progression — a sequence of numbers or quantities, each term of which differs from the succeeding term by a constant amount, such as 3,6,9,12
  • axiom of comprehension — (logic)   An axiom schema of set theory which states: if P(x) is a property then {x : P} is a set. I.e. all the things with some property form a set. Acceptance of this axiom leads to Russell's Paradox which is why Zermelo set theory replaces it with a restricted form.
  • axonometric projection — a geometric drawing of an object, such as a building, in three dimensions showing the verticals and horizontals projected to scale but with diagonals and curves distorted, so that the whole appears inclined
  • bankruptcy proceedings — the legal business of a bankruptcy case
  • bidirectional printing — (hardware)   A feature of a printer whose printer head can print both when moving left to right and when moving right to left. Also known as "boustrophedonic".
  • boundary value problem — any of a series of problems occurring in the solution of a differential equation with boundary conditions.
  • c programmer's disease — (programming)   The tendency of the undisciplined C programmer to set arbitrary but supposedly generous static limits on table sizes (defined, if you're lucky, by constants in header files) rather than taking the trouble to do proper dynamic storage allocation. If an application user later needs to put 68 elements into a table of size 50, the afflicted programmer reasons that he or she can easily reset the table size to 68 (or even as much as 70, to allow for future expansion) and recompile. This gives the programmer the comfortable feeling of having made the effort to satisfy the user's (unreasonable) demands, and often affords the user multiple opportunities to explore the marvellous consequences of fandango on core. In severe cases of the disease, the programmer cannot comprehend why each fix of this kind seems only to further disgruntle the user.
  • cargo cult programming — (programming, humour)   A style of (incompetent) programming dominated by ritual inclusion of code or program structures that serve no real purpose. A cargo cult programmer will usually explain the extra code as a way of working around some bug encountered in the past, but usually neither the bug nor the reason the code apparently avoided the bug was ever fully understood (compare shotgun debugging, voodoo programming). The term "cargo cult" is a reference to aboriginal religions that grew up in the South Pacific after World War II. The practices of these cults centre on building elaborate mockups of aeroplanes and military style landing strips in the hope of bringing the return of the god-like aeroplanes that brought such marvelous cargo during the war. Hackish usage probably derives from Richard Feynman's characterisation of certain practices as "cargo cult science" in his book "Surely You're Joking, Mr. Feynman" (W. W. Norton & Co, New York 1985, ISBN 0-393-01921-7).
  • compactness preserving — (theory)   In domain theory, a function f is compactness preserving if f c is compact whenever c is.
  • connecticut compromise — a compromise adopted at the Constitutional Convention, providing the states with equal representation in the Senate and proportional representation in the House of Representatives.
  • cornell list processor — (CLP) A list processing language, an extension of CORC, used for simulation.
  • corrupt practices acts — laws limiting contributions to and expenditures in election campaigns, making illegal certain methods of influencing voters, etc.
  • cosmological principle — the theory that the universe is uniform, homogenous, and isotropic, and therefore appears the same from any position
  • counterinterpretations — Plural form of counterinterpretation.
  • d'alembert's principle — the principle that for a moving body the external forces are in equilibrium with the inertial forces; a generalization of Newton's third law of motion
  • damn with faint praise — If someone damns something with faint praise, they say something about it which sounds quite nice but is not enthusiastic, and shows that they do not have a high opinion of it.
  • decompression sickness — a disorder characterized by severe pain in muscles and joints, cramp, and difficulty in breathing, caused by a sudden and sustained decrease in air pressure, resulting in the deposition of nitrogen bubbles in the tissues
  • deoxyribonucleoprotein — any of a class of nucleoproteins that yield DNA upon partial hydrolysis.
  • distributed processing — a system consisting of a network of microcomputers performing certain functions and linked with a main computer used for more complex tasks
  • draft-quality printing — low-quality, high-speed output in printed form from a printer linked to a word processor
  • electrothermal printer — a printer that produces characters by burning the image on specially coated paper
  • fall prey to something — To fall prey to something bad means to be taken over or affected by it.
  • file transfer protocol — (FTP) A client-server protocol which allows a user on one computer to transfer files to and from another computer over a TCP/IP network. Also the client program the user executes to transfer files. It is defined in STD 9, RFC 959. See also anonymous FTP, FSP, TFTP.
  • flocculent precipitate — a woolly-looking precipitate, as aluminum hydroxide formed by the addition of ammonia to an aluminum-salt solution.
  • functional programming — (programming)   (FP) A program in a functional language consists of a set of (possibly recursive) function definitions and an expression whose value is output as the program's result. Functional languages are one kind of declarative language. They are mostly based on the typed lambda-calculus with constants. There are no side-effects to expression evaluation so an expression, e.g. a function applied to certain arguments, will always evaluate to the same value (if its evaluation terminates). Furthermore, an expression can always be replaced by its value without changing the overall result (referential transparency). The order of evaluation of subexpressions is determined by the language's evaluation strategy. In a strict (call-by-value) language this will specify that arguments are evaluated before applying a function whereas in a non-strict (call-by-name) language arguments are passed unevaluated. Programs written in a functional language are generally compact and elegant, but have tended, until recently, to run slowly and require a lot of memory. Examples of purely functional languages are Clean, FP, Haskell, Hope, Joy, LML, Miranda, and SML. Many other languages such as Lisp have a subset which is purely functional but also contain non-functional constructs. See also lazy evaluation, reduction.
  • genetic fingerprinting — DNA fingerprinting.
  • government osi profile — (networking, standard)   (GOSIP) A subset of OSI standards specific to US Government procurements, designed to maximize interoperability in areas where plain OSI standards are ambiguous or allow excessive options.
  • gross domestic product — gross national product excluding payments on foreign investments. Abbreviation: GDP.
  • gross national product — the total monetary value of all final goods and services produced in a country during one year. Abbreviation: GNP.
  • gross written premiums — Gross written premiums are the total revenue from a contract expected to be received by an insurer before deductions for reinsurance or ceding commissions.
  • gum bichromate process — a contact printing method in which the image is formed on a coating of sensitized gum containing a suitable colored pigment and potassium or ammonium dichromate.
  • home improvement grant — a government grant for house improvements such as insulation, adding a bathroom, or urgent repairs
  • hybrid multiprocessing — (parallel)   (HMP) The kind of multitasking which OS/2 supports. HMP provides some elements of symmetric multiprocessing, using add-on IBM software called MP/2. OS/2 SMP was planned for release in late 1993.
  • imperative programming — imperative language
  • information processing — processing of information, especially the handling of information by computers in accordance with strictly defined systems of procedure.
  • initial program loader — (operating system)   (IPL) A bootstrap loader which loads the part of an operating system needed to load the remainder of the operating system.
  • interpretive semantics — a school of semantic theory based on the doctrine that the rules that relate sentences to their meanings form an autonomous system, separate from the rules that determine what is grammatical in a language
  • java community process — (project)   (JCP) An organization controlled by Sun Microsystems to further the growth of the Java language and runtime. The JCP produces standards called Java Standard Requests, which are "requests" in the same sense as RFCs.
  • le chatelier principle — the law that if a constraint is applied to a system in equilibrium, the system adjusts to a new equilibrium that tends to counteract the constraint.
  • lempel-ziv compression — Substitutional compression schemes proposed by Jakob Ziv and Abraham Lempel in 1977 and 1978. There are two main schemes, LZ77 and LZ78. Lempel-Ziv Welch compression is a variant of LZ78.
  • lesser prairie chicken — either of two North American gallinaceous birds of western prairies, Tympanuchus cupido (greater prairie chicken) or T. pallidicinctus (lesser prairie chicken) having rufous, brown, black, and white plumage.
  • make/prove one's point — If you make your point or prove your point, you prove that something is true, either by arguing about it or by your actions or behaviour.
  • miguel primo de rivera — Diego [dye-gaw] /ˈdyɛ gɔ/ (Show IPA), 1886–1957, Mexican painter.
  • mpeg-2 aac low profile — (compression, standard, algorithm, file format)   A successor of MP3 allowing transparent coding at data rates of 75-80% of that of MP3. It is very different from MP3, only used MDCT, no subband coding.

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