This problem is providing information about the mass of a tennis ball, 56.6 g (0.0566 kg) and asks for the velocity it will have to equal the wavelength of green light, which is 5400 A or 540 nm (5.4x10⁻⁷ m). Thus, after doing the math, the result is 2.17x10⁻²⁶ m/s.
<h3>
Broglie's wavelength:</h3>
In this case, we recall the formula of the Broglie's wavelength as shown below:

Whereas lambda is the wavelength, h is the Planck's constant, m the mass and v the speed; thus, we solve for the speed according to the question:

<h3>Calculations:</h3>
Then, we just plug in the numbers we were given to get the answer:

Learn more about Broglie's wavelength: brainly.com/question/5440536
Answer :
2 red : 2 white
Explanation:
;)long story short
hetro with hetro gives 3:1
hetro with recessive gives 1:1
Hetro :- ( Rr) one capital letter and one small
Recessive :- (rr) two small leters
Global wind patterns are mainly determined by unequal heating of the earth's surface, changes in air pressure, and earth's rotation. Change in air pressure: Air mainly circulates due to change in air pressure. It moves from a region of high air pressure to the region of lower air pressure.
168.96 g of carbon dioxide (CO₂)
Explanation:
The chemical reaction representing the combustion of acetylene:
2 C₂H₂ (g) + 5 O₂ (g)→ 4 CO₂ (g) + 2 H₂O (g)
number of moles = mass / molecular weight
number of moles of acetylene (C₂H₂) = 50 / 26 = 1.92 moles
Taking in account the stoichiometry of the chemical reaction, we devise the following reasoning:
if 2 moles of acetylene (C₂H₂) produces 4 moles of carbon dioxide (CO₂)
then 1.92 moles of acetylene (C₂H₂) produces X moles of carbon dioxide (CO₂)
X = (1.92 × 4) / 2 = 3.84 moles of carbon dioxide (CO₂)
mass = number of moles × molecular weight
mass of carbon dioxide (CO₂) = 3.84 × 44 = 168.96 g
Learn more about:
combustion of hydrocarbons
brainly.com/question/4919676
brainly.com/question/1406903
#learnwithBrainly
Answer:
class sum (
public static void sumofvalue (int m, int n, int p)
{
System.out.println(m);
System.out.println(n);
System.out.println(p);
int SumValue=m+n+p;
System.out.println("Average="+Sumvalue/3);
}
)
Public class XYZ
(
public static void main(String [] args)
{
sum ob=new sum();
int X=3;
int X=4;
int X=5;
ob.sumofvalue(X,Y,Z);
int X=7;
int X=8;
int X=10;
ob.sumofvalue(X,Y,Z);
}
)
Explanation:
The above program is made in Java, in which first we have printed value in a separate line. After that, the average value of those three values has been printed according to the question.
The processing of the program is given below in detail
* The first one class named 'sum' has been created which contains the function to print individual value and the average of those three values.
* In seconds main class named 'XYZ', the object of that the above class had been created which call the method of the above class to perform functions.
* In the main class values are assigned to variables X, Y, Z.