Answer:
Answer for the question is : Solidification time will be same i.e. 170. See attached file for explanation.
Explanation:
Answer:
A
Explanation:
He should get a job in engineering to see what it's like to work in the field.
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:
As there was no attached picture, I will explain how to take the measurement of liquids in any buret which you can then apply to the specific question
Explanation:
A buret is a laboratory apparatus used to precisely measure the volume of liquids (usually alkalise or bases) used in a titration experiment. The standard buret has a capacity of 50 ml and graduated in 0.1ml though burets with smaller capacities exist.
From the question, your buret is filled to the top (0.00ml) with liquid. It is very important when taking buret readings to place the buret below your eye level so that the bottom meniscus (lower part of the liquid) can be read.
To take the buret reading, note your initial buret reading (in this case 0.00ml) then titrate the liquid base in the buret against the acid by opening the tap located at the bottom of the buret.
When the titration or reaction is complete, note the final reading against the calibration of buret. You can do this by observing the lower meniscus of the liquid remaining in the buret. (Remember to keep the buret at eye level to avoid parallax error),
The difference between your final buret reading and the initial buret reading gives you the precise volume of liquid used in the reaction.