Answer:A
Explanation: number that shows the total atomic mass of the substance
Answer:
2697.75N/m
Explanation:
Step one
This problem bothers on energy stored in a spring.
Step two
Given data
Compression x= 2cm
To meter = 2/100= 0.02m
Mass m= 0.01kg
Height h= 5.5m
K=?
Let us assume g= 9.81m/s²
Step three
According to the principle of conservation of energy
We know that the the energy stored in a spring is
E= 1/2kx²
1/2kx²= mgh
Making k subject of formula we have
kx²= 2mgh
k= 2mgh/x²
k= (2*0.01*9.81*5.5)/0.02²
k= 1.0791/0.0004
k= 2697.75N/m
Hence the spring constant k is 2697.75N/m
Answer:
Current, I = 3.57A
Explanation:
A current of I amperes means that I Coulombs of charge flows through the conductor (heating coil) per second.
Therefore, in time t, the total charge (Q) passing through any point in which the current (C) flows will be given by the equation;
Q = It
Where; Q is the charge in coulombs; I is the current in amperes; t is the time in seconds.
From the question, we were given the following parameters;
Q = 25C, t= 7secs and I =?
From the equation, Q = It
We make current, I the subject of formula;
Thus, I = Q/t
Substituting into the equation;
I = 25/7
I = 3.57Amp.
Answer:
True, check attachment for code
Explanation:
To convert java strings of text to upper or lower case, we can use and inbuilt methods To Uppercase and To lower case.
The first two lines of code will set up a String variable to hold the text "text to change", and then we print it out.
The third line sets of a second String variable called result.
The fourth line is where the conversion is done.
We can compare the string
We can compare one string to another. (When comparing, Java will use the hexadecimal values rather than the letters themselves.) For example, if we wanted to compare the word "Fat" with the word "App" to see which should come first, you can use an inbuilt string method called compareTo.
Check attachment for the code