0%

24-letter words containing s, y, n, c

  • atanasoff-berry computer — (computer)   (ABC) An early design for a binary calculator, one of the predecessors of the digital computer. The ABC was partially constructed between 1937 and 1942 by Dr. John Vincent Atanasoff and Clifford Berry at Iowa State College. As well as binary arithmetic, it incorporated regenerative memory, parallel processing, and separation of memory and computing functions. The electronic parts were mounted on a rotating drum, making it hybrid electronic/electromechanical. It was designed to handle only a single type of mathematical problem and was not automated. The results of a single calculation cycle had to be retrieved by a human operator, and fed back into the machine with all new instructions, to perform complex operations. It lacked any serious form of logical control or conditional statements. Atanasoff's patent application was denied because he never have a completed, working product. Ideas from the ABC were used in the design of ENIAC (1943-1946).
  • atomic energy commission — (in the US) a federal board established in 1946 to administer and develop domestic atomic energy programmes
  • austin kyoto common lisp — (language)   (AKCL) A collection of ports, bug fixes, and performance improvements to KCL by William Schelter <[email protected]>, <[email protected]>, University of Texas. Version 1-615 includes ports to Decstation 3100, HP9000/300, i386/Sys V, IBM-PS2/AIX, IBM-RT/AIX, SGI, Sun-3/Sunos 3 or 4, Sun-4, Sequent Symmetry, IBM370/AIX, VAX/BSD VAX/Ultrix, NeXT.
  • auto-erotic asphyxiation — asphyxia caused by intentionally strangling oneself while masturbating in order to intensify the orgasm through reduced oxygen flow to the brain.
  • autonomic nervous system — the section of the nervous system of vertebrates that controls the involuntary actions of the smooth muscles, heart, and glands. It has two divisions: the sympathetic and the parasympathetic
  • bay of mont-saint-michel — an inlet of the Gulf of St Malo
  • british technology group — an organization formed in 1981 by the merger of the National Enterprise Board and the National Research and Development Corporation to encourage and finance technological innovation: privatized in 2000
  • by common/mutual consent — If something happens by common consent or by mutual consent, it happens as the result of an agreement between the people or groups involved.
  • carry coals to newcastle1st Duke of, Pelham-Holles, Thomas.
  • chromaticity coordinates — three numbers used to specify a colour, each of which is equal to one of the three tristimulus values divided by their sum
  • chronic fatigue syndrome — Chronic fatigue syndrome is an illness that is thought to be caused by a virus, and which affects people for a long period of time. Its symptoms include tiredness and aching muscles. The abbreviation CFS is often used.
  • coefficient of viscosity — the measure of the viscosity of a fluid, equal to the force per unit area required to maintain a difference of velocity of one unit distance per unit time between two parallel planes in the fluid that lie in the direction of flow and are separated by one unit distance: usually expressed in poise or centipoise.
  • colony collapse disorder — a pathological condition affecting a large number of honeybee colonies, in which various stresses may lead to the abrupt disappearance of worker bees from the hive, leaving only the queen and newly hatched bees behind and thus causing the colony to stop functioning. Abbreviation: CCD.
  • compensatory lengthening — the lengthening of a vowel when a following consonant is weakened or lost, as the change from Old English niht [nikht] /nɪxt/ (Show IPA) to night [nahyt] /naɪt/ (Show IPA) with loss of [kh] /x/ (Show IPA) and lengthening of [i] /ɪ/ (Show IPA) to a vowel that eventually became [ahy] /aɪ/ (Show IPA).
  • condensed matter physics — the branch of physics that deals with the macroscopic physical properties of matter, especially solids; the study of the electromagnetic, structural, and thermodynamic properties of solids.
  • condensed-matter physics — the branch of physics that deals with the macroscopic physical properties of matter, especially solids; the study of the electromagnetic, structural, and thermodynamic properties of solids.
  • constant linear velocity — (storage)   (CLV) A way of controlling the rotation of the disks in a disk drive in which the linear velocity of the disk surface relative to the read/write heads is kept constant. In order to achieve constant linear velocity, the disk must rotate faster (at a higher angular velocity) when reading or writing tracks closer to the centre. Having a constant linear read/write speed along the track means that the electrical signal to and from the heads has a constant data rate (bits per second), thus simplifying the timing of the drive electronics somewhat. However, rotating at less than the maximum possible rate sacrifices some potential performance compared to the alternative, constant angular velocity. Also, varying the rate causes more vibration and consumes more energy.
  • crypt breakers workbench — (cbw) A freely distributable multi-window integrated workbench of tools for cryptanalysis of files encrypted with the 4.2BSD Unix crypt command. It was originally written by Robert W. Baldwin at MIT.
  • data encryption standard — (DES) The NBS's popular, standard encryption algorithm. It is a product cipher that operates on 64-bit blocks of data, using a 56-bit key. It is defined in FIPS 46-1 (1988) (which supersedes FIPS 46 (1977)). DES is identical to the ANSI standard Data Encryption Algorithm (DEA) defined in ANSI X3.92-1981. DES has been implemented in VLSI. SunOS provides a des command which can make use of DES hardware if fitted. Neither the software nor the hardware are supposed to be distributed outside the USA.
  • decision support systems — (application, tool)   (DSS) Software tools to help with decision support.
  • delayed control-transfer — (architecture)   A technique used on the SPARC processor to reduce the effect of pipeline breaks by executing the instruction after a branch instruction (the "delay instruction" in the "delay slot"). If there is no useful instruction which can be placed in the delay slot then the "annul bit" on the control transfer instruction can be set, preventing execution of the delay instruction (unless the control transfer is conditional and is taken). Annulled branches are indicated in SPARC assembler language by appending ",A" to the operation code. For example, LOOP: ... CMP %L0,10 BLE,A LOOP ADD %L2, %L3, #L4 If the delay instruction is also a control transfer instruction then it gets more complicated. Both control transfer instructions are executed (but not the following instruction) and, assuming they are both taken, control is transferred briefly to the destination of the first and then immediately to the destination of the second.
  • developmental psychology — a branch of psychology that studies changes in human behavior from early life to death.
  • dictionary and thesaurus — a dictionary that includes a separate section listing terms with synonyms and antonyms. An online reference site, such as Reference.com, provides immediate electronic access to several dictionaries and a thesaurus as well as to other reference sources.
  • diphenylaminechlorarsine — adamsite.
  • display screen equipment — Visual Display Unit
  • dutch west india company — a Dutch merchant company chartered in 1621 to carry on trade with Africa, the West Indies, North and South America, and Australia.
  • educational psychologist — a person trained in educational psychology
  • entry sequenced data set — (database)   (ESDS) An IBM straight sequential flat file (like QSAM) but externally managed via IDCAMS. ESDS is used in VSAM.
  • explicit type conversion — (programming)   (Or "cast" in C and elsewhere). A programming construct (syntax) to specify that an expression's value should be converted to a different type. For example, in C, to convert an integer (usually 32 bits) to a char (usually 8 bits) we might write: int i = 42; char *p = &buf; *p = (char) i; The expression "(char)" (called a "cast") converts i's value to char type. Casts (including this one) are often not strictly necessary, due to automatic coercions performed by the compiler, but can be used to make the conversion obvious and to avoid warning messages.
  • extra-sensory perception — Extra-sensory perception means knowing without using your ordinary senses such as sight and hearing. Some people believe this is possible. The abbreviation ESP is also used.
  • family income supplement — a benefit formerly paid to low-income families
  • fight like kilkenny cats — to fight until both parties are destroyed
  • footloose and fancy-free — If you describe someone as footloose and fancy-free, you mean that they are not married or in a similar relationship, and you therefore consider them to have very few responsibilities or commitments.
  • glycogen storage disease — any of several inherited disorders of glycogen metabolism that result in excess accumulation of glycogen in various organs of the body.
  • high-fructose corn syrup — corn syrup to which enzymes have been added to change some of the glucose to fructose, making the product sweeter than regular corn syrup. Abbreviation: HFCS.
  • hydrochlorofluorocarbons — Plural form of hydrochlorofluorocarbon.
  • immunofluorescence assay — a diagnostic blood test using the technique of immunofluorescence. Abbreviation: IFA.
  • implicit type conversion — (programming)   (Or "coercion") The abilty of some compilers to automatically insert type conversion functions where an expression of one type is used in a context where another type is expected. A common example is coercion of integers to reals so that an expression like sin(1) is compiled as sin(integerToReal(1)) where sin is of type Real -> Real. A coercion is usually performed automatically by the compiler whereas a cast is an explicit type conversion inserted by the programmer. See also subtype.
  • instructional technology — (education)   Design, development, use, management and evaluation of process and resources for learning. Instructional technology aims to promote the application of validated, practical procedures in the design and delivery of instruction. It is often defined either in terms of media and other technology used (e.g. audiovisual media and equipment and computers), or in terms of a systematic process which encompasses instructional design, development, delivery and evaluation.
  • iterated function system — (graphics)   (IFS) A class of fractals that yield natural-looking forms like ferns or snowflakes. Iterated Function Systems use a very easy transformation that is done recursively.
  • keyed sequenced data set — (database)   (KSDS) One of the access methods used by VSAM. KSDS has indexes and data split into CI (Control Interval) in CA (Control Area) and multi index levelled. Forward and backward compression is applied to key values.
  • laryngotracheobronchitis — A respiratory disease, a form of croup.
  • m technology association — (body)   The MUMPS User's Group that disbanded some time between 1995 and 2003. Address: 1738 Elton Road, Suite 205, Silver Spring, MD 20903-1725, USA. Telephone: +1 301 431-4070. Fax: +1 301 431-0017.
  • mandy rice-davis applies — (chat)   (MRDA) An acronym used to imply that someone is lying to protect their own interests. During the trial of Stephen Ward (who was charged with living off the immoral earnings of Christine Keeler and Rice-Davies), the prosecuting counsel pointed out that Lord Astor denied any involvement with her and Rice-Davies replied, "Well, he would, wouldn't he?"
  • mass psychogenic illness — a condition in which a large group of people report similar physical symptoms that are traceable to psychological factors rather than environmental or physiological factors.
  • motorway service station — an establishment off a motorway where drivers can refuel their vehicles, buy food, drink, etc
  • mutual insurance company — an insurance company owned by the policyholders and not by shareholders
  • narcissistic personality — a personality disorder characterized by extreme self-centeredness and self-absorption, fantasies involving unrealistic goals, an excessive need for attention and admiration, and disturbed interpersonal relationships.
  • neutrosophic probability — (logic)   An extended form of probability based on Neutrosophy, in which a statement is held to be t true, i indeterminate, and f false, where t, i, f are real values from the ranges T, I, F, with no restriction on T, I, F or the sum n=t+i+f.
  • object management system — In an IPSE, the system which maintains information about the system under development.

On this page, we collect all 24-letter words with S-Y-N-C. It’s easy to find right word with a certain length. It is the easiest way to find 24-letter word that contains in S-Y-N-C 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?