0%

19-letter words containing o, n, e, l, u, g

  • housing development — a group of houses or apartments, usually of the same size and design, often erected on a tract of land by one builder and controlled by one management.
  • humanist technology — (philosophy)   Technology centered around the interests, needs, and well-being of humans.
  • jacques montgolfier — Jacques Étienne [zhahk ey-tyen] /ʒɑk eɪˈtyɛn/ (Show IPA), 1745–99, and his brother Joseph Michel [zhaw-zef mee-shel] /ʒɔˈzɛf miˈʃɛl/ (Show IPA) 1740–1810, French aeronauts: inventors of the first practical balloon 1783.
  • james gould cozzensJames Gould, 1903–78, U.S. novelist.
  • jumping plant louse — any of numerous lice, of the family Psyllidae, that feed on plant juices and are sometimes pests of fruits and vegetables.
  • junior middleweight — a boxer weighing up to 154 pounds (69.3 kg), between welterweight and middleweight.
  • junior welterweight — a boxer weighing up to 140 pounds (63 kg), between lightweight and welterweight.
  • language laboratory — a special room or rooms with sound-recording and -reproducing equipment for use by students to practice speaking foreign languages, usually with an instructor monitoring the program.
  • languages of choice — C and Lisp. Nearly every hacker knows one of these, and most good ones are fluent in both. Smalltalk and Prolog are also popular in small but influential communities. There is also a rapidly dwindling category of older hackers with Fortran, or even assembler, as their language of choice. They often prefer to be known as Real Programmers, and other hackers consider them a bit odd (see "The Story of Mel"). Assembler is generally no longer considered interesting or appropriate for anything but HLL implementation, glue, and a few time-critical and hardware-specific uses in systems programs. Fortran occupies a shrinking niche in scientific programming. Most hackers tend to frown on languages like Pascal and Ada, which don't give them the near-total freedom considered necessary for hacking (see bondage-and-discipline language), and to regard everything even remotely connected with COBOL or other traditional card walloper languages as a total and unmitigated loss.
  • league championship — the competition to become league champions
  • legislative council — the upper house of a bicameral legislature.
  • let it all hang out — to fasten or attach (a thing) so that it is supported only from above or at a point near its own top; suspend.
  • liaodong pensinsula — a peninsula of NE China, in S Manchuria extending south into the Yellow Sea: forms the S part of Liaoning province
  • lieutenant governor — a state officer next in rank to a governor, who takes the governor's place in case of the latter's absence, disability, or death.
  • logical consequence — the relation that obtains between the conclusion and the premises of a formally valid argument
  • logical unit number — (storage)   (LUN) A 3-bit identifier used on a SCSI bus to distinguish between up to eight devices (logical units) with the same SCSI ID.
  • lose your virginity — When you lose your virginity, you have sex for the first time.
  • lucent technologies — (company, telecommunications, Unix)   The former systems and equipment portion of AT&T (including Bell Laboratories), split off in 1996.
  • luteinizing hormone — LH.
  • midnight regulation — a rule or directive approved by the federal government near the end of a president’s term of office
  • negation by failure — An extralogical feature of Prolog and other logic programming languages in which failure of unification is treated as establishing the negation of a relation. For example, if Ronald Reagan is not in our database and we asked if he was an American, Prolog would answer "no".
  • neuropathologically — In a neuropathologic way.
  • non-distinguishable — to mark off as different (often followed by from or by): He was distinguished from the other boys by his height.
  • not for much longer — if something will not happen for much longer, it will soon stop happening
  • oak-leaved geranium — a geranium, Pelargonium quercifolium, of southern Africa, having oaklike leaves with purple veins and sparse clusters of purple flowers with darker markings.
  • open-angle glaucoma — Ophthalmology. abnormally high fluid pressure in the eye, most commonly caused either by blockage of the channel through which aqueous humor drains (open-angle glaucoma or chronic glaucoma) or by pressure of the iris against the lens, which traps the aqueous humor (angle-closure glaucoma or acute glaucoma)
  • outplacement agency — an agency that provides counselling and careers advice, esp to redundant executives, which is paid for by their previous employer
  • pastoral counseling — the use of psychotherapeutic techniques by trained members of the clergy to assist parishioners who seek help for personal or emotional problems.
  • percussion drilling — Percussion drilling is a drilling method which involves lifting and dropping heavy tools to break rock, and uses steel casing tubes to stop the borehole from collapsing.
  • pneumoencephalogram — an encephalogram made after the replacement of the cerebrospinal fluid by air or gas, rarely used since the development of the CAT scanner.
  • popular sovereignty — the doctrine that sovereign power is vested in the people and that those chosen to govern, as trustees of such power, must exercise it in conformity with the general will.
  • population genetics — the branch of genetics concerned with the hereditary makeup of populations.
  • priority scheduling — (operating system)   Processes scheduling in which the scheduler selects tasks to run based on their priority as opposed to, say, a simple round-robin. Priorities may be static or dynamic. Static priorities are assigned at the time of creation, while dynamic priorities are based on the processes' behaviour while in the system. For example, the scheduler may favour I/O-intensive tasks so that expensive requests can be issued as early as possible. A danger of priority scheduling is starvation, in which processes with lower priorities are not given the opportunity to run. In order to avoid starvation, in preemptive scheduling, the priority of a process is gradually reduced while it is running. Eventually, the priority of the running process will no longer be the highest, and the next process will start running. This method is called aging.
  • procedural language — (language)   Any programming language in which the programmer specifies an explicit sequences of steps to follow to produce a result (an algorithm). The term should not be confused with "imperative language" - a language that specifies explicit manipulation of state. An example (non-imperative) procedural language is LOGO, which specifies sequences of steps to perform but does not have an internal state. Other procedural languages include Basic, Pascal, C, and Modula-2. Both procedural and imperative languages are in contrast to declarative languages, in which the programmer specifies neither explicit steps nor explicit state manipulation.
  • queen's regulations — (in Britain and certain other Commonwealth countries when the sovereign is female) the code of conduct for members of the armed forces
  • regular icosahedron — an icosahedron in which each of the faces is an equilateral triangle
  • relational language — (language)   Any kind of programming language that specifies output in terms of some property and some arguments. For example, if Tom has two brothers, Dick and Harry, a relational language will respond to the query "Who is Tom's brother?" with either Dick or Harry. Notice that unlike functional languages, relational languages do not require a unique output for each predicate/argument pair. Prolog is the best known relational language.
  • religious education — religion as school subject
  • right circular cone — a cone whose surface is generated by lines joining a fixed point to the points of a circle, the fixed point lying on a perpendicular through the center of the circle.
  • right-eyed flounder — any of several flatfishes of the family Pleuronectidae, having both eyes on the right side of the head.
  • run-length encoding — A kind of compression algorithm which replaces sequences ("runs") of consecutive repeated characters (or other units of data) with a single character and the length of the run. This can either be applied to all input characters, including runs of length one, or a special character can be used to introduce a run-length encoded group. The longer and more frequent the runs are, the greater the compression that will be achieved. This technique is particularly useful for encoding black and white images where the data units would be single bit pixels.
  • screen actors guild — a labor union for motion-picture performers, founded in 1933. Abbreviation: SAG.
  • self-congratulating — the expression or feeling of uncritical satisfaction with oneself or one's own accomplishment, good fortune, etc.; complacency.
  • self-congratulation — the expression or feeling of uncritical satisfaction with oneself or one's own accomplishment, good fortune, etc.; complacency.
  • self-congratulatory — the expression or feeling of uncritical satisfaction with oneself or one's own accomplishment, good fortune, etc.; complacency.
  • sexual stereotyping — the formation or promotion of a fixed general idea or image of how men and women will behave
  • shovelnose sturgeon — a small sturgeon, Scaphirhynchus platorhynchus, of the Mississippi River, having a broad, flat snout.
  • sidereal hour angle — the angle, measured westward through 360°, between the hour circle passing through the vernal equinox and the hour circle of a celestial body.
  • sql module language — A language used to interface other languages (Ada, C, COBOL) to SQL-based DBMSes. It is an ANSI standard. Version: Ada/SAME by Informix.
  • sulfureted hydrogen — hydrogen sulfide.
Was this page helpful?
Yes No
Thank you for your feedback! Tell your friends about this page
Tell us why?