AskDefine | Define incremental

Dictionary Definition

incremental adj : increasing gradually by regular degrees or additions; "lecturers enjoy...steady incremental growth in salary"

User Contributed Dictionary

English

Adjective

  1. Pertaining to an increment.

Translations

Extensive Definition

An increment is an increase, either of some fixed amount, for example added regularly, or of a variable amount. For example, a salary may receive an annual increment. A decrease would rather be called a decrement.
Incremental may also refer to gradual change as opposed to massive, instant change.

Use in science and technology

Use in programming languages

Incrementing is of constant use in computer programming, such as in loops that iterate through a set of items one at a time.
For example, in JavaScript, the increment operator works like the following: x++ Where the decrement operator is: x-- In addition, the increment operator can be written both as x++ and ++x, with separate meanings. For example: var y = ++x is shorthand for: x = x+1 var y = x however, var y = x++ is shorthand for: var y = x x = x+1 --x instead of x-- follows similar behaviour.
incremental in Danish: Inkrementel
incremental in German: Inkrement und Dekrement
incremental in French: Incrémentation
incremental in Japanese: インクリメント
incremental in Polish: Inkrementacja
incremental in Russian: Инкремент
Privacy Policy, About Us, Terms and Conditions, Contact Us
Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2
Material from Wikipedia, Wiktionary, Dict
Valid HTML 4.01 Strict, Valid CSS Level 2.1