0%

13-letter words containing f, i, l, c

  • filter coffee — coffee made by filtering hot water through ground coffee
  • filter factor — a number indicating the increased exposure that a particular film should receive when a photograph is taken using a particular filter.
  • fin de siecle — the end of the 19th century.
  • final curtain — end of a theatre performance
  • finback whale — rorqual
  • fingal's cave — a cave on the island of Staffa, in the Hebrides, Scotland. 227 feet (69 meters) long; 42 feet (13 meters) wide.
  • finite clause — a clause with a finite verb in its predicate.
  • firewall code — 1. The code you put in a system (say, a telephone switch) to make sure that the users can't do any damage. Since users always want to be able to do everything but never want to suffer for any mistakes, the construction of a firewall is a question not only of defensive coding but also of interface presentation, so that users don't even get curious about those corners of a system where they can burn themselves. 2. Any sanity check inserted to catch a can't happen error. Wise programmers often change code to fix a bug twice: once to fix the bug, and once to insert a firewall which would have arrested the bug before it did quite as much damage.
  • firmer chisel — a narrow-bladed chisel for paring and mortising, driven by hand pressure or with a mallet.
  • fixed capital — capital goods, as machinery and tools, that are relatively durable and can be used repeatedly in the production of goods.
  • flame cutting — a method of cutting ferrous metals in which the metal is heated by a torch to about 800°C and is oxidized by a stream of oxygen from the torch
  • flash fiction — very short works of fiction that are typically no longer than a couple of pages and may be as short as one paragraph.
  • flash picture — a photograph made using flash photography.
  • floatcut file — file with rows of parallel teeth
  • floating dock — a submersible, floating structure used as a dry dock, having a floor that is submerged, slipped under a floating vessel, and then raised so as to raise the vessel entirely out of the water.
  • floccillation — a delirious picking of the bedclothes by the patient, as in certain fevers.
  • floor cushion — a cushion placed on the floor of a room for people to sit on
  • floorcovering — A covering for a floor.
  • floricultural — Of or pertaining to floriculture.
  • floristically — In a floristic manner.
  • floutingstock — a laughing-stock; the object of mockery or flouting
  • flow function — The flow function is the relationship between the strength of a compact and the degree of compaction.
  • fluctuational — Of, pertaining to, or resulting from fluctuation(s).
  • fluid-extract — a liquid preparation, containing alcohol as a solvent or as a preservative, that contains in each cubic centimeter the medicinal activity of one gram of the crude drug in powdered form.
  • fluorographic — of or pertaining to fluorography
  • 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.
  • flying boxcar — a large airplane designed to carry cargo.
  • flying circus — a squadron of airplanes operating together, especially any of several squadrons of famous World War I aviators.
  • 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 picket — (in industrial disputes) a member of a group of pickets organized to be able to move quickly from place to place
  • flying saucer — any of various disk-shaped objects allegedly seen flying at high speeds and altitudes, often with extreme changes in speed and direction, and thought by some to be manned by intelligent beings from outer space.
  • flying tackle — a tackle made by hurling one's body through the air at the player carrying the ball.
  • 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.
  • folding chair — a chair that can be collapsed flat for easy storage or transport.
  • 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.
  • force a smile — to make oneself smile
  • fore clipping — a word formed by omitting the first part of the form from which it is derived.
  • formulaically — made according to a formula; composed of formulas: a formulaic plot.
  • formularistic — relating to formularization
  • fowling piece — a shotgun for shooting wildfowl.
  • fractionalise — Alt form fractionalize.
  • fractionalism — the state of being separate or inharmonious
  • fractionalist — an advocate or supporter of fractionalism
Was this page helpful?
Yes No
Thank you for your feedback! Tell your friends about this page
Tell us why?