I have an integer called "count" which increments when a certain condition is met. So I wanted to ask what happens if you write this condition:
if(count % 2)
{
return even_bit;
}
else
{
return odd_bit;
}
The question is basically asking if the if condition above is checking for the condition count%2 = 0 or count%2 !=0 when you don't explicitly define it in the expression for integer data type variables.