多选题
Given:
1. public class Argue {
2. static boolean b;
3. static int x = 0;
4. public static void main(String[] args) {
5. int guess = (int) (Math.random() * 5);
6. if(guess < 0) assert false;
7. assert b = true;
8. assert x = 0;
9. assert x == 0;
10. } }
Which are true? (Choose all that apply.)