0%

13-letter words containing o, f, l

  • fluorocarbons — Plural form of fluorocarbon.
  • fluorochromes — Plural form of fluorochrome.
  • fluorographic — of or pertaining to fluorography
  • fluorohydride — (inorganic chemistry) An compound formed by the addition of the elements of hydrogen fluoride.
  • fluoroplastic — any of the plastics, as Teflon, in which hydrogen atoms of the hydrocarbon chains are replaced by fluorine atoms.
  • fluoroscoping — Present participle of fluoroscope.
  • fluoroscopist — One who carries out fluoroscopy.
  • flutterboards — Plural form of flutterboard.
  • flying boxcar — a large airplane designed to carry cargo.
  • flying colorswith flying colors, with an overwhelming victory, triumph, or success: He passed the test with flying colors.
  • flying column — (formerly) a force of troops equipped and organized to move swiftly and independently of a principal unit to which it is attached.
  • flying doctor — a doctor listed with local authorities as willing to be flown to remote areas to give emergency medical care.
  • flying dragon — any of several arboreal lizards of the genus Draco, having an extensible membrane between the limbs along each side by means of which it makes long, gliding leaps.
  • focal seizure — an epileptic manifestation arising from a localized anomaly in the brain, as a small tumor or scar, and usually involving a single motor or sensory mechanism but occasionally spreading to other areas and causing convulsions and loss of consciousness.
  • fold function — (programming)   In functional programming, fold or "reduce" is a kind of higher-order function that takes as arguments a function, an initial "accumulator" value and a data structure (often a list). In Haskell, the two flavours of fold for lists, called foldl and foldr are defined like this: foldl :: (a -> b -> a) -> a -> [b] -> a foldl f z [] = z foldl f z (x:xs) = foldl f (f z x) xs foldr :: (a -> b -> b) -> b -> [a] -> b foldr f z [] = z foldr f z (x:xs) = f x (foldr f z xs) In both cases, if the input list is empty, the result is the value of the accumulator, z. If not, foldl takes the head of the list, x, and returns the result of recursing on the tail of the list using (f z x) as the new z. foldr returns (f x q) where q is the result of recursing on the tail. The "l" and "r" in the names refer to the associativity of the application of f. Thus if f = (+) (the binary plus operator used as a function of two arguments), we have: foldl (+) 0 [1, 2, 3] = (((0 + 1) + 2) + 3 (applying + left associatively) and foldr (+) 0 [1, 2, 3] = 0 + (1 + (2 + 3)) (applying + right associatively). For +, this makes no difference but for an non-commutative operator it would.
  • folded dipole — a type of aerial, widely used with television and VHF radio receivers, consisting of two parallel dipoles connected together at their outer ends and fed at the centre of one of them. The length is usually half the operating wavelength
  • folding chair — a chair that can be collapsed flat for easy storage or transport.
  • folding money — paper money.
  • folding press — a fall in wrestling won by folding one's opponent's legs up to his head and pressing his shoulders to the floor
  • foldoc source — The source text of FOLDOC is a single plain text file. FOLDOC is also available on paper from your local printer but, at 700,000+ words, that would be about 2000 pages.
  • foliage plant — any plant grown chiefly for its attractive leaves.
  • folk medicine — health practices arising from superstition, cultural traditions, or empirical use of native remedies, especially food substances.
  • folkloristics — folklore (def 2).
  • follicle mite — any mite of the family Demodicidae, parasitic in hair follicles of various mammals, including humans.
  • fontainebleau — a town in N France, SE of Paris: famous palace, long a favorite residence of French kings; extensive forest.
  • food supplies — food obtained for a household or for a country, an expedition, etc
  • fool's errand — a completely absurd, pointless, or useless errand.
  • foolhardiness — recklessly or thoughtlessly bold; foolishly rash or venturesome.
  • foolheartedly — Foolishly. In a foolhardy manner. Without thinking about the consequences.
  • fooling about — the act of speaking or acting in a playful, teasing, or jesting manner
  • foot the bill — pay the costs
  • football game — soccer match
  • for dear life — the condition that distinguishes organisms from inorganic objects and dead organisms, being manifested by growth through metabolism, reproduction, and the power of adaptation to environment through changes originating internally.
  • for the world — If you say that you would not do something for the world, you are emphasizing that you definitely would not do it.
  • for values of — (jargon)   A common rhetorical maneuver at MIT is to use any of the canonical random numbers as placeholders for variables. "The max function takes 42 arguments, for arbitrary values of 42". "There are 69 ways to leave your lover, for 69 = 50". This is especially likely when the speaker has uttered a random number and realises that it was not recognised as such, but even "non-random" numbers are occasionally used in this fashion. A related joke is that pi equals 3 - for small values of pi and large values of 3. This usage probably derives from the programming language MAD (Michigan Algorithm Decoder), an ALGOL-like language that was the most common choice among mainstream (non-hacker) users at MIT in the mid-1960s. It had a control structure FOR VALUES OF X = 3, 7, 99 DO ... that would repeat the indicated instructions for each value in the list (unlike the usual FOR that generates an arithmetic sequence of values). MAD is long extinct, but similar for-constructs still flourish (e.g. in Unix's shell languages).
  • foramen ovale — the small, oval opening in the wall that separates the atria of the heart in a normal fetus: it allows blood to bypass the nonfunctioning fetal lungs until the time of birth when it gradually closes up
  • foraminiferal — Of, pertaining to, or resembling the foraminifers; foraminiferous.
  • force a smile — to make oneself smile
  • forced labour — labour done because of force; compulsory labour
  • fore clipping — a word formed by omitting the first part of the form from which it is derived.
  • forefeelingly — by way of forefeeling
  • foreknowledge — knowledge of something before it exists or happens; prescience: Did you have any foreknowledge of the scheme?
  • foresightedly — In a foresighted manner.
  • foresightless — lacking foresight
  • forge welding — the welding of pieces of hot metal with pressure or blows.
  • forgetfulness — apt to forget; that forgets: a forgetful person.
  • fork luncheon — déjeuner à la fourchette.
  • form the fool — to play the fool or behave irritatingly
  • formal review — (project)   A technical review conducted with the customer including the types of reviews called for in DOD-STD-2167A (Preliminary Design Review, Critical Design Review, etc.)
  • formal system — an uninterpreted symbolic system whose syntax is precisely defined, and on which a relation of deducibility is defined in purely syntactic terms; a logistic system
Was this page helpful?
Yes No
Thank you for your feedback! Tell your friends about this page
Tell us why?