0%

24-letter words containing i, a, t, r, 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.
  • additional member system — a system of voting in which people vote separately for the candidate and the party of their choice. Parties are allocated extra seats if the number of constituencies they win does not reflect their overall share of the vote
  • amantadine hydrochloride — a white, crystalline drug, C10H17N·HCl, used to prevent and treat certain forms of influenza and to treat parkinsonism
  • ambassador extraordinary — a diplomatic minister of the highest rank sent on a special mission
  • antoine de saint-exupéry — Antoine de [ahn-twan duh] /ɑ̃ˈtwan də/ (Show IPA), 1900–45, French author and aviator.
  • artificial radioactivity — radioactivity introduced into a nonradioactive substance by bombarding the substance with charged particles.
  • atomic energy commission — (in the US) a federal board established in 1946 to administer and develop domestic atomic energy programmes
  • australian silky terrier — a small compact variety of terrier with pricked ears and a long straight silky coat
  • 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
  • bradley fighting vehicle — a 25-ton, tracked U.S. armored personnel carrier of the 1980s, designed to carry nine soldiers into battle and armed with a 25mm rapid-fire cannon, a machine gun, and an antitank missile launcher.
  • bull information systems — (company)   A multinational I.T. group based in Europe with 21,000 people and operations in more than 85 countries. In 1997, Bull earned revenues of over $4 billion, including over 65% outside of France, its country of origin. The company is ranked as the third largest systems integrator in Europe.
  • butylated hydroxyanisole — Chemistry, Pharmacology. BHA.
  • 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
  • cathode ray oscilloscope — A cathode ray oscilloscope is an instrument based upon the cathode ray tube, that provides a visible image of one or more rapidly varying electrical quantities.
  • chesapeake bay retriever — a strongly built variety of retriever with a short thick, slightly wavy coat in straw colour, reddish gold, or brown
  • 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
  • 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).
  • 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.
  • curiosity killed the cat — You say 'Curiosity killed the cat' in order to tell someone that they should not try to find out about something which does not concern them.
  • 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.
  • descriptive bibliography — the aspect of bibliography concerned with the close physical study and description of books and other works.
  • 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.
  • dionysius the areopagite — 1st century a.d, Athenian scholar: converted to Christianity by Saint Paul c50.
  • display screen equipment — Visual Display Unit
  • dynamic adaptive routing — Automatic rerouting of traffic based on analysis of current network conditions. This does not include routing decisions based on predefined information.
  • east riding of yorkshire — a county of NE England, a historical division of Yorkshire on the North Sea and the Humber estuary: became part of Humberside in 1974; reinstated as an independent unitary authority in 1996, with a separate authority for Kingston upon Hull: chiefly agricultural and low-lying, with various industries in Hull. Administrative centre: Beverley. Pop (excluding Hull): 321 300 (2003 est). Area (excluding Hull): 748 sq km (675 sq miles)
  • electrocardiographically — By means of electrocardiography.
  • environmentally friendly — that has no or the least possible impact on the environment
  • erythroblastosis fetalis — an anaemic blood disease of a fetus or newborn child, characterized by erythroblasts in the circulating blood: caused by a blood incompatibility between mother and fetus
  • ethyl-para-aminobenzoate — benzocaine
  • 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.
  • evolutionary programming — (EP) A stochastic optimisation strategy originally conceived by Lawrence J. Fogel in 1960. An initially random population of individuals (trial solutions) is created. Mutations are then applied to each individual to create new individuals. Mutations vary in the severity of their effect on the behaviour of the individual. The new individuals are then compared in a "tournament" to select which should survive to form the new population. EP is similar to a genetic algorithm, but models only the behavioural linkage between parents and their offspring, rather than seeking to emulate specific genetic operators from nature such as the encoding of behaviour in a genome and recombination by genetic crossover. EP is also similar to an evolution strategy (ES) although the two approaches developed independently. In EP, selection is by comparison with a randomly chosen set of other individuals whereas ES typically uses deterministic selection in which the worst individuals are purged from the population.
  • 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.
  • 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.
  • greater london authority — local government body of UK capital
  • have a tiger by the tail — to find oneself in a situation that has turned out to be much more difficult to control than one had expected
  • heart is a lonely hunter — a novel (1940) by Carson McCullers.
  • hierarchical file system — (file system)   A file system in which the files are organised into a hierarchy. The nodes of the hierarchy are called directories while the leaves are the files themselves. See also root directory. Compare flat file system.
  • high bypass ratio engine — a type of by-pass engine in which a large fan driven by a turbine and housed in a short duct forces air rearwards around the exhaust gases in order to increase the propulsive thrust
  • high court of justiciary — the senior criminal court in Scotland, to which all cases of murder and rape and all cases involving heavy penalties are referred
  • hyperbetalipoproteinemia — An abnormally high level of betalipoprotein in the blood.

On this page, we collect all 24-letter words with I-A-T-R-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 I-A-T-R-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?