0%

24-letter words containing a, g, m, o

  • 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.
  • adjustable-rate mortgage — a mortgage that provides for periodic changes in the interest rate, based on changing market condtions. Abbreviation: ARM.
  • 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
  • atomic energy commission — (in the US) a federal board established in 1946 to administer and develop domestic atomic energy programmes
  • biological magnification — the increasing concentration of toxic substances within each successive link in the food chain.
  • biological oxygen demand — biochemical oxygen demand
  • browning automatic rifle — an air-cooled, fully automatic rifle capable of firing 200 to 350 rounds per minute. Abbreviation: BAR.
  • 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
  • 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.
  • cog in the machine/wheel — If you describe someone as a cog in a machine or wheel, you mean that they are a small part of a large organization or group.
  • combat infantryman badge — a badge awarded to an infantryman in recognition of satisfactory performance of duty in ground combat against the enemy.
  • come/go to someone's aid — If you come or go to someone's aid, you try to help them when they are in danger or difficulty.
  • 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 program interface — (programming)   (CPI) The API of SAA.
  • 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.
  • 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.
  • configuration management — (job, system management)   A discipline applying technical and administrative controls to identifying, documentating and reporting on configuration items, their physical and functional characteristics and changes to characteristics of those configuration items.
  • cooperative multitasking — (parallel, operating system)   A form of multitasking where it is the responsibility of the currently running task to give up the processor to allow other tasks to run. This contrasts with pre-emptive multitasking where the task scheduler periodically suspends the running task and restarts another. Cooperative multitasking requires the programmer to place calls at suitable points in his code to allow his task to be descheduled which is not always easy if there is no obvious top-level main loop or some routines run for a long time. If a task does not allow itself to be descheduled all other tasks on the system will appear to "freeze" and will not respond to user action. The advantage of cooperative multitasking is that the programmer knows where the program will be descheduled and can make sure that this will not cause unwanted interaction with other processes. Under pre-emptive multitasking, the scheduler must ensure that sufficient state for each process is saved and restored that they will not interfere. Thus cooperative multitasking can have lower overheads than pre-emptive multitasking because of the greater control it offers over when a task may be descheduled. Cooperative multitasking is used in RISC OS, Microsoft Windows and Macintosh System 7.
  • detoxification programme — a programme of treatment for alcoholism or drug addiction
  • developmental psychology — a branch of psychology that studies changes in human behavior from early life to death.
  • digital compact cassette — a magnetic tape cassette on which sound can be recorded in a digital format
  • domain-specific language — (language)   A machine-processable language whose terms are derived from a domain model and that is used for the definition of components or software architectures supporting that domain. A domain-specific language is often used as input to an application generator.
  • dynamic adaptive routing — Automatic rerouting of traffic based on analysis of current network conditions. This does not include routing decisions based on predefined information.
  • electromagnetic spectrum — the complete range of electromagnetic radiation from the longest radio waves (wavelength 105 metres) to the shortest gamma radiation (wavelength 10–13 metre)
  • environmental management — controlled and planned management of the environment
  • 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.
  • floating decimal (point) — a decimal (point) whose position is not fixed
  • frequent shopper program — A frequent shopper program is one that rewards customers for purchases made on multiple visits, and builds up points entitling them to reduced prices and free items.
  • frequent-flyer programme — a plan or system under which frequent flyers earn rewards for being regular customers
  • geographical determinism — the theory that human activity is determined by geographical conditions
  • glasgow haskell compiler — (language)   (GHC) A Haskell 1.2 compiler written in Haskell by the AQUA project at Glasgow University, headed by Simon Peyton Jones <[email protected]> throughout the 1990's [started?]. GHC can generate either C or native code for SPARC, DEC Alpha and other platforms. It can take advantage of features of gcc such as global register variables and has an extensive set of optimisations. GHC features an extensible I/O system based on a "monad", in-line C code, fully fledged unboxed data types, incrementally-updatable arrays, mutable reference types, generational garbage collector, concurrent threads. Time and space profiling is also supported. It requires GNU gcc 2.1+ and Perl. GHC runs on Sun-4, DEC Alpha, Sun-3, NeXT, DECstation, HP-PA and SGI. E-mail: <[email protected]>.
  • graduated pension scheme — (between 1961 and 1975) an earnings-related pension scheme which was based on the amount of an employee's National Insurance contributions
  • greenhouse gas emissions — gases given off that damage ozone layer
  • guaranteed annual income — Also called guaranteed income. compensation provided by the government to any family or individual whose annual income falls below a specified level.
  • hairdressing appointment — an appointment to have your hair cut, styled, coloured, etc, at a hairdresser
  • high performance fortran — (language)   (HPF) A data parallel language extension to Fortran 90 which provides a portable programming interface for a wide variety of target platforms. The original HPF language specification was produced by the High Performance Fortran Forum, a broad consortium of industry and academia, which met regularly throughout 1992 and early 1993. HPF compilers are now available on most commonly-used computing systems, and users are beginning to gain first hand experience with this language. The Forum has continued to meet in order to address advanced topics.
  • high performance routing — (networking)   (HPR) Routing designed to work in conjunction with APPN Intermediate Session Routing (ISR) network nodes. HPR nodes perform many of the same functions as ISR nodes. For example, HPR nodes use the same method of calculating routes based on the Topology Routing Service database and class of service tables. HPR nodes also supports such APPN features as connection networks and support for parallel transmission groups (TGs). In the HPR architecture, both partner nodes must support HPR for RTP connections to take place between the nodes. If one node supports HPR and the partner node does not, then the link will support ISR functionality only.
  • homolographic projection — an equal-area projection in which the proportion between regions of unequal area is correctly shown.
  • in someone's good graces — elegance or beauty of form, manner, motion, or action: We watched her skate with effortless grace across the ice. Synonyms: attractiveness, charm, gracefulness, comeliness, ease, lissomeness, fluidity. Antonyms: stiffness, ugliness, awkwardness, clumsiness; klutziness.
  • information superhighway — internet
  • involuntary manslaughter — the unlawful but unintentional killing of a human being
  • jam programming language — (language)   (JPL) A string-based imperative language from JYACC Corporation, part of the JAM tool for developing screen (non-window) applications.
  • jewish autonomous region — an autonomous region in the Khabarovsk territory of the Russian Federation in E Siberia. 13,900 sq. mi. (36,000 sq. km). Capital: Birobidzhan.

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