Answer:Topographic map. Contour line. Learning Objectives. After completing this chapter, you will be able to: □ Define civil engineering and civil drafting.
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:
True
Explanation:
It could either be true or false because you dont really have to be great at something just to do it, you could try new things too.
Answer:
The voltages of all nodes are, IE = 4.65 mA, IB =46.039μA, IC=4.6039 mA, VB = 10v, VE =10.7, Vc =4.6039 v
Explanation:
Solution
Given that:
V+ = 20v
Re = 2kΩ
Rc = 1kΩ
Now we will amke use of the method KVL in the loop.
= - Ve + IE . Re + VEB + VB = 0
Thus
IE = V+ -VEB -VB/Re
Which gives us the following:
IE = 20-0.7 - 10/2k
= 9.3/2k
so, IE = 4.65 mA
IB = IE/β +1 = 4.65 m /101
Thus,
IB = 0.046039 mA
IB = 46.039μA
IC =βIB
Now,
IC = 100 * 0.046039
IC is 4.6039 mA
Now,
VB = 10v
VE = VB + VEB
= 10 +0.7 = 10.7 v
So,
Vc =Ic . Rc = 4.6039 * 1k
=4.6039 v
Finally, this is the table summary from calculations carried out.
Summary Table
Parameters IE IC IB VE VB Vc
Unit mA mA μA V V V
Value 4.65 4.6039 46.039 10.7 10 4.6039
Answer:
43248 newtons.
Explanation:
Force = mass x accelerations and units of force are newtons which are given in the question.
here mass = 125 of air and 2.2 of fuel, total = 125+2.2=127.5kg/s and the velocity of the exhaust is 340m/s.
force = 340m/s * 127.5kg/s = 43248 newtons technically this is wrong (observe units) but i will expalin how i have taken acceleration as a velocity here and mass/unit time as simply mass.
see force is mass times acceleration or deceleration, here our velocity is not changing therefore it is constant 340m/s but if it were to change and become 0 in one second then there would be -340m/s^2 (note the units ) of deceleration and there would be force associated with it and that force is what i have calculated here. similarly there would be mass in flow rate of mass per second, which is also in that one second of time.
let's calculate error.
error = (actual-calculated)/actual. = (43248-60000)/43248= -38.734% less is ofcourse greater than 2%.
So the load cell is not reading correct to within 2% and it should read 43248newtons.