Well i think u should give up on school and just smoke some green fam.
Answer:
chain of custody
Explanation:
According to my research on the criminal investigation process, I can say that based on the information provided within the question the term being described is called the chain of custody. This is the process of documenting every person that handles a piece of evidence from the moment it was discovered to the moment that it gets presented in court.
I hope this answered your question. If you have any more questions feel free to ask away at Brainly.
Answer:
Following are the code in the C language .
int max(int x) // function definition
{
static int largest=0; // variable declaration
if (x>largest) // checking the condition
largest=x; // assign the value of input in the largest variable
return largest; // return the largest number
}
Explanation:
Following are the description of code .
- Decalred a function max of int type which hold a parameter x of int datatype.
- In this function compared the number x with the largest .If this condition is true then largest number hold the value of x variable
- Finally return the largest number .
Answer:
Information processing model
<em>Hope it helps!</em>