is a technique for printing<span> text, </span>images<span> or patterns used widely throughout </span>East Asia<span> and originating in </span>China<span> in antiquity as a method of </span>printing on textiles<span> and later </span><span>paper hope this helped </span>
Answer:A.
Explanation:the first question is good but the seccond question i dont under stand it sorry bro.
Well let me explain this to you in a better way. The terms 'subprogram', 'function' and 'method' have all the same meaning in C/C++ but we usually called them functions, and we divide the functions into two types :
1)Function : it's the usual one, as we all know, it returns a value.
2) General format :
Type function_name(<arguments>){
// Your work
return <value/variable> //Note : the type must be the same as the function
// type.
}
Example :
int Maheen(int a, int b){
int c = a + b;
return c;
}
Procedure : it's a function but it doesn't return any value, it begins with 'void'.
General format :
void function_name(<arguments>){
// Your work
//Note : There is no return here.
}
Example :
void Maheen(int a, int b){
int c = a + b;
printf("The sum is : %d", c);
}
I think this can help you greatly
<span>
</span>
Miscigenação é o processo gerado a partir da mistura entre diferentes etnias. Os seres humanos miscigenados apresentam características físicas típicas de várias "raças".
O indivíduo que nasce a partir da miscigenação étnica (que ainda pode ser chamada de mestiçagem ou caldeamento) é considerado mestiço.
Do ponto de vista mundial, a miscigenação é considerada a união entre as três principais etnias existentes no planeta: brancos, negros e amarelos (sendo que os indígenas estariam classificados neste último grupo).