- Divisor is negative, dividend is positive
a = 17;
b = -14;
Question: What is the result of java operation a/b ??
- Divisor is positive, dividend is negative
a = -17;
b = 14;
Question: What is the result of java operation a/b ??
- Both divisor and dividend are negative
a = -17;
b = -14;
Question: What is the result of java operation a/b ??
- Both are positive
a = 17;
b = 14;
// Question: This is = 1 and is fairly straightforward.