Answer:
in javascript:
function compute(a, b, c){
let array = [a, b, c];
array.forEach((e,k) => {
if(e >= a && e >= b && e >= c){
console.log("maximum: " + e);
}
if( e <= a && e <= b && e <= c){
console.log("minimum: " + e);
}
}
}
Explanation:
Its B i think hope this helps !
Answer:
it would have to be flow control which would be C.
Explanation:
Answer:
Yes
Explanation:
Just like a human fingerprint, no 2 computers are the same.