1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
yKpoI14uk [10]
1 year ago
12

What is the resistance of a resistor if the current flowing through it is 3mA and the voltage across it is 5.3V?

Engineering
1 answer:
Flura [38]1 year ago
6 0

Answer: 1766.667 Ω = 1.767kΩ

Explanation:

V=iR

where V is voltage in Volts (V), i is current in Amps (A), and R is resistance in Ohms(Ω).

3mA = 0.003 A

Rearranging the equation, we get

R=V/i

Now we are solving for resistance. Plug in 0.003 A and 5.3 V.

R = 5.3 / 0.003

= 1766.6667 Ω

= 1.7666667 kΩ

The 6s are repeating so round off to whichever value you need for exactness.

You might be interested in
What are the two (2) different design elements of scratch?
Roman55 [17]

Answer: There is four elements of Scratch. The stage, the sprites, the script and the programming palette.

Explanation:

6 0
2 years ago
A rigid, sealed tank initially contains 2000 kg of water at 30 °C and atmospheric pressure. Determine: a) the volume of the tank
Bad White [126]

Given:

mass of water, m = 2000 kg

temperature, T = 30^{\circ}C = 303 K

extacted mass of water = 100 kg

Atmospheric pressure, P = 101.325 kPa

Solution:

a) Using Ideal gas equation:

PV = m\bar{R}T                                        (1)

where,

V = volume

m = mass of water

P = atmospheric pressure

\bar{R} = \frac{R}{M}

R= Rydberg's constant = 8.314 KJ/K

M = molar mass of water = 18 g/ mol

Now, using eqn (1):

V = \frac{m\bar{R}T}{P}

V = \frac{2000\times \frac{8.314}{18}\times 303}{101.325}

V = 2762.44 m^{3}

Therefore, the volume of the tank is V = 2762.44 m^{3}

b) After extracting 100 kg of water, amount of water left, m' = m - 100

m' = 2000 - 100 = 1900 kg

The remaining water reaches thermal equilibrium with surrounding temperature at T' = 30^{\circ}C = 303 K

At equilibrium, volume remain same

So,

P'V = m'\bar{R}T'

P' = \frac{1900\times \frac{8.314}{18}\times 303}{2762.44}      

Therefore, the final pressure is P' = 96.258 kPa

4 0
3 years ago
A closed, rigid tank is filled with a gas modeled as an ideal gas, initially at 27°C and gauge pressure of 300 kPa. The gas is h
Sergio [31]

Answer:

the final temperature is 77.1 °C

Explanation:

Given the data in the question;

Initial temperature; T₁ = 27°C = ( 27 + 273)K = 300 K

Initial absolute pressure P₁ = 300 kPa = ( 300 + 101.325 )kPa = 401.325 kPa

Final absolute pressure P₂ = 367 kPa = ( 367 + 101.325 )kPa = 468.325 kPa

Now, to calculate the final temperature, we use the ideal gas equation;

P₁V/T₁ = P₂V/T₂

but it is mentioned that the rigid tank is closed,

so the volume is the same both before and after.

Change in volume = 0

hence;

P₁/T₁ = P₂/T₂

we substitute

401.325 kPa / 300 K = 468.325 kPa / T₂

T₂ × 401.325 kPa  = 300 K × 468.325 kPa

T₂ = [ 300 K × 468.325 kPa ] / 401.325 kPa

T₂ = 140497.5 K / 401.325

T₂ =  350.08 K

T₂ = ( 350.08 - 273 ) °C

T₂ = 77.1 °C

Therefore, the final temperature is 77.1 °C

3 0
3 years ago
You are using a Geiger counter to measure the activity of a radioactive substance over the course of several minutes. If the rea
Reika [66]

Answer: 33.35 minutes

Explanation:

A(t) = A(o) *(.5)^[t/(t1/2)]....equ1

Where

A(t) = geiger count after time t = 100

A(o) = initial geiger count = 400

