A or C are pretty much the same (as Linux is in the UNIX family). B depends on the version of Windows described. D is technically possible, but very difficult. The answer really comes down to cost (Linux is 'free' vs UNIX, which is licensed).
Answer:
B
Explanation:
It is the capacity (in Farad) of the capacitor that determines its behaviour in the circiut. The voltage is merely a qualification of what it can handle. Higher is "better".
Answer:#include <stdio.h>
int main() {
int num;
printf("Enter an integer: ");
scanf("%d", &num);
// true if num is perfectly divisible by 2
if(num % 2 == 0)
printf("%d is even.", num);
else
printf("%d is odd.", num);
return 0;
}