0%

21-letter words containing c, i, v, l, t, e

  • acquaintance violence — impulsive aggressive behaviour towards someone with whom the attacker has been in contact
  • active matrix display — (hardware)   A type of liquid crystal display where each display element (each pixel) includes an active component such as a transistor to maintain its state between scans. Contrast passive matrix display.
  • application developer — (job)   Someone who does application development.
  • application executive — (language)   (AE) An embeddable language, written as a C interpreter by Brian Bliss at UIUC. AE is compiled with an application and thus exists in the same process and address space. It includes a dbx symbol table scanner to access compiled variables and routines, or you can enter them manually by providing a type/name declaration and the address. When the interpreter is invoked, source code fragments are read from the input stream (or a string), parsed, and evaluated immediately. The user can call compiled functions in addition to a few built-in intrinsics, declare new data types and data objects, etc. Different input streams can be evaluated in parallel on Alliant computers. AE has been ported to SunOS (cc or gcc), Alliant FX and Cray YMP (soon).
  • as luck would have it — fortunately
  • atrioventricular node — a small mass of muscular fibers at the base of the wall between the atria, conducting impulses received from the sinoatrial node by way of the atrioventricular bundles and, under certain conditions, functioning for the sinoatrial node as pacemaker of the heart. Abbreviation: A-V node.
  • behavioural contagion — the spread of a particular type of behaviour, such as crying, through a crowd or group of people
  • cantilever foundation — a building foundation supporting its load partly or wholly upon cantilevers.
  • caviar to the general — a thing appealing only to a highly cultivated taste: Hamlet II, ii
  • civil rights movement — campaign for human freedoms
  • cognitive development — the process of acquiring intelligence and increasingly advanced thought and problem-solving ability from infancy to adulthood.
  • collective bargaining — When a trade union engages in collective bargaining, it has talks with an employer about its members' pay and working conditions.
  • collimator viewfinder — a type of viewfinder in a camera
  • commercial television — television companies which make money by selling advertising
  • comparative philology — comparative linguistics.
  • competitive exclusion — the dominance of one species over another when both are competing for the same resources, etc
  • conventional medicine — the type of medicine that is generally used in the US and Europe which uses drugs and surgery as a form of treatment
  • conventional mortgage — A conventional mortgage is a fixed rate mortgage with a standard term of 15, 20, or 30 years.
  • convertible debenture — a convertible bond that is not secured with collateral.
  • 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.
  • counter-revolutionary — Counter-revolutionary activities are activities intended to reverse the effects of a previous revolution.
  • criminal conversation — (formerly) a common law action brought by a husband by which he claimed damages against an adulterer
  • deprovincialization's — to make provincial in character.
  • development education — an area of study that aims to give pupils an understanding of their involvement in world affairs
  • devil's walking-stick — Hercules'-club (sense 1)
  • devil's-walking-stick — Hercules-club (def 2).
  • digital videocassette — a videocassette containing magnetic tape used for high-fidelity digital recording or playback of video. Abbreviation: DVC.
  • displacement activity — a behavior performed out of its usual context and apparently irrelevant to the prevailing situation, as eating when an unknown individual approaches, tending to occur when appropiate behaviors, as attacking or fleeing, are in conflict or obstructed.
  • disruptive technology — A disruptive technology is a new technology, such as computers and the Internet, which has a rapid and major effect on technologies that existed before.
  • file service protocol — (protocol)   (FSP) A protocol, similar to FTP, for copying files between computers. It's designed for anonymous archives, and has protection against server and network overloading. It doesn't use connections so it can survive interruptions in service. Until 1993-08-12, FSP didn't stand for anything. Wen-King was responsible for the initials and Michael Grubb <[email protected]> for their eventual expansion. Other suggestions were "File Slurping Protocol", "Flaky Stream Protocol" and "FTP's Sexier Partner".
  • first-dollar coverage — insurance that provides payment for the full loss up to the insured amount with no deductibles.
  • five civilized tribes — the Cherokees, Chickasaws, Choctaws, Creeks, and Seminoles of the Indian Territory
  • flat-coated retriever — one of an English breed of large sporting dogs having a flat, dense, shiny black or liver-colored coat, small ears, and long jaws, used for retrieving game from both water and land.
  • fraudulent conversion — conversion committed with the intent to defraud
  • functional imperative — a requirement for the survival of any social system, as communication, control of conflict, or socialization.
  • generic type variable — (programming)   (Also known as a "schematic type variable"). Different occurrences of a generic type variable in a type expression may be instantiated to different types. Thus, in the expression let id x = x in (id True, id 1) id's type is (for all a: a -> a). The universal quantifier "for all a:" means that a is a generic type variable. For the two uses of id, a is instantiated to Bool and Int. Compare this with let id x = x in let f g = (g True, g 1) in f id This looks similar but f has no legal Hindley-Milner type. If we say f :: (a -> b) -> (b, b) this would permit g's type to be any instance of (a -> b) rather than requiring it to be at least as general as (a -> b). Furthermore, it constrains both instances of g to have the same result type whereas they do not. The type variables a and b in the above are implicitly quantified at the top level: f :: for all a: for all b: (a -> b) -> (b, b) so instantiating them (removing the quantifiers) can only be done once, at the top level. To correctly describe the type of f requires that they be locally quantified: f :: ((for all a: a) -> (for all b: b)) -> (c, d) which means that each time g is applied, a and b may be instantiated differently. f's actual argument must have a type at least as general as ((for all a: a) -> (for all b: b)), and may not be some less general instance of this type. Type variables c and d are still implicitly quantified at the top level and, now that g's result type is a generic type variable, any types chosen for c and d are guaranteed to be instances of it. This type for f does not express the fact that b only needs to be at least as general as the types c and d. For example, if c and d were both Bool then any function of type (for all a: a -> Bool) would be a suitable argument to f but it would not match the above type for f.
  • give place to someone — to make room for or be superseded by someone
  • inclusive disjunction — See under disjunction (def 2a).
  • lafcadio's adventures — French Les Caves du Vatican. a novel (1914) by André Gide.
  • leave sb in the lurch — If someone leaves you in the lurch, they go away or stop helping you at a very difficult time.
  • light armored vehicle — an eight-wheeled armored reconnaissance car with a 25mm cannon, in service with the U.S. Army and Marine Corps in the 1980s.
  • magneto-optical drive — magneto-optical disk
  • model-view-controller — (programming)   (MVC) A way of partitioning the design of interactive software; a software architecture pattern. The "model" is the internal workings of the program (the data objects and algorithms), the "view" is how the user sees the state of the model and the "controller" is how the user changes the state or provides input. MVC was the original kind of what is now sometimes called an MV* pattern. Trygve Reenskaug introduced it into Smalltalk-76 while visiting Xerox PARC in the 1970s.
  • motivational research — the application of the knowledge and techniques of the social sciences, especially psychology and sociology, to understanding consumer attitudes and behavior: used as a guide in advertising and marketing.
  • national park service — a division of the Department of the Interior, created in 1916, that administers national parks, monuments, historic sites, and recreational areas.
  • nonproportional cover — Nonproportional cover is reinsurance cover such as excess of loss reinsurance where the reinsurer's liability is not calculated as a proportion of the insurance.
  • nonrestrictive clause — a relative clause that describes or supplements but is not essential in establishing the identity of the antecedent and is usually set off by commas in English. In This year, which has been dry, is bad for crops the clause which has been dry is a nonrestrictive clause.
  • nonviolent resistance — passive resistance, peaceful protest
  • objective correlative — a completely depicted situation or chain of events that objectifies a particular emotion in such a way as to produce or evoke that emotion in the reader.
  • politically motivated — If an act of violence is politically motivated, it is carried out in the interests of a particular government or political party.

On this page, we collect all 21-letter words with C-I-V-L-T-E. It’s easy to find right word with a certain length. It is the easiest way to find 21-letter word that contains in C-I-V-L-T-E 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?