0%

18-letter words containing c, o, l, i, t, e

  • double achievement — a representation of the arms of a husband beside those of his wife such that a difference of rank between them is shown.
  • dragline excavator — a power shovel that operates by being dragged by cables at the end of an arm or jib: used for quarrying, opencast mining, etc
  • dramatic monologue — a poetic form in which a single character, addressing a silent auditor at a critical moment, reveals himself or herself and the dramatic situation.
  • drinking chocolate — sweetened cocoa powder
  • dysfunctionalities — Plural form of dysfunctionality.
  • ecma international — (body)   (Formerly European Computer Manufacturers Association) An industry association founded in 1961 and dedicated to the standardisation of information and communication systems. ECMA edits standards and technical reports. All ECMA publications are available free of charge. The best known ECMA standard is ECMA 262, defining the scripting language ECMAScript.
  • eighty-column mind — (abuse)   The sort said to be possessed by persons for whom the transition from punched card to paper tape was traumatic (nobody has dared tell them about disks yet). It is said that these people, including (according to an old joke) the founder of IBM, will be buried "face down, 9-edge first" (the 9-edge being the bottom of the card). This directive is inscribed on IBM's 1402 and 1622 card readers and is referenced in a famous bit of doggerel called "The Last Bug", the climactic lines of which are as follows: He died at the console Of hunger and thirst. Next day he was buried, Face down, 9-edge first. The eighty-column mind is thought by most hackers to dominate IBM's customer base and its thinking. See fear and loathing, card walloper.
  • ejaculatio praecox — premature ejaculation during sexual intercourse
  • eleanor of castile — 1246–90, Spanish wife of Edward I of England. Eleanor Crosses were erected at each place at which her body rested between Nottingham, where she died, and London, where she is buried
  • electoral district — an area that is considered as unit for the purposes of an election
  • electoral register — An electoral register is an official list of all the people who have the right to vote in an election.
  • electric potential — the work required to transfer a unit positive electric charge from an infinite distance to a given point against an electric field
  • electrocardiograms — Plural form of electrocardiogram.
  • electrocardiograph — A machine used for electrocardiography.
  • electrocorticogram — a record of brain waves obtained by placing electrodes directly on the surface of the exposed cerebral cortex
  • electrocyclization — (organic chemistry) an electrocyclic reaction.
  • electrodesiccation — The drying of tissue, and the prevention of bleeding, using a high-frequency electric current.
  • electroluminescent — Having the quality of electroluminescence.
  • electronic banking — the transfer of money between financial institutions through an exchange of electronic signals over a network
  • electronic editing — editing of a sound or vision tape recording by electronic rerecording rather than by physical cutting
  • electronic mailbox — a device used to store electronic mail
  • electronic meeting — (messaging)   The use of a network of personal computers to improve communication that takes place in a meeting. Electronic meetings are effective with as few as two participants and with over 100 participants. Participants can be face-to-face in a meeting room or distributed around the world. They may all be participating at the same time or different times.
  • electronic receipt — An electronic receipt is one created in a computerized cash register, or by an online retailer. It will usually show the date and time, how payment is made, and other details of the sale.
  • electronic tagging — Electronic tagging is a system in which a criminal or suspected criminal has an electronic device attached to them which enables the police to know if they leave a particular area.
  • electronic warfare — the military use of electronics to prevent or reduce an enemy's effective use and to protect friendly use of electromagnetic radiation equipment
  • electroretinograms — Plural form of electroretinogram.
  • electrostatic lens — an electron lens consisting of a system of metal electrodes, the electrostatic field of which focuses the charged particles
  • electrostatic unit — any unit that belongs to a system of electrical cgs units in which the electric constant is given the value of unity and is taken as a pure number
  • electrotherapeutic — Relating to electrotherapeutics.
  • emotional literacy — the ability to deal with one's emotions and recognize their causes
  • employment service — (in the United States) a government department established to collect and supply to the unemployed information about job vacancies and to employers information about availability of prospective workers
  • enantioselectivity — (chemistry) The selectivity of a reaction towards one of a pair of enantiomers.
  • equinoctial circle — celestial equator
  • equinoctial spring — either of the two highest spring tides that occur at the equinoxes
  • erectile impotence — impotence caused by the inability of the penis to become sufficiently firm to penetrate the vagina
  • essence of violets — an alcoholic solution derived from violets, used as perfume
  • ethnomusicological — Relating to or pertaining to ethnomusicology.
  • ethnopsychological — Relating to ethnopsychology.
  • euclid's algorithm — (algorithm)   (Or "Euclidean Algorithm") An algorithm for finding the greatest common divisor (GCD) of two numbers. It relies on the identity gcd(a, b) = gcd(a-b, b) To find the GCD of two numbers by this algorithm, repeatedly replace the larger by subtracting the smaller from it until the two numbers are equal. E.g. 132, 168 -> 132, 36 -> 96, 36 -> 60, 36 -> 24, 36 -> 24, 12 -> 12, 12 so the GCD of 132 and 168 is 12. This algorithm requires only subtraction and comparison operations but can take a number of steps proportional to the difference between the initial numbers (e.g. gcd(1, 1001) will take 1000 steps).
  • fettuccine alfredo — fettuccine in cream sauce with grated Parmesan cheese.
  • file control block — (operating system)   (FCB) An MS-DOS data structure that stores information about an open file. The number of FCBs is configured in CONFIG.SYS with a command FCBS=x,y where x (between 1 and 255 inclusive, default 4) specifies the number of file control blocks to allocate and therefore the number of files that MS-DOS can have open at one time. y (not needed from DOS 5.0 onward) specifies the number of files to be closed automatically if all x are in use.
  • first class module — (programming)   A module that is a first class data object of the programming language, e.g. a record containing functions. In a functional language, it is standard to have first class programs, so program building blocks can have the same status.
  • fly in the face of — to move through the air using wings.
  • forward compatible — forward compatibility
  • functional disease — a disease in which there is an abnormal change in the function of an organ, but no structural alteration in the tissues involved (opposed to organic disease).
  • functional testing — (testing)   (Or "black-box testing", "closed-box testing") The application of test data derived from functional requirements without regard to how the system is implemented.
  • galactic longitude — the angular distance in degrees measured eastward in the galactic plane from a radius drawn from the earth as center to the constellation Sagittarius.
  • galilean telescope — a refracting telescope that forms an erect image, consisting of an objective of relatively long focal length that causes light rays to converge and an eyepiece of short focal length that causes them to diverge.
  • garbage collection — (programming)   (GC) The process by which dynamically allocated storage is reclaimed during the execution of a program. The term usually refers to automatic periodic storage reclamation by the garbage collector (part of the run-time system), as opposed to explicit code to free specific blocks of memory. Automatic garbage collection is usually triggered during memory allocation when the amount free memory falls below some threshold or after a certain number of allocations. Normal execution is suspended and the garbage collector is run. There are many variations on this basic scheme. Languages like Lisp represent expressions as graphs built from cells which contain pointers and data. These languages use automatic dynamic storage allocation to build expressions. During the evaluation of an expression it is necessary to reclaim space which is used by subexpressions but which is no longer pointed to by anything. This reclaimed memory is returned to the free memory pool for subsequent reallocation. Without garbage collection the program's memory requirements would increase monotonically throughout execution, possibly exceeding system limits on virtual memory size. The three main methods are mark-sweep garbage collection, reference counting and copying garbage collection. See also the AI koan about garbage collection.
  • gene amplification — an increase in the frequency of replication of a DNA segment.
Was this page helpful?
Yes No
Thank you for your feedback! Tell your friends about this page
Tell us why?