0%

24-letter words containing f, a, s, t, l, n

  • a bit of slap and tickle — sexual play
  • adaptable user interface — (tool, product)   (AUI, Oracle Toolkit) A toolkit from Oracle allowing applications to be written which will be portable between different windowing systems. AUI provides one call level interface along with a resource manager and editor across a range of "standard" GUIs, including Macintosh, Microsoft Windows and the X Window System.
  • alexandre gustave eiffel — Alexandre Gustave [a-lek-sahn-druh gys-tav] /a lɛkˈsɑ̃ drə güsˈtav/ (Show IPA), 1832–1923, French civil engineer and pioneer aerodynamic researcher.
  • alienation of affections — the estrangement by a third person of one spouse from the other.
  • almost periodic function — a function that repeats its values approximately at almost equally spaced intervals of its domain.
  • ammonium chromic sulfate — chrome alum (def 1).
  • assembly of the notables — notable (def 5).
  • assembly-of-the-notables — a prominent, distinguished, or important person.
  • bay of mont-saint-michel — an inlet of the Gulf of St Malo
  • bull information systems — (company)   A multinational I.T. group based in Europe with 21,000 people and operations in more than 85 countries. In 1997, Bull earned revenues of over $4 billion, including over 65% outside of France, its country of origin. The company is ranked as the third largest systems integrator in Europe.
  • californian spangled cat — a breed of short-haired cat with a spotted coat, bred in California to resemble a leopard in appearance
  • cast pearls before swine — to present something of great interest or value to someone incapable of appreciating it
  • coal-fired power station — a power station that generates electricity by the burning of coal
  • codd's first normal form — database normalisation
  • compact fluorescent lamp — A compact fluorescent lamp is a small fluorescent lamp (= a tubular light bulb coated with phosphor which produces a bright light) that has a lamp life that is much longer than incandescent lamps.
  • complement fixation test — a serological test for detecting the presence of a specific antibody or antigen, used in the diagnosis of syphilis, etc
  • complement-fixation test — a test for diagnosing an infectious disease by detecting the presence of antibody in the blood, based on the fixing of a known quantity of complement to the antigen being tested and the specific antibody that combines with it. Abbreviation: CFT.
  • congestive heart failure — heart failure characterized by weakness, breathlessness, and abnormal congestion in the circulatory system, esp. in the lungs or lower legs
  • cost-of-living allowance — an additional payment which takes account of the cost of living
  • council of nationalities — the legislature of the former Soviet Union and its successor states, consisting of an upper house (Soviet of the Union or Council of the Union) whose delegates are elected on the basis of population, and a lower house (Soviet of Nationalities or Council of Nationalities) whose delegates are elected to represent the various nationalities.
  • definite relative clause — a relative clause with a definite relative pronoun as subordinating word, as that they said in We heard the things that they said.
  • delayed control-transfer — (architecture)   A technique used on the SPARC processor to reduce the effect of pipeline breaks by executing the instruction after a branch instruction (the "delay instruction" in the "delay slot"). If there is no useful instruction which can be placed in the delay slot then the "annul bit" on the control transfer instruction can be set, preventing execution of the delay instruction (unless the control transfer is conditional and is taken). Annulled branches are indicated in SPARC assembler language by appending ",A" to the operation code. For example, LOOP: ... CMP %L0,10 BLE,A LOOP ADD %L2, %L3, #L4 If the delay instruction is also a control transfer instruction then it gets more complicated. Both control transfer instructions are executed (but not the following instruction) and, assuming they are both taken, control is transferred briefly to the destination of the first and then immediately to the destination of the second.
  • differential association — a theory that criminal and deviant behavior is learned through close and frequent association with criminal or deviant behavior patterns, norms, and values.
  • electronic point of sale — a computerized system for recording sales in retail shops, using a laser scanner at the cash till to read bar codes on the packages of the items sold
  • failure-directed testing — (programming)   (Or "heuristics testing") Software testing based on the knowledge of the types of errors made in the past that are likely for the system under test.
  • family income supplement — a benefit formerly paid to low-income families
  • federal trade commission — FTC.
  • fight like kilkenny cats — to fight until both parties are destroyed
  • floating-point specratio — SPECfp92
  • flue gas desulfurization — Flue gas desulfurization is the removal of pollutants containing sulfur from flue gas.
  • footloose and fancy-free — If you describe someone as footloose and fancy-free, you mean that they are not married or in a similar relationship, and you therefore consider them to have very few responsibilities or commitments.
  • functional specification — (programming, project)   A description of what a system (e.g. a piece of software) does or should do (but not how it should do it). The functional specification is one of the inputs to the design process. See IEEE/ANSI Std. 610.12-1990.
  • graphical user interface — a software interface designed to standardize and simplify the use of computer programs, as by using a mouse to manipulate text and images on a display screen featuring icons, windows, and menus.
  • knowledge sharing effort — (project)   An ARPA project developing techniques and methods for building large-scale knowledge bases which are sharable and reusable.
  • lab for computer science — MIT. http://lcs.mit.edu/.
  • land of the midnight sun — any of those countries containing land within the Arctic Circle where there is a midnight sun in midsummer, especially Norway, Sweden, or Finland.
  • leave someone to himself — not to control or direct someone
  • line of least resistance — the easiest, but not necessarily the best or most honourable, course of action
  • liquid components of gas — Liquid components of gas are associated hydrocarbons in natural gas, which include ethane, propane, and butane.
  • look someone in the face — to look directly at a person without fear or shame
  • make one's presence felt — If you make your presence felt, you do something which makes people notice you or pay attention to you.
  • mean time between faults — Mean Time Between Failures
  • passive balance of trade — a negative balance of trade
  • photomechanical transfer — a method of producing photographic prints or offset printing plates from paper negatives by a chemical transfer process rather than by exposure to light
  • professional association — a body of persons engaged in the same profession, formed usually to control entry into the profession, maintain standards, and represent the profession in discussions with other bodies
  • professional corporation — a corporation formed by one or more licensed practitioners, especially medical or legal, to operate their practices on a corporate plan. Abbreviation: PC, P.C.
  • public relations officer — a person who is responsible for communications with the public
  • quick-assembly furniture — furniture such as shelves and cupboards which you buy as a number of separate pieces and assemble yourself
  • referential transparency — (programming)   An expression E is referentially transparent if any subexpression and its value (the result of evaluating it) can be interchanged without changing the value of E. This is not the case if the value of an expression depends on global state which can change value. The most common example of changing global state is assignment to a global variable. For example, if y is a global variable in: f(x) { return x+y; } g(z) { a = f(1); y = y + z; return a + f(1); } function g has the "side-effect" that it alters the value of y. Since f's result depends on y, the two calls to f(1) will return different results even though the argument is the same. Thus f is not referentially transparent. Changing the order of evaluation of the statements in g will change its result. We could make f above referentially transparent by passing in y as an argument: f(x, y) = x+y Similarly, g would need to take y as an argument and return its new value as part of the result: g(z, y) { a = f(1, y); y' = y+z; return (a + f(1, y'), y'); } Referentially transparent programs are more amenable to formal methods and easier to reason about because the meaning of an expression depends only on the meaning of its subexpressions and not on the order of evaluation or side-effects of other expressions. We can stretch the concept of referential transparency to include input and output if we consider the whole program to be a function from its input to its output. The program as a whole is referentially transparent because it will always produce the same output when given the same input. This is stretching the concept because the program's input may include what the user types, the content of certain files or even the time of day. If we do not consider global state like the contents of files as input, then writing to a file and reading what was written behaves just like assignment to a global variable. However, if we must consider the state of the universe as an input rather than global state then any deterministic system would be referentially transparent! See also extensional equality, observational equivalence.
  • saint ignatius of loyolaSaint Ignatius of (Iñigo López de Loyola) 1491–1556, Spanish soldier and ecclesiastic: founder of the Society of Jesus.

On this page, we collect all 24-letter words with F-A-S-T-L-N. It’s easy to find right word with a certain length. It is the easiest way to find 24-letter word that contains in F-A-S-T-L-N 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?