Multiple choice Which value can you assign to a boolean variable? true 1 null False Reveal answer Fill a bubble to check yourself A Correct answer Explanation In Java, boolean variables can only hold the literal values 'true' or 'false' (all lowercase). Unlike some other languages, Java does not allow assigning integers like 1 or capitalized words like 'False' to a boolean variable.