If you mean glue, then heres a list of what I can remember.
1.<span>Epoxy resins
2.</span><span>.Acrylic resin.
3. polyester resin</span>
Answer:
Computer hardware specifications are technical descriptions of the computer's components and capabilities. Processor speed, model and manufacturer. Processor speed is typically indicated in gigahertz (GHz). The higher the number, the faster the computer.
Answer:
Correct option C
Trimmed mean
Explanation:
A trimmed mean is a method of averaging that removes a small designated percentage of the largest and smallest values before calculating the mean.
Trimmed mean helps eliminate the influence of data points on the tails that may unfairly affect the traditional mean.
Trimmed means are used in reporting economic data in order to smooth the results and paint a more realistic picture.
Answer:
See explaination
Explanation:
#include <iostream>
using namespace std;
#define MAX 1005
bool already_present(int data[MAX], int input, int size)
{
int i;
for(i=0;i<size;i++)
if(data[i] == input)
return true;
return false;
}
int read_stdin(int data[MAX])
{
int input;
int size=0;
while(true)
{
cout<<"Enter a non-negative integer (negative to quit): ";
cin>>input;
if(input<0)
break;
if(!already_present(data,input,size))
data[size++] = input;
}
return size;
}
void print_stdout(int data[MAX],int size)
{
int i;
cout<<"You entered\n";
for(i=0;i<size;i++)
cout<<data[i]<<" ";
cout<<endl;
}
int main()
{
int data[MAX],size;
size = read_stdin(data);
print_stdout(data,size);
return 1;
}
Answer:
Office Deployment Tool (ODT)
Explanation:
The Office 365 ProPlus can be deployed using the Office Deployment Tool, which is tool based pf the command line tool with which Office applications can be downloaded and installed
From the office deployment tool, the language, the computer hardware architecture that is to be used, the version of office to be installed, and the method of deployment of software can be selected