Answer:
Stephen Covey believes this principle is the key to effective interpersonal communication. Seek first to understand, then to be understood. This habit is about communicating with others. It's about developing the habit of listening carefully and really understanding the other person BEFORE giving your thoughts.
Explanation:
Answer:
Heat required =7126.58 Btu.
Explanation:
Given that
Mass m=20 lb
We know that
1 lb =0.45 kg
So 20 lb=9 kg
m=9 kg
Ice at -15° F and we have to covert it at 200° F.
First ice will take sensible heat at up to 32 F then it will take latent heat at constant temperature and temperature will remain 32 F.After that it will convert in water and water will take sensible heat and reach at 200 F.
We know that
Specific heat for ice 
Latent heat for ice H=336 KJ/kg
Specific heat for ice 
We know that sensible heat given as

Heat for -15F to 32 F:


Q=858.69 KJ
Heat for 32 Fto 200 F:


Q=6330.74 KJ
Total heat=858.69 + 336 +6330.74 KJ
Total heat=7525.43 KJ
We know that 1 KJ=0.947 Btu
So 7525.43 KJ=7126.58 Btu
So heat required to covert ice into water is 7126.58 Btu.
Answer:
- using System;
- public class Program
- {
- public static void Main()
- {
- Console.WriteLine("Enter number of students: ");
- int num = Convert.ToInt32(Console.ReadLine());
- string [] firstName = new string[num];
- string [] lastName = new string[num];
-
- for(int i=0 ; i < num; i++){
- Console.WriteLine("Enter first name: ");
- firstName[i] = Console.ReadLine();
-
- Console.WriteLine("Enter last name: ");
- lastName[i] = Console.ReadLine();
- }
-
- for(int j=0; j < num; j++){
- Console.WriteLine(lastName[j] + "," + firstName[j]);
- }
- }
- }
Explanation:
Firstly, prompt user to enter number of student to be stored (Line 6- 7). Next, create two array, firstName and lastName with num size (Line 8-9).
Create a for-loop to repeat for num times and prompt user to enter first name and last name and then store them in the firstName and lastName array, respectively (Line 11 - 17).
Create another for loop to traverse through the lastName and firstName array and display the last name and first name by following the format given in the question (Line 19 - 21).
Answer:
The constant here is the study outline
Explanation:
In scientific research, the constant variable is that part/variable of the experiment that does not change or is set not to change. Examples include temperature, environment or height.
Assuming the scenery described in this question is an experiment. All the groups presented are bound by a constant during the experiment. The constant here is the study outline. The study outline provided to the students is not going to change.
NOTE: There could be confusion as regards the answer being the final exam grade but that will be the dependent variable as that will be the outcome of the experiment while the time spent to study will be the independent variable.