0%

13-letter words containing f, u, n, c, t

  • finite clause — a clause with a finite verb in its predicate.
  • 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
  • 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).
  • fluorescently — In a fluorescent manner; using fluorescence.
  • 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.
  • form function — (jargon)   The shape of something designed. This term is currently (Feb 1998) in vogue among marketroids.
  • fractiousness — refractory or unruly: a fractious animal that would not submit to the harness.
  • fracture zone — a long, narrow rift on the ocean floor, separating areas of differing depth: where such a zone crosses a mid-ocean ridge, it displaces the ridge by faulting.
  • fruit machine — gambling: slot machine
  • frumentaceous — of the nature of or resembling wheat or other grain.
  • fuel injector — injector (def 2b).
  • fuel-injected — (of an engine) having fuel injection.
  • full sentence — any sentence the form of which exemplifies the most frequently used structural pattern of a particular language, as, in English, any sentence that contains a subject and a predicate; a sentence from which elliptical sentences may be derived by grammatical transformations.
  • function room — a room designated for official or formal social gatherings or ceremonies
  • function word — a word, as a preposition, article, auxiliary, or pronoun, that chiefly expresses grammatical relationships, has little semantic content of its own, and belongs to a small, closed class of words whose membership is relatively fixed (distinguished from content word).
  • functionalise — to make functional.
  • functionalism — (usually initial capital letter) Chiefly Architecture, Furniture. a design movement evolved from several previous movements or schools in Europe in the early 20th century, advocating the design of buildings, furnishings, etc., as direct fulfillments of material requirements, as for shelter, repose, or the serving of food, with the construction, materials, and purpose clearly expressed or at least not denied, and with aesthetic effect derived chiefly from proportions and finish, purely decorative effects being excluded or greatly subordinated. the doctrines and practices associated with this movement. Compare rationalism (def 4).
  • functionalist — a person who advocates, or works according to, the principles of functionalism.
  • functionality — of or relating to a function or functions: functional difficulties in the administration.
  • functionalize — to make functional.
  • functionaries — Plural form of functionary.
  • genuflections — Plural form of genuflection.
  • ground effect — the improvement to the aerodynamic qualities of a low-slung motor vehicle resulting from a cushion of air beneath it
  • hash function — (programming)   A hash coding function which assigns a data item distinguished by some "key" into one of a number of possible "hash buckets" in a hash table. The hash function is usually combined with another more precise function. For example a program might take a string of letters and put it in one of twenty six lists depending on its first letter. Ideally, a hash function should distribute items evenly between the buckets to reduce the number of hash collisions. If, for example, the strings were names beginning with "Mr.", "Miss" or "Mrs." then taking the first letter would be a very poor hash function because all names would hash the same.
  • hyperfunction — abnormally increased function, especially of glands or other organs.
  • ichthyofaunal — relating to ichthyofauna
  • immunifacient — causing immunity
  • impactfulness — The quality of being impactful.
  • in difficulty — If you are in difficulty or in difficulties, you are having a lot of problems.
  • ineffectually — not effectual; without satisfactory or decisive effect: an ineffectual remedy.
  • infostructure — The technical infrastructure supporting an information system.
  • infructuously — in an infructuous or unfruitful manner; fruitlessly
  • inns of court — (in England) the four private unincorporated societies in London that function as a law school and have the exclusive privilege of calling candidates to the English bar
  • interfunction — the kind of action or activity proper to a person, thing, or institution; the purpose for which something is designed or exists; role.
  • justification — a reason, fact, circumstance, or explanation that justifies or defends: His insulting you was ample justification for you to leave the party.
  • liquefacients — Plural form of liquefacient.
  • liquefactions — Plural form of liquefaction.
  • liquification — Alternative form of liquefaction.
  • loss function — (in decision theory) a function that expresses the loss incurred when a decision is made in terms of various factors.
  • magnetic flux — the total magnetic induction crossing a surface, equal to the integral of the component of magnetic induction perpendicular to the surface over the surface: usually measured in webers or maxwells.
  • magnus effect — the thrust on a cylinder rotating about its axis while in motion in a fluid, the thrust being perpendicular to the relative motion of the cylinder in the fluid.
  • malfunctional — Not functioning as intended.
  • malfunctioned — Simple past tense and past participle of malfunction.
  • manufactories — Plural form of manufactory.
  • manufacturers — Plural form of manufacturer.
  • manufacturing — the making of goods or wares by manual labor or by machinery, especially on a large scale: the manufacture of television sets.
  • match-funding — the stipulation set by a grant-providing body that the recipients of a grant raise a certain percentage of the money they require, generally a sum more or less equal to that of the sum of money being granted
  • memo function — (programming)   (Or "memoised function") A function that remembers which arguments it has been called with and the result returned and, if called with the same arguments again, returns the result from its memory rather than recalculating it. Memo functions were invented by Professor Donald Michie of Edinburgh University. The idea was further developed by Robin Popplestone in his Pop2 language long before it was ever worked into LISP. This same principle is found at the hardware level in computer architectures which use a cache to store recently accessed memory locations. A Common Lisp package by Marty Hall <[email protected]> ftp://archive.cs.umbc.edu/pub/Memoization.
Was this page helpful?
Yes No
Thank you for your feedback! Tell your friends about this page
Tell us why?