// "Replace with reduce()" "true" import java.util.*; public class Main { public void testConjunction() { List booleans = new ArrayList<>(); boolean acc = true; for (Boolean bool : booleans) { acc &= bool; } } }