Answer:
I think it's C. but not a 100%
Answer:
B. Operational-level systems monitor the elementary activities and transactions of the organization.
Answer:
function start(){
var age = readInt("Age: ");
if(age == 15){
println("Yes, you are a teenager.");
}else{
println("No, you are not a teenager.");
}
}
Explanation: