Answer:
D
Explanation:A circuit is equivalent to another when the output voltage is equal to each other. This is so because a circuit may have a higher voltage source and lesser load or a lower voltage source and higher load,so we can only say they are equal If the output is similar
Answer:
Considering the plain view doctrine, which is an exception to the warrant requirement of the Fourth Amendment, is applied by law enforcement officers and courts who can seize evidence of a crime without a warrant, if the officer observes the evidence in plain view.
Explanation:
For any digital information related to a murder case that has been seized under the plain view doctrine to be used to convict you of a crime, has to comply with three conditions:
1. The digital evidence must be in out in the open, and easily observable by the officer, this is what "plain view" refers to.
2. The officer must have a legal right to be where he got the information related to the case.
3. The 'incriminating' character of the information must be a clear hint of the murder to fall under the plain view doctrine and the officer´s experience will help him determining whether the information is evidence or not, upon probable cause related to a crime.
Answer:
R = V / I
, R = V² / P, R = P / I²
Explanation:
For this exercise let's use ohm's law
V = I R
R = V / I
Electric power is defined by
P = V I
ohm's law
I = V / R
we substitute
P = V (V / R)
P = V² / R
R = V² / P
the third way of calculation
P = (i R) I
P = R I²
R = P / I²
Answer:
see explaination
Explanation:
import java.util.InputMismatchException;
import java.util.Scanner;
public class calculate {
static float a=0,b=0;
double cal()
{
if(a==0||b==0)
{
System.out.println("no values found in a or b");
start();
}
double x=(a*a)+(b*b);
double h=Math.sqrt(x);
a=0;
b=0;
return h;
}
float enter()
{
float val=0;
try
{
System.out.println("Enter side");
Scanner sc1 = new Scanner(System.in);
val = sc1.nextFloat();
return val;
}
catch(InputMismatchException e)
{
System.out.println("Enter correct value");
}
return val;
}
void start()
{
calculate c=new calculate();
while(true)
{
System.out.println("Enter Command");
Scanner sc = new Scanner(System.in);
String input = sc.nextLine();
switch(input)
{
case "A":
a=c.enter();
break;
case "B":
b=c.enter();
break;
case "C":
double res=c.cal();
System.out.println("Hypotenuse is : "+res);
break;
case "Q":
System.exit(0);
default:System.out.println("wrong command");
}
}
}
public static void main(String[] args) {
calculate c=new calculate();
c.start();
}
}