python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
Does an ADC with bipolar input has more resolution on the negative "part"?
I'm trying to understand if the negative part of a bipolar ADC has more resolution than the positive.
For simplicity, let's say I have a 3 bit ADC, for a total of 8 possible values. Let's also say tha...
Diogo Marques
Votes: 0
Answers: 1
Twos complement in MASM
why is it that in assembly language that if I subtract a variables value from a register that has a value of zero that I end up getting the two’s complement of that variable’s value?
If I have an var1...

L Mac
Votes: 0
Answers: 0
Char addition does not have expected result in C
Can someone explain me how is this at the end
a=?,b=?,c=-124
and not
a=?,b=?,c=132
This is code:
#include <stdio.h>
int main() {
char a = 'D', b='C', c='A';
a = c + 'D';
b = a + b + 'A...
mr fahrenheit
Votes: 0
Answers: 3
How does sign contraction work from 16 bit to 8 bit?
How do I sign contract ff12.here it is a negative number but I need to remove all the FF here but if I do that it becomes a positive number.
One definition of "sign contraction" can be foun...
Nishant
Votes: 0
Answers: 1