0%

24-letter words containing a, c, r, o, n, y

  • a licence to print money — If you describe a commercial activity as a licence to print money, you mean that it allows people to gain a lot of money with little effort or responsibility.
  • amantadine hydrochloride — a white, crystalline drug, C10H17N·HCl, used to prevent and treat certain forms of influenza and to treat parkinsonism
  • 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
  • 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
  • carbamylchloride choline — carbachol.
  • carcinoembryonic antigen — a glycoprotein found in serum, urine, etc. that is associated with various types of tumors: monitoring its levels is useful in treating cancer patients
  • 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.
  • civil aviation authority — the national body governing civil aviation
  • 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.
  • combat infantryman badge — a badge awarded to an infantryman in recognition of satisfactory performance of duty in ground combat against the enemy.
  • common gateway interface — (web)   (CGI) A standard for running external programs from a web HTTP server. CGI specifies how to pass arguments to the program as part of the HTTP request. It also defines a set of environment variables that are made available to the program. The program generates output, typically HTML, which the web server processes and passes back to the browser. Alternatively, the program can request URL redirection. CGI allows the returned output to depend in any arbitrary way on the request. The CGI program can, for example, access information in a database and format the results as HTML. The program can access any data that a normal application program can, however the facilities available to CGI programs are usually limited for security reasons. Although CGI programs can be compiled programs, they are more often written in a (semi) interpreted language such as Perl, or as Unix shell scripts, hence the common name "CGI script". Here is a trivial CGI script written in Perl. (It requires the "CGI" module available from CPAN). #!/usr/bin/perl use CGI qw(:standard); print header, start_html, h1("CGI Test"), "Your IP address is: ", remote_host(), end_html; When run it produces an HTTP header and then a simple HTML page containing the IP address or hostname of the machine that generated the initial request. If run from a command prompt it outputs: Content-Type: text/html; charset=ISO-8859-1 Untitled Document

    CGI Test

    Your IP address is: localhost The CGI program might be saved as the file "test.pl" in the appropriate directory on a web server, e.g. "/home/httpd/test". Accessing the appropriate URL, e.g. http://acme.com/test/test.pl, would cause the program to run and a custom page produced and returned. Early web servers required all CGI programs to be installed in one directory called cgi-bin but it is better to keep them with the HTML files to which they relate unless they are truly global to the site. Similarly, it is neither necessary nor desirable for all CGI programs to have the extension ".cgi". Each CGI request is handled by a new process. If the process fails to terminate for some reason, or if requests are received faster than the server can respond to them, the server may become swamped with processes. In order to improve performance, Netscape devised NSAPI and Microsoft developed the ISAPI standard which allow CGI-like tasks to run as part of the main server process, thus avoiding the overhead of creating a new process to handle each CGI invocation. Other solutions include mod_perl and FastCGI.
  • 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).
  • complementary wavelength — the wavelength of monochromatic light that could be mixed in suitable proportions with a given coloured light so as to produce some specified achromatic light
  • 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.
  • confederate memorial day — a day set aside in the South to pay tribute to those who served with the Confederate forces during the American Civil War. It is observed on April 26 in Alabama, Florida, Georgia, and Mississippi; on May 10 in North Carolina and South Carolina; on May 30 in Virginia; and on June 3 in Kentucky, Louisiana, and Tennessee.
  • 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.
  • 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.
  • 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.
  • dynamic adaptive routing — Automatic rerouting of traffic based on analysis of current network conditions. This does not include routing decisions based on predefined information.
  • evolutionary computation — Computer-based problem solving systems that use computational models of evolutionary processes as the key elements in design and implementation. A number of evolutionary computational models have been proposed, including evolutionary algorithms, genetic algorithms, the evolution strategy, evolutionary programming, and artificial life.
  • 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.
  • 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.
  • grand unification theory — a possible future quantum field theory that would encompass both the electroweak theory and quantum chromodynamics. Abbreviation: GUT.
  • hydrochlorofluorocarbons — Plural form of hydrochlorofluorocarbon.
  • immunofluorescence assay — a diagnostic blood test using the technique of immunofluorescence. Abbreviation: IFA.
  • 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.
  • kinetic theory of matter — a theory that matter is composed of small particles, all in random motion.
  • laryngotracheobronchitis — A respiratory disease, a form of croup.
  • magnetothermoelectricity — thermoelectricity induced or affected by a magnetic field.
  • money-market certificate — a certificate of deposit held for a specified term earning a fixed interest rate keyed to the interest rate of U.S. Treasury bills.
  • 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
  • nalbuphine hydrochloride — an opiate drug used as a painkiller
  • 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-oriented analysis — (programming)   (OOA) The first phase of object-oriented design.
  • open system architecture — (operating system)   (OSA) A competitor to IBM's SNA.
  • permeability coefficient — the volume of an incompressible fluid that will flow in unit time through a unit cube of a porous substance across which a unit pressure difference is maintained
  • polychlorinated biphenyl — PCB.
  • present company excepted — If you are making a general, unfavourable comment about a particular type of person, and you are with people of that type, you can say 'present company excepted' as a way of making your comment sound more polite.

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