answersLogoWhite

0

If you mean a sentence using the word increment then first let's agree that an ibcrement is an increase (or decrease) in, generally, a sequence of numbers. so the following sequence icrements by+2...

1,3,5,7,9,11,13 and so on; so to use the word in a sentence how about this?

'By how much does the following sequence icrement for each stage of the sequence? 3,6,9,12,15,8,21,24.

the answer is that it increments by 3

Hope this answers your question for you.

User Avatar

Wiki User

12y ago

What else can I help you with?

Related Questions

Can you give an example of a sentence using the increment?

"The increment" means the distance between two things. If you measure the increment between those numbers, you can find the difference.


How to write an good sentence to request salary increment?

See attached link


What is a sentence with the word increment?

Add flour to the mix in increments of no more than one cup at a time.


Can you increment the value of a variable by 2 using any increment operator?

There is no such increment operator in C language to increment the value of a variable by 2.An increment operator only increments the value by 1. however you can apply the increment operator twice to get an increment of 3. No: you cannot: ++(++a) won't compile. Yes. Example: a += 2; but += is not an increment operator, it's a shorthand of a=a+2; just like a++ is a shorthand for a= a+1


What is the percentage of increment an employee can expected?

None. They can earn an increment but may not expect anything!None. They can earn an increment but may not expect anything!None. They can earn an increment but may not expect anything!None. They can earn an increment but may not expect anything!


What is a small increment of time?

the smallest increment of time is... miliseconds.


Why are increment and decrement used in c?

To increment or decrement a value


Is x plus equals y is post increment or pre increment?

The '+=' operator behaves like a pre increment operator.


What is the percentage of increment for CBSE teacehrs?

percentage of increment of cbse board


How do you increment strings in c?

Not possible. If you think otherwise, then please increment manually this string: "/"


Which loop statement does not contain an increment statement but automatically increment the counter at the end of each iteration?

For


How can you differentiate overloading of pre-fix and post-fix increment operator?

The prefix increment operator is overloaded as operator++() while the postfix increment operator is overloaded as operator++(int).