Answer:
a) 4.7 kΩ, +/- 5%
b) 2.0 MΩ, +/- 20%
Explanation:
a) If the resistor has the following combination of color bands:
1) Yellow = 1st digit = 4
2) Violet = 2nd digit = 7
3) Red = multiplier = 10e2
4) Gold = tolerance = +/- 5%
this means that the resistor has 4700 Ω (or 4.7 kΩ), with 5% tolerance.
b) Repeating the process for the following combination of color bands:
1) Red = 1st digit = 2
2) Black = 2nd digit = 0
3) Green = multiplier = 10e5
4) Nothing = tolerance = +/- 20%
This combination represents to a resistor of 2*10⁶ Ω (or 2.0 MΩ), with +/- 20% tolerance.
Answer:
Attached is the complete question but the weight of the mailbox and cross bar differs from the given values which are : weight of mail box = 3.2 Ib, weight of the uniform cross member = 10.3 Ib
Answer : moment of inertia = 186.7 Ib - in
Explanation:
Given data
weight of the mailbox = 3.2 Ib
weight of the uniform cross member = 10.3 Ib
The origin is of mailbox and cross member is 0
The perpendicular distance from Y axis of centroid of the mailbox
= 4 + (25/2) = 16.5"
The centroid of the bar =( ( 1 + 25 + 4 + 4 ) / 2 ) - 4 = 13"
therefore The moment of Inertia( Mo) = (3.2 * 16.5) + ( 10.3 * 13)
= 52.8 + 133.9 = 186.7 Ib-in
Answer:
see explaination
Explanation:
import java.util.InputMismatchException;
import java.util.Scanner;
public class calculate {
static float a=0,b=0;
double cal()
{
if(a==0||b==0)
{
System.out.println("no values found in a or b");
start();
}
double x=(a*a)+(b*b);
double h=Math.sqrt(x);
a=0;
b=0;
return h;
}
float enter()
{
float val=0;
try
{
System.out.println("Enter side");
Scanner sc1 = new Scanner(System.in);
val = sc1.nextFloat();
return val;
}
catch(InputMismatchException e)
{
System.out.println("Enter correct value");
}
return val;
}
void start()
{
calculate c=new calculate();
while(true)
{
System.out.println("Enter Command");
Scanner sc = new Scanner(System.in);
String input = sc.nextLine();
switch(input)
{
case "A":
a=c.enter();
break;
case "B":
b=c.enter();
break;
case "C":
double res=c.cal();
System.out.println("Hypotenuse is : "+res);
break;
case "Q":
System.exit(0);
default:System.out.println("wrong command");
}
}
}
public static void main(String[] args) {
calculate c=new calculate();
c.start();
}
}
The answer is 2 because I just took the test!