The correct answer is B. false.
Determining which color goes first is not random at all - it is a rule in chess that the White player will always start the game first, and will then be followed by the Black player.
Answer:
if (option1.equals(option2)){
rsvp = true;
}
System.out.println(rsvp);
A full program is given in the explanation section
Explanation:
import java.util.Scanner;
public class Option {
public static void main(String[] args) {
boolean rsvp = false;
int selection;
String option1,option2;
Scanner in = new Scanner(System.in);
option1 = in.next();
option2 = in.next();
if (option1.equals(option2)){
rsvp = true;
}
System.out.println(rsvp);
}
}
Answer: I think it’s D
Explanation: the rest apply to the the rules of 1NF and 2NF