Answer:

Step-by-step explanation:
Total possibilities when we a roll a die at a time are 6
given we should have four for first time and then three
let us assume we rolled the dice we may get 1,2,3,4,5,6(any of these) the probability to get 4 is
PROBABILITY=
Favourable chances=1
Total chances=6
Probability=
the prabability to get 4 in first roll is
.
let us assume we rolled the dice for second time again we may get 1,2,3,4,5,6(any of these) the probability to get 3 is
Favourable chances=1
total chances=6
probability=
the probability to get 3 in second roll irrespective of first one is 
the probability to get 4 in first time and then 3 is
The probability to occur both events at a time is multiplication of individual probabilities
So,
probablility to get 4 in first roll=
probability to get 3 in second roll=
probability to occur both at a same time is =

=
Step-by-step explanation:
x2 - 7x + 12
Finding factors of 12
x2 - 4x - 3x + 12
x(x - 4) - 3(x - 4)
(x-4) (x-3) are the factors
Option C is the correct answer
The mass of substance left after 7 days is 13.09 g
The mass of substance left, N is given by
N = N₀exp(-λt) where λ = decay constant and N₀ = initial mass of substance present = 24 g and t = time
Also, λ = 0.693/t' where t' = half-life of iodine = 8 days
So, λ = 0.693/t'
λ = 0.693/8
λ = 0.086625/day
Since the mass of substance left is N = N₀exp(-λt) and we require the mass of substance after t = 7 days,
N = N₀exp(-λt)
N = 24 gexp(-0.086625/day × 7 days)
N = 24 gexp(-0.606375)
N = 24 g × 0.5453
N = 13.09 g
So, the mass of substance left after 7 days is 13.09 g
Learn more about radioactive decay here:
brainly.com/question/23705307
Answer:
22.5
Step-by-step explanation:
x+3x=90
4x=90
x=90/4
x=22.5
Answer:
II. int z;
Step-by-step explanation:
int z;
is the best option, because on the next line you will define the variable as
z = (x + y) / 2;
you can also use int z=0; but it is not necessary according to the code segment given.