Which of the following correctly declares a boolean variable and assigns it the result of a comparison?
// Option A
boolean result = (7 > 3);
// Option B
Boolean result = 7 > 3;
// Option C
bool result = 7 > 3;
// Option D
boolean result = "7 > 3";