0%

18-letter words containing i, s, u

  • distance education — education in which students receive instruction over the Internet, from a video, etc., instead of going to school.
  • distinguishability — to mark off as different (often followed by from or by): He was distinguished from the other boys by his height.
  • distress frequency — a radio frequency band reserved for emergency signals from aircraft or ships in distress.
  • distributed eiffel — ["Distributed Eiffel: A Language for Programming Multi-Granular Distributed Objects on the Clouds Operating System", L. Gunaseelan et al, IEEE Conf Comp Langs, 1992].
  • distributed memory — (architecture)   The kind of memory in a parallel processor where each processor has fast access to its own local memory and where to access another processor's memory it must send a message via the inter-processor network. Opposite: shared memory.
  • distributed system — A collection of (probably heterogeneous) automata whose distribution is transparent to the user so that the system appears as one local machine. This is in contrast to a network, where the user is aware that there are several machines, and their location, storage replication, load balancing and functionality is not transparent. Distributed systems usually use some kind of client-server organisation. Distributed systems are considered by some to be the "next wave" of computing.
  • distribution class — form class
  • distribution curve — the curve or line of a graph in which cumulative frequencies are plotted as ordinates and values of the variate as abscissas.
  • distribution ratio — the ratio of concentrations of a solute distributed between two immiscible solvents in contact with each other, as iodine in water and chloroform
  • division of labour — a system of organizing the manufacture of an article in a series of separate specialized operations, each of which is carried out by a different worker or group of workers
  • do oneself justice — If you do yourself justice, you do something as well as you are capable of doing it.
  • double white lines — parallel white lines on a roadway, usually indicating a barrier to crossing
  • doubly linked list — (programming)   A data structure in which each element contains pointers to the next and previous elements in the list, thus forming a bidirectional linear list.
  • drainpipe trousers — trousers with very narrow legs
  • driver's education — high-school driving classes
  • driving instructor — sb who teaches people to drive
  • drug-eluting stent — A drug-eluting stent is a tube placed into a blocked artery that slowly releases a drug to prevent another blockage in the artery.
  • duty-free shopping — the making of duty-free purchases
  • dwarf storage unit — (humour)   (DSU) An IBM term for a cupboard.
  • dysfunctionalities — Plural form of dysfunctionality.
  • east indian walnut — lebbek.
  • eastern algonquian — a subgroup of the Algonquian language family, comprising the languages spoken aboriginally from Nova Scotia to northeastern North Carolina.
  • electroluminescent — Having the quality of electroluminescence.
  • electrostatic unit — any unit that belongs to a system of electrical cgs units in which the electric constant is given the value of unity and is taken as a pure number
  • energy consumption — amount of energy used
  • entrepreneurialism — The spirit or state of acting in an entrepreneurial manner.
  • entry requirements — the types and grades of examination required to enter a university
  • epstein-barr virus — a virus belonging to the herpes family that causes infectious mononucleosis; it is also implicated in the development of Burkitt's lymphoma and Hodgkin's disease
  • equine herpesvirus — a viral disease of horses that may cause respiratory signs, abortion, neonatal death, and paresis. A vaccine is available against this disease
  • equinoctial spring — either of the two highest spring tides that occur at the equinoxes
  • established church — a Church that is officially recognized as a national institution, esp the Church of England
  • ethnomusicological — Relating to or pertaining to ethnomusicology.
  • euclid's algorithm — (algorithm)   (Or "Euclidean Algorithm") An algorithm for finding the greatest common divisor (GCD) of two numbers. It relies on the identity gcd(a, b) = gcd(a-b, b) To find the GCD of two numbers by this algorithm, repeatedly replace the larger by subtracting the smaller from it until the two numbers are equal. E.g. 132, 168 -> 132, 36 -> 96, 36 -> 60, 36 -> 24, 36 -> 24, 12 -> 12, 12 so the GCD of 132 and 168 is 12. This algorithm requires only subtraction and comparison operations but can take a number of steps proportional to the difference between the initial numbers (e.g. gcd(1, 1001) will take 1000 steps).
  • evolution strategy — (ES) A kind of evolutionary algorithm where individuals (potential solutions) are encoded by a set of real-valued "object variables" (the individual's "genome"). For each object variable an individual also has a "strategy variable" which determines the degree of mutation to be applied to the corresponding object variable. The strategy variables also mutate, allowing the rate of mutation of the object variables to vary. An ES is characterised by the population size, the number of offspring produced in each generation and whether the new population is selected from parents and offspring or only from the offspring. ES were invented in 1963 by Ingo Rechenberg, Hans-Paul Schwefel at the Technical University of Berlin (TUB) while searching for the optimal shapes of bodies in a flow.
  • exclusive brethren — one of the two main divisions of the Plymouth Brethren, which, in contrast to the Open Brethren, restricts its members' contacts with those outside the sect
  • executive decision — a decision made by a person or group that has executive power
  • exercise equipment — equipment that can be used for exercising, such as tread mills, rowing machines, etc
  • exhaustive testing — (programming)   Executing a program with all possible combinations of inputs or values for program variables.
  • eyewitness account — a description given by someone who was present at an event
  • fascicular cambium — cambium that develops within the vascular bundles, producing secondary xylem and phloem.
  • fast-food industry — the industry surrounding fast-food restaurants
  • feeping creaturism — /fee'ping kree"ch*r-izm/ A deliberate spoonerism for creeping featurism, meant to imply that the system or program in question has become a misshapen creature of hacks. This term isn"t really well defined, but it sounds so neat that most hackers have said or heard it. It is probably reinforced by an image of terminals prowling about in the dark making their customary noises.
  • fehling's solution — a blue solution of copper sulfate, Rochelle salt, and sodium hydroxide, used to test for the presence of a sugar, aldehyde, etc.
  • fibonacci sequence — (mathematics)   The infinite sequence of numbers beginning 1, 1, 2, 3, 5, 8, 13, ... in which each term is the sum of the two terms preceding it. The ratio of successive Fibonacci terms tends to the golden ratio, namely (1 + sqrt 5)/2.
  • fibrocartilaginous — a type of cartilage having a large number of fibers.
  • field of quotients — a field whose elements are pairs of elements of a given commutative integral domain such that the second element of each pair is not zero. The field of rational numbers is the field of quotients of the integral domain of integers.
  • first class module — (programming)   A module that is a first class data object of the programming language, e.g. a record containing functions. In a functional language, it is standard to have first class programs, so program building blocks can have the same status.
  • first duke of york — a member of the royal house of England that ruled from 1461 to 1485.
  • first-in first-out — (algorithm)   (FIFO, or "queue") A data structure or hardware buffer from which items are taken out in the same order they were put in. Also known as a "shelf" from the analogy with pushing items onto one end of a shelf so that they fall off the other. A FIFO is useful for buffering a stream of data between a sender and receiver which are not synchronised - i.e. not sending and receiving at exactly the same rate. Obviously if the rates differ by too much in one direction for too long then the FIFO will become either full (blocking the sender) or empty (blocking the receiver). A Unix pipe is a common example of a FIFO. A FIFO might be (but isn't ever?) called a LILO - last-in last-out. The opposite of a FIFO is a LIFO (last-in first-out) or "stack".
  • fissure of rolando — central sulcus.
Was this page helpful?
Yes No
Thank you for your feedback! Tell your friends about this page
Tell us why?