0%

23-letter words containing a, c, e, h

  • complain about the food — If you complain about the food, you say that you are not satisfied with it.
  • computerized tomography — a radiological technique that produces images of cross sections through a patient's body using low levels of radiation
  • concertgebouw orchestra — an Amsterdam orchestra, established in 1888, that has been independent of the Concertgebouw hall since World War II
  • connection machine lisp — (language)   Lisp with a parallel data structure, the 'xapping', an array of values assigned to an array of sites.
  • cyclic redundancy check — (algorithm)   (CRC or "cyclic redundancy code") A number derived from, and stored or transmitted with, a block of data in order to detect corruption. By recalculating the CRC and comparing it to the value originally transmitted, the receiver can detect some types of transmission errors. A CRC is more complicated than a checksum. It is calculated using division either using shifts and exclusive ORs or table lookup (modulo 256 or 65536). The CRC is "redundant" in that it adds no information. A single corrupted bit in the data will result in a one bit change in the calculated CRC but multiple corrupted bits may cancel each other out. CRCs treat blocks of input bits as coefficient-sets for polynomials. E.g., binary 10100000 implies the polynomial: 1*x^7 + 0*x^6 + 1*x^5 + 0*x^4 + 0*x^3 + 0*x^2 + 0*x^1 + 0*x^0. This is the "message polynomial". A second polynomial, with constant coefficients, is called the "generator polynomial". This is divided into the message polynomial, giving a quotient and remainder. The coefficients of the remainder form the bits of the final CRC. So, an order-33 generator polynomial is necessary to generate a 32-bit CRC. The exact bit-set used for the generator polynomial will naturally affect the CRC that is computed. Most CRC implementations seem to operate 8 bits at a time by building a table of 256 entries, representing all 256 possible 8-bit byte combinations, and determining the effect that each byte will have. CRCs are then computed using an input byte to select a 16- or 32-bit value from the table. This value is then used to update the CRC.
  • cyclohexylsulfamic acid — cyclamic acid.
  • dacryocystorhinostomies — Plural form of dacryocystorhinostomy.
  • descriptive metaphysics — the philosophical study of the structure of how we think about the world
  • dichlorodifluoromethane — a colourless nonflammable gas easily liquefied by pressure: used as a propellant in aerosols and fire extinguishers and as a refrigerant. Formula: CCl2F2
  • differential psychology — the branch of psychology dealing with the study of characteristic differences or variations of groups or individuals, especially through the use of analytic techniques and statistical methods.
  • direct characterization — the process by which the personality of a fictitious character is revealed by the use of descriptive adjectives, phrases, or epithets.
  • director of photography — the person who is responsible for all operations concerning camera work and lighting during the production of a film.
  • dishonourable discharge — dismissal from the US armed forces by a court martial as a result of serious misconduct
  • drawing exchange format — (DXF) A file format for graphical information, similar to IGES. Commonly used by CAD systems like AutoCAD.
  • duplication of the cube — the insoluble problem of constructing a cube having twice the volume of a given cube, using only a ruler and compass.
  • eastern orthodox church — Orthodox Church (def 1).
  • electroencephalographer — A specialist in electroencephalography.
  • electroencephalographic — Of or pertaining to electroencephalography or electroencephalographs.
  • electrophotographically — In an electrophotographic manner; by means of electrophotography.
  • electrostatic discharge — (hardware, testing)   (ESD) One kind of test that hardware usually has to pass to prove it is suitable for sale and use. The hardware must still work after is has been subjected to some level of electrostatic discharge. Some organisations have their own ESD requirements which hardware must meet before it will be considered for purchase. Different countries have different legal regulations about levels of ESD. See also Radio Frequency Interference, Electromagnetic Compatibility.
  • embarrassment of riches — If you say that someone has an embarrassment of riches, you mean that they have so many good things that these things are a problem.
  • encephalitis lethargica — a form of encephalitis, or sleeping sickness, epidemic in the period from 1915 to 1926
  • equivalent focal length — the ratio of the size of an image of a small distant object near the optical axis to the angular distance of the object in radians
  • exchange rate mechanism — European financial system
  • execute channel program — (operating system)   (EXCP) An IBM system for low-level file access, where the programmer is completely responsible for providing a list of device-specific "channel comands" to be executed by I/O channels, control units and/or devices. The operating system will simply check the "CCW" chains for security purposes (access invalid memory or outside of file extents) and then schedule them for execution.
  • experimental psychology — the scientific study of the individual behaviour of man and other animals, esp of perception, learning, memory, motor skills, and thinking
  • extended graphics array — (hardware)   (XGA) An IBM display standard introduced in 1990. XGA supports a resolution of 1024 x 768 pixels with a palette of 256 colours, or 640 x 480 with high colour (16 bits per pixel). XGA-2 added 1024 x 768 support for high colour and higher refresh rates, improved performance, and supports 1360 x 1024 in 16 colours. XGA is probably not the same as 8514-A. See also VESA's EVGA released at a similar time.
  • extended reach drilling — Extended reach drilling is drilling a well horizontally to at least twice its vertical depth.
  • extravehicular activity — the act or an instance of floating and manoeuvring in space, outside but attached by a lifeline to a spacecraft
  • fall between the cracks — to fail to fit into a given agenda or program
  • fall through the cracks — to break without complete separation of parts; become fissured: The plate cracked when I dropped it, but it was still usable.
  • fendalton shopping cart — a four-wheel drive recreational vehicle
  • foreign exchange market — the market for the international buying, selling and trading of currencies
  • foreign exchange office — (communications)   (FXO) An analog telephone plug on a handset that receives POTS service from the telephone exchange ("central office") via a Foreign eXchange Subscriber socket and provides on-hook/off-hook indication to the exchange.
  • forward exchange market — a market for contracts that specify the exchange rate of a currency to be delivered at a later date
  • four colour map theorem — (mathematics, application)   (Or "four colour theorem") The theorem stating that if the plane is divided into connected regions which are to be coloured so that no two adjacent regions have the same colour (as when colouring countries on a map of the world), it is never necessary to use more than four colours. The proof, due to Appel and Haken, attained notoriety by using a computer to check tens of thousands of cases and is thus not humanly checkable, even in principle. Some thought that this brought the philosophical status of the proof into doubt. There are now rumours of a simpler proof, not requiring the use of a computer. See also chromatic number
  • fraunhofer gesellschaft — (company)   (FhG, FhG IIS, Institut für Integrierte Schaltungen) A german company, named after the physicist. IIS is Integrated Circuit Institute. FhG are known for their research on audio compression, especially MPEG-1 Layer-3 (MP3).
  • fully associative cache — (memory management)   A type of cache in which data from any address can be stored in any cache location. The whole address must be used as the tag (the value that identifies a block of data in the cache). All tags must be compared simultaneously (associatively) with the requested address and if one matches then its associated data is accessed. This requires an associative memory to hold the tags which makes this form of cache more expensive. It does however solve the problem of contention for cache locations (cache conflict) since a block need only be flushed when the whole cache is full and then the block to flush can be selected in a more efficient way. The alternatives are direct mapped cache or set associative cache.
  • function graph language — (language)   (FGL) The machine language for the AMPS (Applicative Multi-Processing System) proposed by Robert Keller, Gary Lindstrom and Suhas Patil at the University of Utah.
  • german southwest africa — a former name of Namibia.
  • grand duchess charlotteGrand Duchess (Charlotte Aldegonde Elise Marie Wilhelmine) 1896–1985, sovereign of Luxembourg 1919–64.
  • grant-maintained school — a school funded directly by central government
  • graphical kernel system — (graphics, standard)   (GKS) The widely recognised standard ANSI X3.124 for graphical input/output. GKS is worked on by the ISO/IEC group JTC1/SC24. It provides applications programmers with standard methods of creating, manipulating, and displaying or printing computer graphics on different types of computer graphics output devices. It provides an abstraction to save programmers from dealing with the detailed capabilities and interfaces of specific hardware. GKS defines a basic two-dimensional graphics system with: uniform input and output primitives; a uniform interface to and from a GKS metafile for storing and transferring graphics information. It supports a wide range of graphics output devices including such as printers, plotters, vector graphics devices, storage tubes, refresh displays, raster displays, and microfilm recorders.
  • greater 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.
  • harvard mark ii machine — (computer, history)   A relay-based computer designed and built by Howard Aiken, with support from IBM, for the United States Navy's Naval Proving Ground, between 1942 - 1947. The Harvard Mark II was the second in a series of four electro-mechanical computers that were forerunners of the ENIAC.
  • have one's act together — anything done, being done, or to be done; deed; performance: a heroic act.
  • have one's work cut out — to have as much work as one can manage
  • have struck/hit paydirt — If you say that someone has struck paydirt or has hit paydirt, you mean that they have achieved sudden success or gained a lot of money very quickly.
  • have tickets on oneself — to be conceited
  • health maintenance plan — A health maintenance plan is a health insurance policy that provides preventive care like vaccinations, doctor checkups, and screenings, for a prepaid fee.
Was this page helpful?
Yes No
Thank you for your feedback! Tell your friends about this page
Tell us why?