• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/6

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

6 Cards in this Set

  • Front
  • Back

What is the input and what are the condition for each output for Compare-for-equality (CE) circuits?

Input: two "unsigned" binary numbers


Output: 1 if inputs are identical;


0 otherwise

What circuit does (a • b) + (~a • ~b) represent?

Compare-for-equality circuit

What is the input and output for a full adder circuit?

Input: two "unsigned N-bit" numbers


Output: the sum of the input

Within Java, what is an n-bit integer, and what is an unsigned n-bit integer?

N-bit integer: a number between -2^(n-1) and 2^(n-1) -1


Unsigned N-bit integer: a number between 0 and 2^n -1

What does the Boolean expression (~ai • ~bi • ci) + (~ai • bi • ~ci) + (ai • ~bi • ~ci) + (ai • bi • ci) represent?

The sum digit, si

What does the Boolean expression (~ai • bi • ci) + (ai • ~bi • ci) + (ai • bi • ~ci) + (ai • bi • ci) represent?

The carry digit, c(i + 1)