Answer:
The diameter increases
Explanation:
The expansion in the metal is uniform in every dimension
Answer:
battery life in year = 9 years and 48 days
Explanation:
given data
Battery Ampere-hours = 1.5
Pulse voltage = 2 V
Pulse width = 1.5 m sec
Pulse time period = 1 sec
Electrode heart resistance = 150 Ω
Current drain on the battery = 1.25 µA
to find out
battery life in years
solution
we get first here duty cycle that is express as
duty cycle =
...............1
duty cycle = 1.5 × 
and applied voltage will be
applied voltage = duty energy × voltage ...........2
applied voltage = 1.5 ×
× 2
applied voltage = 3 mV
so current will be
current =
................3
current = 
current = 20 µA
so net current will be
net current = 20 - 1.25
net current = 18.75 µA
so battery life will be
battery life = 
battery life = 80000 hours
battery life in year = 
battery life in year = 9.13 years
battery life in year = 9 years and 48 days
Answer:
mechanical engineer is the best answer
i believe the correct answer is c but i’m sorry if i’m not correct
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).