Some of the duties of a chemist could be:
- Analyze, synthesize, purify, modify and characterize chemical or biochemical compounds
- Develop and conduct programs of analysis to ensure quality control of raw materials, chemical intermediates or final products
- Conduct programs of sample and data collection and analysis to identify and quantify environmental toxicants
- Conduct research to develop new chemical formulations and processes and devise new technical applications of industrial chemicals and compounds
- Conduct research to discover, develop and refine, and evaluate new products
- Conduct fundamental and applied research into the synthesis and properties of chemical compounds and the mechanisms of chemical reactions
- Investigate chemical aspects of the mechanisms of drug action, the diagnosis and treatment of disease, organ function and the assessment of health
- Participate in interdisciplinary research and development projects working with chemical engineers, biologists, microbiologists, agronomists, geologists or other professionals
- Act as technical consultant in a particular field of expertise
- May participate in the commercialization of new products
- May supervise other chemists and chemical technicians and technologists.
|
|
Inappropriate
|
See Answer
To Email:
Subject:
Note to go along with the question: (Optional, no
more than 1,000 characters)
#include<stdio.h>
int main()
{
struct bit field{
int x:4;
char c:6;
};
return 0;
}
(or)
struct bit_field{
unisgned int x:3;
unsigned int y:6;
unsigned int z:8;
};
int main()
{
struct bit_field bit;
bit.x=3;
bit.y=15;
bit.z=12;
}
}
Create Date
:
Wednesday, November 07, 2007
Click here
to improve the Interview Question, Answer and other fields.
|
|
Inappropriate
|
See Answer
To Email:
Subject:
Note to go along with the question: (Optional, no
more than 1,000 characters)
#include<stdlib.h>
#include<stdio.h>
int main()
{
int n = 1234;
char p[20];
itoa(n,s,10);
printf("n=%d,s=%s",n,s);
return 0;
}
itoa(n,s,10);
Notice that the itoa() function takes three
arguments: the first argument is the number you want to convert to the
string, the second is the destination string to put the converted
number into, and the third is the base,
or radix, to be used when converting the number.
Create Date
:
Sunday, March 16, 2008
Click here
to improve the Interview Question, Answer and other fields.
|
|
Inappropriate
|
See Answer
To Email:
Subject:
Note to go along with the question: (Optional, no
more than 1,000 characters)
Deoxyribonucleic acid (DNA) is a nucleic acid that contains the genetic instructions used in the development and functioning of all known living organisms and some viruses. The main role of DNA molecules is the long-term storage of information.
Create Date
:
Saturday, April 26, 2008
Click here
to improve the Interview Question, Answer and other fields.
|
|
Inappropriate
|
See Answer
To Email:
Subject:
Note to go along with the question: (Optional, no
more than 1,000 characters)
I want to be able to give back to minority communities and have an excuse to shoot black people. I love a challange and know that Policing is a rewarding and challanging way to beat the shit out of people. Most people hate Police personel and belive I can be a great role model to the children in our community by beating up their parents in front of them so they finally take back their community from me and other uniformed gangs. I want to do my part to live in a police state.
Create Date
:
Tuesday, September 09, 2008
Click here
to improve the Interview Question, Answer and other fields.
|
|
Inappropriate
|
See Answer
To Email:
Subject:
Note to go along with the question: (Optional, no
more than 1,000 characters)
Test s for prime or not?
#include<stdio.h>
void main(void)
{
int no,rem,cnt;
Printf("enter No");
scanf("%d",&no);
cnt=2;
while(cnt<=no)
{
rem=no % cnt;
if (rem==0)
{
printf("No is not prime");
exit(0);
}
cnt++;
}
printf("No is Prime");
}
Create Date
:
Thursday, October 16, 2008
Click here
to improve the Interview Question, Answer and other fields.