Which of the following statements correctly outputs the names of voters who live in district 6 and all voters who live in district 7?
a. if(district == 6 || 7)
System.out.println("Name is " + name);
b. if(district == 6 || district == 7)
System.out.println("Name is " + name);
c. if(district = 6 && district == 7)
System.out.println("Name is " + name);
d. two of these
We need at least 10 more requests to produce the solution.
0 / 10 have requested this problem solution
The more requests, the faster the answer.