0%

21-letter words containing t, s, r, a

  • clayton antitrust act — an act of Congress in 1914 supplementing the Sherman Antitrust Act and establishing the FTC.
  • collins street farmer — a businessman who invests in farms, land, etc
  • column address strobe — (hardware)   (CAS) A signal sent from a processor (or memory controller) to a dynamic random-access memory (DRAM) (qv) circuit to indicate that the column address lines are valid.
  • comfortably-furnished — containing comfortable furniture
  • commercial television — television companies which make money by selling advertising
  • commercial translator — (language)   An English-like pre-COBOL language for business data processing.
  • committal proceedings — a preliminary hearing in a magistrates' court to decide if there is a case to answer
  • committing magistrate — a magistrate who decides if there is enough evidence for a case to proceed
  • communications server — (operating system)   IBM's rebranding of ACF.
  • comparative statement — a financial statement with figures arranged in two or more parallel columns, each column representing a fiscal year or other period, used to compare performance between periods.
  • compensation neurosis — an unconscious attempt to retain physical or psychological symptoms of illness when some advantage may be obtained (distinguished from malingering).
  • complete metric space — (theory)   A metric space in which every sequence that converges in itself has a limit. For example, the space of real numbers is complete by Dedekind's axiom, whereas the space of rational numbers is not - e.g. the sequence a[0]=1; a[n_+1]:=a[n]/2+1/a[n].
  • completing the square — a method, usually of solving quadratic equations, by which a quadratic expression, as x 2 − 4 x + 3, is written as the sum or difference of a perfect square and a constant, x 2 − 4 x + 4 + 3 − 4 = (x − 2) 2 − 1, by addition and subtraction of appropriate constant terms.
  • computer aided design — (application)   (CAD) The part of CAE concerning the drawing or physical layout steps of engineering design. Often found in the phrase "CAD/CAM" for ".. manufacturing".
  • computer-aided design — the use of computer techniques in designing products, esp involving the use of computer graphics
  • conditional discharge — If someone who is convicted of an offence is given a conditional discharge by a court, they are not punished unless they later commit a further offence.
  • cone penetration test — a method of testing soils by pressing a cone of standard dimensions into the soil under a known load and measuring the penetration
  • conference facilities — Conference facilities are large rooms and pieces of equipment that a hotel provides so an organization can have conference there.
  • confirm a reservation — If you confirm a reservation, you inform someone who has booked a room at a hotel that the reservation is definite.
  • constant mesh gearbox — A constant mesh gearbox is a type of transmission in which all forward gear pairs remain engaged.
  • constantine the great — (Flavius Valerius Aurelius Constantinus"the Great") a.d. 288?–337, Roman emperor 324–337: named Constantinople as the new capital; legally sanctioned Christian worship.
  • constitutional strike — a stoppage of work by the workforce of an organization, with the approval of the trade union concerned, in accordance with the dispute procedure laid down in a collective agreement between the parties
  • consummatory behavior — a behavior pattern that occurs in response to a stimulus and that achieves the satisfaction of a specific drive, as the eating of captured prey by a hungry predator (distinguished from appetitive behavior).
  • continental breakfast — A continental breakfast is breakfast that consists of food such as bread, butter, jam, and a hot drink. There is no cooked food.
  • continuous stationery — paper that is perforated between pages and folded concertina fashion, used in dot-matrix, line, and daisywheel printers
  • convertible insurance — any form of life or health insurance, either individual or group, that enables the insured to change or convert the insurance to another form, as term to whole life insurance or group to individual health insurance.
  • coronal mass ejection — a cloud of particles ejected from the sun's surface during a solar flare
  • corporate hospitality — Corporate hospitality is the entertainment that a company offers to its most valued clients, for example by inviting them to sporting events and providing them with food and drink.
  • corpuscular radiation — radiation consisting of atomic and subatomic particles, as alpha particles, beta particles, and neutrons.
  • corrupt practices act — any of several U.S. statutes for ensuring the purity of elections by forbidding the purchase of votes, restricting the amount and source of political contributions, limiting campaign expenditures, and requiring the submission of an itemized statement of such expenditures.
  • cosmological argument — one of the arguments that purport to prove the existence of God from empirical facts about the universe, esp the argument to the existence of a first cause
  • cosmological redshift — the part of the redshift of celestial objects resulting from the expansion of the universe.
  • cost control callback — (communications)   A system where a computer automatically rejects incoming dial-up calls from certain telephone numbers and calls them back, with the result that the caller pays nothing for the connection. This differs from security callback in that it applies to certain phone numbers instead of to certain user names.
  • cost driver attribute — (programming)   Factors affecting the productivity of software development. These include attributes of the software, computers, personnel, and project.
  • counterdemonstrations — Plural form of counterdemonstration.
  • court of common pleas — (formerly) a superior court exercising jurisdiction in civil actions between private citizens
  • credit card insurance — Credit card insurance is coverage for situations in which someone fraudulently uses your credit card.
  • credit life insurance — insurance guaranteeing payment of the unpaid portion of a loan if the debtor should die.
  • criminal conversation — (formerly) a common law action brought by a husband by which he claimed damages against an adulterer
  • crystallographic axis — one of the imaginary reference lines passing through the center of an ideal crystal, designated a, b, or c.
  • customer satisfaction — When customers are pleased with the goods or services they have bought, you can refer to customer satisfaction.
  • dacryocystorhinostomy — A surgical procedure to restore the flow of tears into the nose from the lacrimal sac when the nasolacrimal duct does not function.
  • darby and joan settee — a settee having a back resembling two chair backs.
  • data parallel haskell — (language, parallel)   Adds Parallel Objects with arbitrary Dimension (PODs) and POD comprehensions to Haskell.
  • data set organization — (operating system, storage)   (DSORG) An IBM term for file structure. These include PS physical sequential, DA direct access, IS indexed sequential, PO partitioned (a library). This system dates from OS/360, and breaks down beginning with VSAM and VTAM, where it is no longer applied. Sequential and indexed data sets can be accessed using either a "basic" or a "queued" "access method." For example a DSORG=PS file can use either BSAM (basic sequential access method) or QSAM (queued sequential access method). It can also be processed as a direct file using BDAM. Likewise a library can be processed using BPAM (basic partitioned access method), BSAM, QSAM, or BDAM. DSORG and access method are somewhat, but not completely, orthogonal. The "basic" access method deals with physical blocks rather than records, and usually provides more control over the specific device. Each I/O operation using the "basic" access method reads or writes a single block. A "basic" read or write starts an asynchronous I/O operation, and the programmer is responsible for waiting for completion and checking for errors. The "queued" access method deals with logical records and provides blocking and deblocking services. It is "queued" because it provides read-ahead and write-behind services. While a program is processing records in one input block, for example, QSAM may be reading one or more blocks ahead. Queued "get" or "put" operations are synchronous as far as the programmer is concerned. The operation is complete when the next logical record has been successfully processed. EXCP (Execute Channel Program) is a lower-level method of accessing data. IBM manuals usually named "Data Administration Guide", e.g. SC26-4505-1 for MVS/ESA DFP 3.1, provide more detail about data set organizations and access methods.
  • death by misadventure — a possible verdict in a coroner's court, indicating that death was due to an accident not to a crimes or somebody's negligence
  • deep scattering layer — any of the stratified zones in the ocean which reflect sound during echo sounding, usually composed of marine organisms which migrate vertically from c. 250 to 800 m (c. 820 to 2,625 ft)
  • democratic centralism — the Leninist principle that policy should be decided centrally by officials, who are nominally democratically elected
  • department of defense — the department of the U.S. federal government charged with ensuring that the military capacity of the U.S. is adequate to safeguard the national security. Abbreviation: DOD.
  • department of justice — the department of the U.S. federal government charged with the responsibility for the enforcement of federal laws. Abbreviation: DOJ.
Was this page helpful?
Yes No
Thank you for your feedback! Tell your friends about this page
Tell us why?