Answer:
What do you need help with?
Explanation:
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:
Cloud computing services are going to be very important to supporting Ashville's mobile app since it has different uses. These applications uses include; data storage, as well as helping to provide network to any business data related work. This will improve the city of Ashville's mobile app operations considerably.
The benefits of using cloud computing are; it allows a business managers to be more concerned with running the business themselves rather than maintaining the data center. The use of cloud computing allows a company's IT administrators to focus on managing the company's operations, thereby allowing performance to be enhanced of the business enterprise.
A commercial company is able to create new technologies more rapidly with the use of cloud computing. Furthermore, the enterprise will be able to automate its activities using cloud computing. Cloud computing is also very important as it is more affordable and thus promotes the company's growth in the market. Cloud computing is also enhancing the global presence of the Ashville mobile app. The drawbacks of using cloud computing include the following; due to using the cloud infrastructure, the company's performance may be unreliable. People believe that cloud computing is not reliable and that cloud computing may not be secure at last and can't always be right for all workloads.
Explanation:
The correct question;
An object of irregular shape has a characteristic length of L = 1 m and is maintained at a uniform surface temperature of Ts = 400 K. When placed in atmospheric air at a temperature of Tinfinity = 300 K and moving with a velocity of V = 100 m/s, the average heat flux from the surface to the air is 20,000 W/m² If a second object of the same shape, but with a characteristic length of L = 5 m, is maintained at a surface temperature of Ts = 400 K and is placed in atmospheric air at Too = 300 K, what will the value of the average convection coefficient be if the air velocity is V = 20 m/s?
Answer:
h'_2 = 40 W/K.m²
Explanation:
We are given;
L1 = 1m
L2 = 5m
T_s = 400 K
T_(∞) = 300 K
V = 100 m/s
q = 20,000 W/m²
Both objects have the same shape and density and thus their reynolds number will be the same.
So,
Re_L1 = Re_L2
Thus, V1•L1/v1 = V2•L2/v2
Hence,
(h'_1•L1)/k1 = (h'_2•L2)/k2
Where h'_1 and h'_2 are convection coefficients
Since k1 = k2, thus, we now have;
h'_2 = (h'_1(L1/L2)) = [q/(T_s - T_(∞))]• (L1/L2)
Thus,
h'_2 = [20,000/(400 - 300)]•(1/5)
h'_2 = 40 W/K.m²