Answer:
All Brake lights are dimmer than normal because high resistance in the brake switch could be the cause according to Technician B.
Explanation:
According to Technician A
When the bulb is faulty then no current will flow through bulb and it will be open circuit.So no light will produce in bulb .
According to Technician B
When a high resistance inserted in series circuit the voltage across each resistance is reduced and this cause the light glow dimly.
Formula of resistance in series circuit
Rt=r1+r2+r3......
Answer:
the pressure at a closed valve attached to the tank 10 ft above its bottom is 37.88 psi
Explanation:
Given that;
depth 1 = 71 ft
depth 2 = 10 ft
pressure p = 17 psi = 2448 lb/ft²
depth h = 71 ft - 10 ft = 61 ft
we know that;
p = P_air + yh
where y is the specific weight of ethyl alcohol ( 49.3 lb/ft³ )
so we substitute;
p = 2448 + ( 49.3 × 61 )
= 2448 + 3007.3
= 5455.3 lb/ft³
= 37.88 psi
Therefore, the pressure at a closed valve attached to the tank 10 ft above its bottom is 37.88 psi
Answer:
I'm pretty sure it's false
Explanation:
Brainstorm is part of a problem-solving method. you can't solve a problem with nothing but brainstorming
Answer:
a)COP=5.01
b)
KW
c)COP=6.01
d)
Explanation:
Given
= -12°C,
=40°C
For refrigeration
We know that Carnot cycle is an ideal cycle that have all reversible process.
So COP of refrigeration is given as follows
,T in Kelvin.

a)COP=5.01
Given that refrigeration effect= 15 KW
We know that 
RE is the refrigeration effect
So
5.01=
b)
KW
For heat pump
So COP of heat pump is given as follows
,T in Kelvin.

c)COP=6.01
In heat pump
Heat rejection at high temperature=heat absorb at low temperature+work in put

Given that
KW
We know that 


d)
Answer:
The following program is in C++.
#include <bits/stdc++.h>
using namespace std;
void lastChars(string s)
{
int l=s.length();
if(l!=0)
{
cout<<"The last character of the string is: "<<s[l-1];
}
}
int main() {
string s;//declaring a string..
getline(cin,s);//taking input of the string..
lastChars(s);//calling the function..
return 0;
}
Input:-
Alex is going home
Output:-
The last character of the string is: e
Explanation:
In the function lastChars() there is one argument that is a string.I have declared a integer variable l that stores the length of the string.If the length of the string is not 0.Then printing the last character of the string.In the main function I have called the function lastChars() with the string s that is prompted from the user.