0%

24-letter words containing m, a, c, r, o

  • a contradiction in terms — If you say that something is a contradiction in terms, you mean that it is described as having a quality that it cannot have.
  • 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.
  • a mixed bunch of flowers — a bunch of flowers of different, complementary, kinds
  • affirming the consequent — the fallacy of inferring the antecedent of a conditional sentence, given the truth of the conditional and its consequent, as if John is six feet tall, he's more than five feet: he's more than five feet so he's six feet
  • almost periodic function — a function that repeats its values approximately at almost equally spaced intervals of its domain.
  • amantadine hydrochloride — a white, crystalline drug, C10H17N·HCl, used to prevent and treat certain forms of influenza and to treat parkinsonism
  • american indian movement — a militant movement or grouping of American Indians, organized in 1968 to combat discrimination, injustice, etc
  • american revised version — a revision of the Bible, based chiefly on the Revised Version of the Bible, published in the U.S. in 1901.
  • ammonium chromic sulfate — chrome alum (def 1).
  • antimicrobial resistance — the ability of an organism to resist the actions of the class of drugs that destroys or inhibits the growth of disease-causing microbes
  • appropriations committee — a committee dealing with appropriations
  • arts and crafts movement — a movement, originating in England c1860 as a reaction against poor-quality mass-produced goods, that sought to revive earlier standards of workmanship and design, conceiving of decoration and craftsmanship as a single entity to be applied to the handcrafted production of both utilitarian and decorative objects, and that produced furniture, textiles, wallpaper, jewelry, and other items, often decorated with floral motifs.
  • as far as i am concerned — You can say 'as far as I'm concerned' to indicate that you are giving your own opinion.
  • 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
  • autism spectrum disorder — any of various disorders, as autism and Asperger syndrome, commonly manifesting in early childhood and characterized by impaired social or communication skills, repetitive behaviors, or a restricted range of interests.
  • automated teller machine — a computerized cash dispenser
  • automated-teller machine — an electronic banking machine that dispenses cash, accepts deposits, and performs other services when a customer inserts a plastic card and pushes the proper coded buttons. Abbreviation: ATM.
  • automatic repeat request — (communications)   (ARQ) A modem error control protocol in which the receiver asks the transmitter to resend corrupted data.
  • automatic-teller machine — automated-teller machine.
  • 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
  • back electromotive force — counter electromotive force.
  • backup domain controller — (networking)   (BDC) A server in a network of Microsoft Windows computers that maintains a copy of the SAM database and handles access requests that the Primary Domain Controller (PDC) doesn't respond to. There may be zero or more BDCs in a network. They increase reliability and reduce load on the PDC.
  • bad command or file name — (operating system)   The error message printed by MS DOS when it can't find a program or command to execute due to a typing error, incorrect PATH variable, or misplaced or missing executable.
  • browning automatic rifle — an air-cooled, fully automatic rifle capable of firing 200 to 350 rounds per minute. Abbreviation: BAR.
  • caeremoniale episcoporum — the liturgical book, used by bishops, containing regulations and prescriptions that are authoritative in matters not covered in the missal or other service books.
  • campbell-stokes recorder — an instrument for recording hours of sunshine per day, consisting of a solid glass sphere that focuses rays of sunlight onto a light-sensitive card on which a line is burnt
  • 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
  • cellular multiprocessing — (architecture, parallel)   (CMP) The partitioning of processors into separate computing environments running different operating systems. The term cellular multiprocessing appears to have been coined by Unisys, who are developing a system where computers communicate as clustered machines through a high speed bus, rather than through communication protocols such as TCP/IP. The Unisys system is based on Intel processors, initially the Pentium II Xeon and moving on to the 64-bit Merced processors later in 1999. It will be scalable from four up to 32 processors, which can be clustered or partitioned in various ways. For example a sixteen processor system could be configured as four Windows NT systems (each functioning as a four-processor symmetric multiprocessing system), or an 8-way NT and 8-way Unix system. Supported operating systems will be Windows NT, SCO's Unixware 7.0, Unisys' SVR4 Unix and possibly the OS2200 and MCP-AS mainframe operating systems (with the assistance of Unisys' own dedicated chipset).
  • cerebrospinal meningitis — an acute infectious form of meningitis caused by the bacterium Neisseria meningitidis, characterized by high fever, skin rash, delirium, stupor, and sometimes coma
  • 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.
  • codd's first normal form — database normalisation
  • combat infantryman badge — a badge awarded to an infantryman in recognition of satisfactory performance of duty in ground combat against the enemy.
  • command-line interpreter — command interpreter
  • 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.
  • common information model — (standard)   (CIM) An open systems management standard driven by the Distributed Management Task Force (DMTF).
  • common program interface — (programming)   (CPI) The API of SAA.
  • compact disc interactive — (storage)   (CD-i) An embedded application of CD-ROM allowing the user limited interaction with films, games and educational applications via a special controller.
  • compact fluorescent lamp — A compact fluorescent lamp is a small fluorescent lamp (= a tubular light bulb coated with phosphor which produces a bright light) that has a lamp life that is much longer than incandescent lamps.
  • 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).
  • compiler target language — (CTL) The intermediate language used by the ALICE parallel machine.
  • 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
  • completely regular space — a topological space in which, for every point and a closed set not containing the point, there is a continuous function that has value 0 at the given point and value 1 at each point in the closed set.
  • complexometric titration — a titration in which a coloured complex is formed, usually by the use of a chelating agent, such as EDTA, the end point being marked by a sharp decrease in the concentration of free metal ions
  • compressed petroleum gas — a gas liquefied by compression, consisting of flammable hydrocarbons, as propane and butane, obtained as a by-product from the refining of petroleum or from natural gas: used chiefly as a domestic fuel in rural areas, as an industrial and motor fuel, and in organic synthesis, especially of synthetic rubber.
  • computer design language — (language)   An ALGOL-like language for computer design.
  • computer-assisted makeup — pagination (def 4a).
  • 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.

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