0%

24-letter words containing y, n, e

  • (get your) money's worth — If you get your money's worth, you get something which is worth the money that it costs or the effort you have put in.
  • a data management system — (software, tool)   (ADAM) A suite of software tools intended to assist in the design and testing of military information processing systems. ADAM was developed by the MITRE Corporation in 1966. It consisted of 53 different programs which ran on an IBM 7030 (STRETCH). It was targetted at systems that had to cope with large volumes of data with complex relationships with rapid response and increasing requirements. ADAM was part of the Information Systems Tools and Software Techniques project.
  • a gleam in someone's eye — If you say that something is only a gleam in someone's eye at present, you mean that it is only being planned or considered, and has not yet been properly begun.
  • a good many/a great many — You use a good many or a great many to emphasize that you are referring to a large number of things or people.
  • 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
  • all wool and a yard wide — genuine or admirable; truly and thoroughly as described
  • 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.
  • assembly of the notables — notable (def 5).
  • assembly-of-the-notables — a prominent, distinguished, or important person.
  • 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
  • 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
  • autonomous system number — (networking, routing)   (ASN) Used for routing on the Internet.
  • bay of mont-saint-michel — an inlet of the Gulf of St Malo
  • be left holding the baby — If you are left holding the baby, you are put in a situation where you are responsible for something, often in an unfair way because other people fail or refuse to take responsibility for it.
  • biological oxygen demand — biochemical oxygen demand
  • 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.
  • 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
  • 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.
  • business systems analyst — (job)   A person who works directly with management and users to analyse, specify, and design business applications. The Business Systems Analyst develops detailed functional, system, and program specifications using structured design methodologies and CASE tools. He must have strong business sense and communications skills. He works with both the information systems team and the strategic planning business group.
  • but that's another story — You say 'but that's another story' when you have mentioned a subject that you are not going to talk about or explain in detail.
  • butylated hydroxyanisole — Chemistry, Pharmacology. BHA.
  • butylated hydroxytoluene — BHT.
  • 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.
  • 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.
  • 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.
  • 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
  • computational complexity — (algorithm)   The number of steps or arithmetic operations required to solve a computational problem. One of the three kinds of complexity.
  • 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.
  • conjunctive eye movement — any movement of both eyes in the same direction
  • 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.

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