Answer:
The code to this question can be given as:
Code:
int callsReceived,operatorsOnCall; //define variable as integer
Scanner ob= new Scanner(System.in);
//create object of scanner class for user input
System.out.println("Insert the value of callsReceived"); //print message.
callsReceived = ob.nextInt(); //input value.
System.out.println("Insert the value of operatorsOnCall"); //print message.
operatorsOnCall = ob.nextInt(); //input value.
if (operatorsOnCall == 0) //check number
{
System.out.println("INVALID"); //print message.
}
else
{
System.out.println(callsReceived/operatorsOnCall); //print value.
}
Explanation:
In the above code firstly we define 2 integer variable that name is already given in the question. Then we create the scanner class object for taking user input. Then we print the message for input first and second value from the user. then we use conditional statement. If the second variable that is operatorsOnCall is equal to 0. So It print INVALID. else it divide the value and print it.
Answer:
The answer is A. Shaking the phone
16/17 can't be simplified but if you want it as a decimal it's 0.9412 or 0.94
<u>Evidence </u>consists of documents, verbal statements, and material objects that are admissible in a court of law.
What is an evidence?
- In law, rules of evidence govern the types of evidence that are admissible in a legal proceeding.
- Types of legal evidence include testimony, documentary evidence, and physical evidence.
- The parts of a legal case that are not in controversy are known, in general, as the "facts of the case."
- Beyond any facts that are undisputed, a judge or jury is usually tasked with being a trier of fact for the other issues of a case.
- Evidence and rules are used to decide questions of fact that are disputed, some of which may be determined by the legal burden of proof relevant to the case.
- Evidence in certain cases (e.g. capital crimes) must be more compelling than in other situations (e.g. minor civil disputes), which drastically affects the quality and quantity of evidence necessary to decide a case.
- Evidence is critical to convincing management, juries, judges, or other authorities that some kind of violation has occurred.
To know more about evidence, refer:
brainly.com/question/20840904
#SPJ4