1.In Rust, what type must the condition of an if expression evaluate to?
2.What is the value of size after let size = if n < 10 { "small" } else { "large" }; when n is 5?
3.Why does the assignment let size = if n < 10 { "small" } else { 5 }; fail to compile?
4.Which construct lets you write an infinite loop that returns a value when it exits?
5.How many iterations does for i in 0..=5 { } perform?
Answer every question to submit.