Answer: 1/5
Step-by-step explanation: l
Answer:
D
Step-by-step explanation:
you first have to find the domain by finding where the expression is defined
so the answer would be x>5
Answer:
38%
Step-by-step explanation:
Original price = $ 80
Price after reduction = $ 49.60
Reduction = 80 - 49.60 = $30.40
Percentage of decrease =
= 38%
Answer:
0.01
can I have brainliest please
Step-by-step explanation:
Answer:
The minimum number of assignment statements needed is 5
Step-by-step explanation:
To write the algorithm, we apply the strategy of interchanging the values of variables in the assignment statements.
Assume "tmp" is the new variable, let assign tmp to w
The algorithm is:
Procedure exchange (w,x,y,z: integers)
tmp := w
w := x
x := y
y := z
z := tmp
return (w,x,y,z)
end
From the algorithm, it is obvious that there will be a minimum of 5 assignment statements needed.