0%

24-letter words containing c, i, r, e, n, s

  • 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.
  • renewable term insurance — Renewable term insurance is term life insurance that may be renewed for another period without the policyholder needing to provide further evidence of their insurability.
  • representative democracy — a person or thing that represents another or others.
  • resale price maintenance — the practice by which a manufacturer establishes a fixed or minimum price for the resale of a brand product by retailers or other distributors
  • responsibility allowance — payment made to somebody who has special responsibilities
  • robot exclusion standard — standard for robot exclusion
  • rocky mountain whitefish — mountain whitefish.
  • san francisco de macoris — a city in the N Dominican Republic.
  • self-fulfilling prophecy — a prophecy that comes true because of the expectation that it will
  • senegambia confederation — an economic and political union (1982–89) between Senegal and The Gambia
  • serial interface adaptor — (SIA) The Ethernet driver chip used on a Filtabyte Ethernet card.
  • shadow foreign secretary — the member of the main opposition party in Parliament who would hold the office of Foreign Secretary if their party were in power
  • she is no spring chicken — she is no longer young
  • single european currency — the official currency, also known as the Euro, of some of the members of the European Union
  • single premium insurance — Single premium insurance is insurance where all the premium is paid at once, in one payment.
  • skeleton in the cupboard — a scandalous fact or event in the past that is kept secret
  • south equatorial current — an ocean current, flowing westward, found near the equator in the Atlantic, Pacific, and Indian oceans.
  • special development area — an area earmarked for special development by the government
  • stereographic projection — a one-to-one correspondence between the points on a sphere and the extended complex plane where the north pole on the sphere corresponds to the point at infinity of the plane.
  • stratified charge engine — an internal-combustion engine in which a small charge of a rich fuel mixture is ignited first and used to improve combustion of a larger charge of a lean fuel mixture.
  • subordinate con-junction — a conjunction introducing a subordinate clause, as when in They were glad when I finished.
  • succinylcholine chloride — a crystalline compound, C 1 4 H 3 0 Cl 2 N 2 O 4 , used as a skeletal muscle relaxant in surgical procedures.
  • superheterodyne receiver — a radio receiver that combines two radio-frequency signals by heterodyne action, to produce a signal above the audible frequency limit. This signal is amplified and demodulated to give the desired audio-frequency signal
  • telephony user interface — (communications)   (TUI) Either a software interface to telephony (e.g. a phone-capable PC) or a DTMF-based interface to software (e.g. voicemail).
  • telescope user interface — (hardware, interface)   (TUI) A remote control interface for a telescope.
  • the second international — an international association of socialist parties and trade unions that began in Paris in 1889 and collapsed during World War I. The right-wing elements reassembled at Berne in 1919
  • three-spined stickleback — a small teleost fish, Gasterosteus aculeatus, of the family Gasterosteidae, of rivers and coastal regions, having three spines along the back and occurring in cold and temperate northern regions
  • to pick someone's brains — If you pick someone's brains, you ask them to help you with a problem because they know more about the subject than you.
  • to rise to the challenge — If someone rises to the challenge, they act in response to a difficult situation which is new to them and are successful.
  • trading standards office — an office of the local authority department that deals with trading standards
  • transcendental aesthetic — (in Kantian epistemology) the study of space and time as the a priori forms of perception.
  • transcendental dialectic — (in transcendental logic) the study of the fallacious attribution of objective reality to the perceptions by the mind of external objects. Compare dialectic (def 8).
  • tricyclic antidepressant — pertaining to or embodying three cycles.
  • trip the light fantastic — a journey or voyage: to win a trip to Paris.
  • tuva autonomous republic — an autonomous republic in the Russian Federation in Asia: formerly an independent republic in Mongolia. 65,810 sq. mi. (170,500 sq. km). Capital: Kyzyl.
  • twenty-four-hour service — a banking service that is always available
  • uniform resource locater — Uniform Resource Locator
  • uniform resource locator — (web)   (URL, previously "Universal") A standard way of specifying the location of an object, typically a web page, on the Internet. Other types of object are described below. URLs are the form of address used on the World-Wide Web. They are used in HTML documents to specify the target of a hypertext link which is often another HTML document (possibly stored on another computer). Here are some example URLs: http://w3.org/default.html http://acme.co.uk:8080/images/map.gif http://foldoc.org/?Uniform+Resource+Locator http://w3.org/default.html#Introduction ftp://wuarchive.wustl.edu/mirrors/msdos/graphics/gifkit.zip ftp://spy:[email protected]/pub/topsecret/weapon.tgz mailto:[email protected] news:alt.hypertext telnet://dra.com The part before the first colon specifies the access scheme or protocol. Commonly implemented schemes include: ftp, http (web), gopher or WAIS. The "file" scheme should only be used to refer to a file on the same host. Other less commonly used schemes include news, telnet or mailto (e-mail). The part after the colon is interpreted according to the access scheme. In general, two slashes after the colon introduce a hostname (host:port is also valid, or for FTP user:[email protected] or [email protected]). The port number is usually omitted and defaults to the standard port for the scheme, e.g. port 80 for HTTP. For an HTTP or FTP URL the next part is a pathname which is usually related to the pathname of a file on the server. The file can contain any type of data but only certain types are interpreted directly by most browsers. These include HTML and images in gif or jpeg format. The file's type is given by a MIME type in the HTTP headers returned by the server, e.g. "text/html", "image/gif", and is usually also indicated by its filename extension. A file whose type is not recognised directly by the browser may be passed to an external "viewer" application, e.g. a sound player. The last (optional) part of the URL may be a query string preceded by "?" or a "fragment identifier" preceded by "#". The later indicates a particular position within the specified document. Only alphanumerics, reserved characters (:/?#"<>%+) used for their reserved purposes and "$", "-", "_", ".", "&", "+" are safe and may be transmitted unencoded. Other characters are encoded as a "%" followed by two hexadecimal digits. Space may also be encoded as "+". Standard SGML "&;" character entity encodings (e.g. "é") are also accepted when URLs are embedded in HTML. The terminating semicolon may be omitted if & is followed by a non-letter character.
  • united states of america — United States. Abbreviation: U.S.A., USA.
  • universal life insurance — a type of insurance in which the payments of the insured are placed in an investment fund, earnings from which pay the premium on term life insurance while any remainder continues to increase the policy's value.
  • video cassette recording — a recording made using a tape recorder for vision and sound signals using magnetic tape in closed plastic cassettes: used for recording and playing back television programmes and films
  • visual component library — (programming)   VCL A application framework library for Microsoft Windows and Borland Software Corp.'s Delphi and C++Builder rapid application development software. VCL was originally designed for Delphi but is now also used for C++Builder. This replaces OWL Object Windows Library as Borland's Windows C++ framework of choice. VCL encapsulates the C-based Win32 API into a much easier to use, object-oriented form. Like its direct rival, Microsoft Foundation Class Library (MFC), VCL includes classes to create Windows programs. The VCL component class can be inherited to create new VCL components, which are the building blocks of Delphi and C++Builder applications. VCL components are somewhat in competition with ActiveX controls, though a VCL wrapper can be created to make an ActiveX control seem like a VCL component.
  • water of crystallization — water of hydration, formerly thought necessary to crystallization: now usually regarded as affecting crystallization only as it forms new molecular combinations.
  • where one is coming from — to approach or move toward a particular person or place: Come here. Don't come any closer!
  • win (or lose) by a neck — to win (or lose) by the length of a horse's head and neck
  • within striking distance — If you are within striking distance of something, or if something is within striking distance, it is quite near, so it could be reached or achieved quite easily.
Was this page helpful?
Yes No
Thank you for your feedback! Tell your friends about this page
Tell us why?