This an example solved please follow up with they photo I sent ok
Answer: ALL CAREFULLY ANSWERED CORRECTLY.
Explanation:
1) A loaf of Bread PHYSICAL SYSTEM
✓ How can the environment affect the edibility of the bread
✓ What are the constituents that makes up the bread
✓ What process is involved in these constituents mixing to form the loaf.
2) The law of thermodynamics makes us to understand that when heat/energy passes through a system, the systems internal energy changes with respect to the conservation of energy law. That is energy lost = energy gained. Typically, ice would melt in a cup of hot tea because of the thermal energy in the molecules of the hot tea. When you heat a material, you are adding thermal kinetic energy to its molecules and usually raising its temperature. The temperature of the ice raises due to the kinetic energy added to it and it melts to water.
3) The theory of systems view the world as a complex system of interconnected parts. If we consider the society; (financial systems, political systems, etc) we will agree that they individually have their own components and it's the summation of this components that makes the system, this implies that system thinking could be applicable in this kinda of systems as long as they are made up of components.
4) Technology has boosted every sector of our lives and it has the capacity to do more. Restricting it's importance to entertainment alone would be an underusing of its potentials. Engineering students infact should not need any drive to be encouraged about maximizing all it can do in shaping our world.
5) ~ Nature shows its splendid soul
~Never ceases to leave us in amazement
~And we are in love
Answer:
Amount of concrete need to make slab = 1,500 feet³
Explanation:
Given:
Length of slab = 50 feet
Width of slab = 30 feet
Height of slab = 1 feet
Find:
Amount of concrete need to make slab
Computation;
Amount of concrete need to make slab = Volume of cuboid
Volume of cuboid = (l)(b)(h)
Amount of concrete need to make slab = (50)(30)(1)
Amount of concrete need to make slab = 1,500 feet³
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).