Name the constituents used in match stick
Answers
Answered by
1
We use match box daily, so what is the chemical which is used in match box and stick so that when they are rubbed they produce fire.
What is the chemical reaction happening there?
So simple yet many do not know.
What is the chemical reaction happening there?
So simple yet many do not know.
Attachments:
Answered by
28
//to display the largest number
class greatest
{
void method(int a,int b,int c)
{
if(a>b && a>c)
System.out.print("GREATEST A"+a);
else if(b>c)
System.out.print("GREATEST B"+b);
else
System.out.print("GREATEST C"+c);
}
}
Similar questions