Answer:
The current through each lamp is 0.273 Amperes
Power dissipated in each lamp is 0.082W
Explanation:
Battery v = 1.5 V
Each lamp has resistance, r = 1.1 Ohms
The 5 lamps in series will therefore have total resistance, R = 5 * 1.1 = 5.5 Ohms
The current through each lamp, I = v/R = 1.5 / 5.5 = 0.273 Amperes
Power dissipated in each lamp = I² * r = 0.273² * 1.1 = 0.082W
Answer:
For a gear train that would train that transform a counterclockwise input into a counterclockwise output such that the gear that is driven rotates three times when the driver rotates once, we have;
1) The number of gears in the gear train = 3 gears with an arrangement such that there is a gear in between the input and the output gear that rotates clockwise for the output gear to rotate counter clockwise
2) The speed ratio of the driven gear to the driver gear = 3
Therefore, we have;

Therefore, for a speed ratio of 3, the number of teeth of the driver gear, driving the output gear, must be 3 times, the number of teeth of the driven gear
Explanation:
Answer:
0.9104
Explanation:
Suitable technology can tell you the probability.
P(-1.5≤Z≤2) ≈ 0.9104
__
A phone app gives the probability as 0.9104426667829628.
Answer:
//Program was implemented using C++ Programming Language
// Comments are used for explanatory purpose
#include<iostream>
using namespace std;
unsigned int second_a(unsigned int n)
{
int r,sum=0,temp;
int first;
for(int i= 1; I<=n; i++)
{
first = n;
//Check if first digit is 3
// Remove last digit from number till only one digit is left
while(first >= 10)
{
first = first / 10;
}
if(first == 3) // if first digit is 3
{
//Check if n is palindrome
temp=n; // save the value of n in a temporary Variable
while(n>0)
{
r=n%10; //getting remainder
sum=(sum*10)+r;
n=n/10;
}
if(temp==sum)
cout<<n<<" is a palindrome";
else
cout<<n<<" is not a palindrome";
}
}
}
Explanation:
The above code segments is a functional program that checks if a number that starts with digit 3 is Palindromic or not.
The program was coded using C++ programming language.
The main method of the program is omitted.
Comments were used for explanatory purpose.