0%

22-letter words containing o, c, t, p

  • comparative psychology — the study of the similarities and differences in the behaviour of different species
  • compass deviation card — a card, sheet, or the like, with two compass roses printed on it concentrically, for recording, on a given voyage, the amount of deviation for which the navigator must compensate in using the ship's compass to steer a magnetic course.
  • complementary medicine — the treatment, alleviation, or prevention of disease by such techniques as osteopathy, homeopathy, aromatherapy, and acupuncture, allied with attention to such factors as diet and emotional stability, which can affect a person's wellbeing
  • complete metamorphosis — physical changes in the development of certain insects that include egg, larva, pupa, and adult stages, as in beetles, moths, or bees
  • complete quadrilateral — a polygon consisting of four lines and their six points of intersection
  • component architecture — (programming)   A notion in object-oriented programming where "components" of a program are completely generic. Instead of having a specialised set of methods and fields they have generic methods through which the component can advertise the functionality it supports to the system into which it is loaded. This enables completely dynamic loading of objects. JavaBeans is an example of a component architecture. See also design pattern.
  • component object model — (programming)   (COM) An open software architecture from DEC and Microsoft, allowing interoperation between ObjectBroker and OLE. Microsoft evolved COM into DCOM. On page XV of Box's book in the foreword by Charlie Kindel he says, "It is Mark Ryland's fault that some people call COM the 'Common Object Model.' He deeply regrets it and apologizes profusely."
  • compound annual return — the total return available from an investment, deposit, etc, when the interest earned is used to augment the capital
  • compulsory liquidation — the liquidation of a business in order to settle its debts
  • compuserve corporation — (company)   The parent organisation of CompuServe Information Service, CompuServe Network Services and CompuServe Remote Computing Services. CompuServe was owned by H.R. Block but is now (1999) owned by America On-Line.
  • computational geometry — (mathematics)   The study of algorithms for combinatorial, topological, and metric problems concerning sets of points, typically in Euclidean space. Representative areas of research include geometric search, convexity, proximity, intersection, and linear programming.
  • computational learning — grammatical inference
  • concurrent massey hope — (language, functional programming)   An extension of Massey Hope, by Peter Burgess, Robert Pointon, and Nigel Perry <[email protected]> of Massey University, NZ, that provides multithreading and typed inter-thread communication. It uses C for intermediate code rather than assembly language.
  • 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.
  • conservation of parity — the principle that the parity of the total wave function describing a system of elementary particles is conserved. In fact it is not conserved in weak interactions
  • continental philosophy — a general term for related philosophical traditions that originated in 20th-century continental Europe, including critical theory, deconstruction, existentialism, hermeneutics, phenomenology, and structuralism (contrasted with analytic philosophy).
  • contract of employment — a written agreement between an employer and an employee, that, taken together with the rights of each under statute and common law, determines the employment relations between them
  • cornell list processor — (CLP) A list processing language, an extension of CORC, used for simulation.
  • corporate headquarters — the main offices of a corporation, from where it runs its business
  • corporate manslaughter — the death of someone caused by an act of corporate negligence
  • corrupt practices acts — laws limiting contributions to and expenditures in election campaigns, making illegal certain methods of influencing voters, etc.
  • counterinterpretations — Plural form of counterinterpretation.
  • curvature of the spine — a condition in which the spine is abnormally curved
  • cytidine monophosphate — a nucleotide constituent of ribonucleic acids; a phosphoric acid ester of cytidine. Abbreviation: CMP.
  • decompartmentalization — the act of decompartmentalizing
  • deoxyribonucleoprotein — any of a class of nucleoproteins that yield DNA upon partial hydrolysis.
  • department of commerce — the department of the U.S. federal government that promotes and administers domestic and foreign commerce. Abbreviation: DOC.
  • descriptive cataloging — the aspect of cataloging concerned with the bibliographic and physical description of a book, recording, or other work, accounting for such items as author or performer, title, edition, and imprint as opposed to subject content.
  • dicyclopentadienyliron — ferrocene (def 1).
  • direct public offering — A direct public offering is stock offered directly for sale to investors by a company without the use of underwriters or brokers.
  • directional microphone — a microphone that has a greater sensitivity to sounds coming from a particular area in front of it: used to eliminate unwanted sounds.
  • disciplinary committee — a committee charged with examining alleged breaches of discipline within an organization, profession, etc and adjudicating on them
  • distributed processing — a system consisting of a network of microcomputers performing certain functions and linked with a main computer used for more complex tasks
  • earth inductor compass — a compass actuated by induction from the earth's magnetic field.
  • ectotrophic mycorrhiza — a type of mycorrhiza, typical of temperate and Boreal trees, in which the fungus forms a layer on the outside of the roots of the plant
  • educational psychology — a branch of psychology concerned with developing effective educational techniques and dealing with psychological problems in schools.
  • electroencephalographs — Plural form of electroencephalograph.
  • electroencephalography — The measurement of electrical activity in different parts of the brain and the recording of such activity as a visual trace (on paper or on an oscilloscope screen).
  • electrolytic capacitor — An electrolytic capacitor is an electrical capacitor with an electrolyte between the two plates.
  • electrophysiologically — In an electrophysiological way.
  • electrothermal printer — a printer that produces characters by burning the image on specially coated paper
  • employers' association — a body of employers, usually from the same sector of the economy, associated to further the interests of member companies by conducting negotiations with trade unions, providing advice, making representations to other bodies, etc
  • endotrophic mycorrhiza — the most widespread and common type of mycorrhiza, in which the fungus lives within the cells of the roots of the plant
  • enhanced parallel port — (hardware)   (EPP) A parallel port that confirms to the IEEE's EPP standard. An EPP is actually an expansion bus that can handle 64 disk drives and other peripherals.
  • experimental condition — one of the distinct states of affairs or values of the independent variable for which the dependent variable is measured in order to carry out statistical tests or calculations
  • fallacy of composition — the fallacy of inferring that a property of parts or members of a whole is also a property of the whole (opposed to fallacy of division).
  • 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.
  • fixed point combinator — (mathematics)   (Y) The name used in combinatory logic for the fixed point function, also written as "fix".
  • 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.
Was this page helpful?
Yes No
Thank you for your feedback! Tell your friends about this page
Tell us why?