For the reaction, 3 A(g) + 2 B(g) → 2 C(g) + 2 D(g), the fol…

For the reaction, 3 A(g) + 2 B(g) → 2 C(g) + 2 D(g), the following data were collected at constant temperature. Determine the rate law. Show all work to receive full credit. Trial     Initial      Initial      Initial rate (M/min)1            0.200            0.100            6.00 x 10-22            0.100            0.100            1.50 x 10-23            0.200            0.200            1.20 x 10-14            0.300            0.200            2.70 x 10-1

Which of the following lines of code will cause a `Concurren…

Which of the following lines of code will cause a `ConcurrentModificationException`? ListString names = new ArrayList(); names.add(“Alice”); names.add(“Bob”); names.add(“Charlie”); IteratorString iter = names.iterator(); while (iter.hasNext()) {     String name = iter.next();     if (name.equals(“Bob”)) {              // LINE X     } }