Which of the following can compile?

(a) int x = 3.0;
(b) int x = 3.7;
(c) int x = (int) 4.8;
(d) int x = (int) false;
(e) int x = null;

Select all correct answers.