Answer:
A retaining of a wall is a protective structure, first and foremost.
Explanation:
Its main aim is to provide functional support for keeping soil in place. It acts as a wall to keep the soil on one side and the rest of the landscape area on the other, providing a platform for a garden to be created.
Answer:
b. Re
Explanation:
Reynolds number describe the type of flow of fluid. If Reynolds number has a high value then it is called turbulent flow and if Reynolds number is low then it is called laminar flow. Reynolds number given as follows:

For internal pipe flow, if Reynolds number greater than 4000 then, it is called turbulent flow and if Reynolds number less than 2000 then it is called laminar flow. The Reynolds number between 2000 to 4000 the flow is called transition flow.
Answer:
(b) False
Explanation:
The specific internal energy of the system does not depend on the path of the process, it is a state function means its depend on only on the initial and the final position it does not depend on the path which it follow in the process.Internal energy is associated with the random motion of the molecules.
So it is false statement as internal energy is not a path function
Answer:
u/v = S (y²w) / m sinwt + y/h
Explanation:
see attached image
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).