answersLogoWhite

0


Best Answer

The number of unique states that a counter may have before the sequence repeats itself is the modulus of the counter. Example, Modulus 10 would have the counter with states 0-9 and then reset to zero.
A modulus counter is a system of counting when the division of a variable number (x) by a set fixed number (y) does not leave a remainder.

For example:

x%y=0;

Suppose y=2 and x is variable:

1%2=1;

2%2=0;

3%2=1;

4%2=0;

5%2=1;

6%2=0;

....

If y=5:

1%5=1;

2%5=2;

3%5=3;

4%5=4;

5%5=0;

6%5=1;

....

So basically it's a counter that skips a certain number of steps (y) that you set.

User Avatar

Wiki User

13y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

10y ago

10

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the modulus number of a counter?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the modulus of a five-stage binary counter?

32 is the modulus. Modulus means the total number of counts. Maximum count of a five stage binary counter would be 11111 or 2^4 + 2^3+2^2+2^1+2^0 = 31 plus the count of zero = 32.


What is the Modulus of a counter whose output count is 0 to 7?

mod 8 counter mod 8 counter


What is the modulus of a four flip flop ring counter?

either 4 or 8 depending on the type of counter


How a modulus function works?

At the basic level, the modulus of a number or expression is simply the value of the number or of the expression. For a positive number the modulus is the number, for 0 it is 0, and for a negative number, x, it is -x (which is positive).


What is mean by modulus?

A modulus is the remainder after a number has been divided into another. 3 divides into 10 with a remainder of 1. So 1 is the modulus of 10 divided by 3.A modulus is the remainder after a number has been divided into another. 3 divides into 10 with a remainder of 1. So 1 is the modulus of 10 divided by 3.A modulus is the remainder after a number has been divided into another. 3 divides into 10 with a remainder of 1. So 1 is the modulus of 10 divided by 3.A modulus is the remainder after a number has been divided into another. 3 divides into 10 with a remainder of 1. So 1 is the modulus of 10 divided by 3.A modulus is the remainder after a number has been divided into another. 3 divides into 10 with a remainder of 1. So 1 is the modulus of 10 divided by 3.A modulus is the remainder after a number has been divided into another. 3 divides into 10 with a remainder of 1. So 1 is the modulus of 10 divided by 3.A modulus is the remainder after a number has been divided into another. 3 divides into 10 with a remainder of 1. So 1 is the modulus of 10 divided by 3.A modulus is the remainder after a number has been divided into another. 3 divides into 10 with a remainder of 1. So 1 is the modulus of 10 divided by 3.A modulus is the remainder after a number has been divided into another. 3 divides into 10 with a remainder of 1. So 1 is the modulus of 10 divided by 3.A modulus is the remainder after a number has been divided into another. 3 divides into 10 with a remainder of 1. So 1 is the modulus of 10 divided by 3.A modulus is the remainder after a number has been divided into another. 3 divides into 10 with a remainder of 1. So 1 is the modulus of 10 divided by 3.


What is modulus of ram?

The number of descrite states.


How do you find modulus of number in scientific calculator?

The way you find modulus of a number on a scientific calculator depends on the model of calculator. On the TI-86, you use mod (x,y) or x mod y to find modulus.


What is the flowchart for finding modulus of a number?

The modulus of a number is the units digit of that number in the base of the modulus. For example, counting to 10, modulus 3, we get... 0 01 12 23 04 15 26 07 18 29 010 1 The calculate the modulus of a number, subtract the (integer of the number divided by the modulus) times the modulus. As an expression, this is... Xmod Y = X - integer (X / Y) * Y Note: This works also for negative numbers. -3 mod 5 is 2. Check it, if you want. The result will be correct so long as the integer trunction is towards zero, i.e. the integer of -1.3 is -1, not -2. Most compilers do this correctly. If you are using a compiler such as C, the modulus operator (%) will do this for you... int a;a = 7 % 3; /* 7 mod 3 is 1 *.


Why is m used in the slope formula?

what we now call just the "slope" was once called the "modulus of slope", the word "modulus" being used in its sense of "number used to measure" (as in "Young's modulus").


Distance a number is from 0 on the number line?

Its absolute value or magnitude or modulus.


What is the distance between a number and 0 on the number line?

Its absolute value (or modulus).


When you add a positive and a negative number what do you get?

if the modulus (just the value ignoring the signs) of the negative number is larger than the positive number, adding the two will get you a negative number, if the positive number is larger, than modulus of a negative number you will have a positive. Can be easily demonstrated on a number line. yes