Answer:
a.) -147V
b.) -120V
c.) 51V
Explanation:
a.) Equation for potential difference is the integral of the electrical field from a to b for the voltage V_ba = V(b)-V(a).
b.) The problem becomes easier to solve if you draw out the circuit. Since potential at Q is 0, then Q is at ground. So voltage across V_MQ is the same as potential at V_M.
c.) Same process as part b. Draw out the circuit and you'll see that the potential a point V_N is the same as the voltage across V_NP added with the 2V from the other box.
Honestly, these things take practice to get used to. It's really hard to explain this.
Answer:
(a) The stress on the steel wire is 19,000 Psi
(b) The strain on the steel wire is 0.00063
(c) The modulus of elasticity of the steel is 30,000,000 Psi
Explanation:
Given;
length of steel wire, L = 100 ft
cross-sectional area, A = 0.0144 in²
applied force, F = 270 lb
extension of the wire, e = 0.75 in
<u>Part (A)</u> The stress on the steel wire;
δ = F/A
= 270 / 0.0144
δ = 18750 lb/in² = 19,000 Psi
<u>Part (B)</u> The strain on the steel wire;
σ = e/ L
L = 100 ft = 1200 in
σ = 0.75 / 1200
σ = 0.00063
<u>Part (C)</u> The modulus of elasticity of the steel
E = δ/σ
= 19,000 / 0.00063
E = 30,000,000 Psi
Answer:
Program that removes all spaces from the given input
Explanation:
// An efficient Java program to remove all spaces
// from a string
class GFG
{
// Function to remove all spaces
// from a given string
static int removeSpaces(char []str)
{
// To keep track of non-space character count
int count = 0;
// Traverse the given string.
// If current character
// is not space, then place
// it at index 'count++'
for (int i = 0; i<str.length; i++)
if (str[i] != ' ')
str[count++] = str[i]; // here count is
// incremented
return count;
}
// Driver code
public static void main(String[] args)
{
char str[] = "g eeks for ge eeks ".toCharArray();
int i = removeSpaces(str);
System.out.println(String.valueOf(str).subSequence(0, i));
}
}
Answer:
yay yay
Explanation:
im so excited i cant wait
Answer:
D) AND gate.
Explanation:
Given that:
A certain printer requires that all of the following conditions be satisfied before it will send a HIGH to la microprocessor acknowledging that it is ready to print
These conditions are:
1. The printer's electronic circuits must be energized.
2. Paper must be loaded and ready to advance.
3. The printer must be "on line" with the microprocessor.
Now; if these conditions are met the logic gate produces a HIGH output indicating readiness to print.
The objective here is to determine the basic logic gate used in this circuit.
Now;
For NOR gate;
NOR gate gives HIGH only when all the inputs are low. but the question states it that "a HIGH is generated and applied to a 3-input logic gate". This already falsify NOR gate to be the right answer.
For NOT gate.
NOT gate operates with only one input and one output device but here; we are dealing with 3-input logic gate.
Similarly, OR gate gives output as a high if any one of the input signals is high but we need "a HIGH that is generated and applied to a 3-input logic gate".
Finally, AND gate output is HIGH only when all the input signal is HIGH and vice versa, i.e AND gate output is LOW only when all the input signal is LOW. So AND gate satisfies the given criteria that; all the three conditions must be true for the final signal to be HIGH.