0%

24-letter words containing m, i, c, r, o, g

  • 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
  • bring someone to justice — If a criminal is brought to justice, he or she is punished for a crime by being arrested and tried in a court of law.
  • 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.
  • 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.
  • 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.
  • 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
  • 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)
  • 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
  • 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.
  • 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.
  • local government officer — an employee of a local council
  • long-term care insurance — Long-term care insurance is insurance for people who may require long-term health or nursing care, and pays for things such as nursing homes and adult day care.
  • mach interface generator — (tool, programming)   (MIG) An implementation of a subset of Matchmaker that generates C and C++ remote procedure call interfaces for interprocess communication between Mach tasks.
  • magnetothermoelectricity — thermoelectricity induced or affected by a magnetic field.
  • maker interchange format — (MIF) A language used to describe a FrameMaker document in a text file. MIF is used to exchange information between FrameMaker and other applications.
  • medium-scale integration — MSI.
  • meteorological satellite — an artificial satellite that gathers data concerning the earth's atmosphere and surface in order to aid meteorologists in understanding weather patterns and producing weather forecasts.
  • morphologic construction — a construction that forms a compound or complex word. Compare syntactic construction (def 1).
  • parallel cousin marriage — marriage between the children of two brothers or two sisters.
  • physiological atmosphere — ecosphere.
  • privileged communication — a communication that one cannot legally be compelled to divulge, as that to a lawyer from a client
  • programmable array logic — (hardware)   (PAL) A family of fuse-programmable logic integrated circuits originally developed by MMI. Registered or combinatorial output functions are modelled in a sum of products form. Each output is a sum (logical or) of a fixed number of products (logical and) of the input signals. This structure is well suited for automatic generation of programming patterns by logic compilers. PAL devices are programmed by blowing the fuses permanently using overvoltage. Today, more complex devices based on the same original architecture are available (CPLD's for Complex PLD's) that incorporate the equivalent of several original PAL chips. PAL chips are, however, still popular due to their high speed.
  • reproductive imagination — the faculty of imagining, or of forming mental images or concepts of what is not actually present to the senses.
  • senegambia confederation — an economic and political union (1982–89) between Senegal and The Gambia
  • sic transit gloria mundi — thus passes the glory of the world
  • stratificational grammar — a grammar based upon the theory that language is made up of successive strata that are interconnected by established rules.
  • synchronous graphics ram — Synchronous Graphics Random Access Memory
  • where one is coming from — to approach or move toward a particular person or place: Come here. Don't come any closer!
  • work/go/run like a charm — If you say that something worked like a charm, you mean that it was very effective or successful.

On this page, we collect all 24-letter words with M-I-C-R-O-G. 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-I-C-R-O-G 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?