Which choice uses the proper syntax for an if else statement?
if else
if (a > 1){ b = 2; } else{ b = 3; }
if (a > 1) b = 2; else b = 3; end
if (a > 1): b = 2; else: b = 3;
if (a > 1) b = 2; else b = 3;