Which of these statements will result in autoVar being a boolean type variable?

auto autoVar = 200 = 200;auto autoVar = 300 == 300;auto autoVar = 200 >= 100auto autoVar = true;

Great, expressions that result in true or false statements will result in a boolean.

Whoops! Expressions that result in true or false statements will result in a boolean.