Yes i is the time of the day you get to frost the moon and back and then you can come over and then go to hang out with me me and then go to hang out
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).
Answer:
ω=314.15 rad/s.
0.02 s.
Explanation:
Given that
Motor speed ,N= 3000 revolutions per minute
N= 3000 RPM
The speed of the motor in rad/s given as

Now by putting the values in the above equation

ω=314.15 rad/s
Therefore the speed in rad/s will be 314.15 rad/s.
The speed in rev/sec given as

ω= 50 rev/s
It take 1 sec to cover 50 revolutions
That is why to cover 1 revolution it take

Answer:
Mechanical average of a wheel = 3
Explanation:
Given:
Radius of wheel = 1.5 ft = 1.5 x 12 = 18 inches
Radius of axle = 6 inches
Find:
Mechanical average of a wheel
Computation:
Mechanical average of a wheel = Radius of wheel / Radius of axle
Mechanical average of a wheel = 18 / 6
Mechanical average of a wheel = 3