How much energy is required to heat 36.0 g H2O from 65°C to…

How much energy is required to heat 36.0 g H2O from 65°C to 115°C?  The following physical data may be useful. Show all work on scratch paper to receive full credit.ΔHvap = 40.7 kJ/molCliq = 4.18 J/g.CCgas = 2.01 J/g.CCsol = 2.09 J/g.CTmelting = 0 ∘CTboiling = 100 ∘C

Consider the following code snippet for an array-based list:…

Consider the following code snippet for an array-based list: public void add(int i, E e) { if (size == data.length) { throw new IllegalStateException(“Array is full”); } for (int k = size – 1; k >= i; k–) { data[k + 1] = data[k]; } data[i] = e; size++; } If the list contains [A, B, C, D] (size=4) and you call add(1, ‘X’), what is the first value of k for which the loop condition is true?