Due to the length of the hash I'm going to say it's MD5
Answer:
B=10
Explanation:
(-21) x 0=0 and (-50)÷(-5)=10
0+10=10
Answer:
Never used it so I do not know.
Explanation:
To be honest i thought you meant like animal jelly at first
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);
}
}