(t1/2) = the half life of decay

t = time between geiger count = 66.7 minutes

Sub into equ 1

100=400(.5)^[66.7/(t1/2)

Equ becomes

.25= (.5)^[66.7/(t1/2)]

Take log of both sides

Log 0.25 = [66.7/(t1/2)] * log 0.5

66.7/(t1/2) = 2

(t1/2) = (66.7/2 ) = 33.35 minutes

4 0
3 years ago
13. Write a function which is passed two strings. The function creates a new string from the two original strings by copying one
attashe74 [19]

Answer:

I am writing the code in C++. Let me know if you want the program in some other programming language.

#include <iostream>  // includes header file for input output functions

using namespace std;     //to identify objects like cin cout

string CopyStrings(string string1, string string2)  

{   string newString = "";    

   for (int loop = 0; loop < string1.length() ||  

                   loop < string2.length(); loop++)      {      

       if (loop < string1.length())  

           newString += string1[loop];          

       if (loop < string2.length())  

           newString += string2[loop];      }  

   return newString;   }  

int main()  

{   string stringA = "ace";  

   string stringB = "bdf";  

   cout << CopyStrings(stringA, stringB);   }

Output:

abcdef

Explanation:

The function CopyStrings() function takes two strings i.e. string1 and string2 as parameters to copy characters from both the string one character from each.

The newString variable stores the new string after copying characters from both strings string1 and string2.

Then the for loop starts which has a variable loop which is an index variable that traverses through both the strings stored in string1 and string2. The loop continues to execute until it moves through entire length of string1 and string2 which means it copies all the characters from both string1 and string2. length() is used here which returns length of the string1 and string2.

If statement in the for loop checks the character that loop (index) variable is pointing to is less than the string1 length which means it checks each character stored in string1. For example if string1 contains "ace" and loop variable is moving through the string and is currently at "a" then this condition is true. If the condition evaluates to true then the body of if statement is executed. The next statement stores that character a into the newString variable.

Next If statement checks character that loop variable is pointing to is less than the string2 length which means it checks each character stored in string2. For example if string2 contains "bdf" and loop variable is moving through the string and is currently at "b" then this condition is true. If the condition evaluates to true then the body of if statement is executed. The next statement stores that character b into the newString variable.

Then the second iteration starts which again first stores the next character i.e. c from string1 into newString and then stores next character i.e d from string2 into newString.

Then the third iteration starts which again first stores the next character i.e. e from string1 into newString and then stores next character i.e f from string2 into newString.

Then the loop breaks as the loop variable reaches end of both the string1 and string2.

return newString will return the copied string into the output screen which is abcdef.

The screenshot of code along with output is attached.

3 0
3 years ago
Other questions:
  • Argon is compressed in a polytropic process with n=1.2 from 120 kPa and 10 °C to 800 kPa in a piston cylinder device. Determine:
    11·1 answer
  • Write a modular program that finds the equation, area, and circumference of a circle, given the coordinates of the center of the
    11·1 answer
  • 1. A fixed-geometry supersonic inlet starts at a Mach number of 3. After starting, the cruise Mach number is 2, and the operatin
    13·1 answer
  • You will be observing laminar-turbulent transition for room temperature (about 20°C) water flowing in a 0.602"" ID pipe (Schedul
    8·1 answer
  • What considerations are included in the Preliminary Floodproofing/Retrofitting Preference Matrix?
    7·1 answer
  • Airplanes typically have a Pitot-static probe located on the underside that measures relative wind speed as the airplane flies.
    6·1 answer
  • Calculate the percentage of recyclables in high socioeconomic localities.
    13·1 answer
  • (CO 3) A nonrecursive filter may best be described as _____. Group of answer choices a filter whose current output depends on pa
    13·1 answer
  • If the 2007 recession affected the green building materials market less seriously than other parts of the construction market, t
    12·2 answers
  • The project's criteria.
    11·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!