answersLogoWhite

0

An element is a part of a compound.

User Avatar

Wiki User

9y ago

What else can I help you with?

Related Questions

What is the smallest particle of a covalently bonded compound and still be the same substance?

i think the electron that it had shared,may b. it could an atom also.


What is the symbol of a b particle?

If you think to a beta particle the symbol is β.


Is the particle with a plus 2 charge a an alpha particle b a gamma ray or c a beta ray?

a. an alpha particle


What has the author R B Myers written?

R. B. Myers has written: 'The gamma particle' -- subject(s): Blastocladiella emersonii, Gamma particle (Cytology)


What subatomic particle begins with the letter b?

boson


What is the relationship between compound A and compound B?

Compound A and compound B have a chemical relationship where they may share similar properties, structures, or functions due to their chemical composition and interactions.


The chemical formula of an ionic compound shows?

A. Co2 B. N2O C. NaCI D. C6H12O6


Smallest ship ever?

b ship


What has the author J B Galeski written?

J B Galeski has written: 'Particle size definitions for particulate data analysis' -- subject(s): Particle size determination


What is the smallest angle of a right angle triangle when its hypotenuse is 7.4cm with one of its sides 4.6cm in length?

The smallest angle of the triangle is opposite to its smallest side which is 4.6cm and so by using the sine rule: A/a = B/b = C/b the smallest angle works out as 38.43 degrees rounded to two decimal places.


Two compound words starting with b and g?

well 1 compound for b is bagage hope it helped =]


C program to find the largest and smallest of three numbers using IF IF ELSE?

#include<stdio.h> #include<conio.h> void main() { int a,b,c; clrscr(); printf("Enter any three numbers"); scanf("%d%d%d",&a,&b,&c); if(a>b&&a>c) printf("A is greatest"); else if(b>a&&a>c) printf("B is greatest"); else if(c>a&&c>b) printf("C is greatest"); if(a<b&&a<c) printf("A is smallest"); else if(b<a&&b<c) printf("B is smallest"); else if(c<a&&c<b) printf("C is smallest"); getch(); }