Answer:
vapor fraction = 0.4 and 0.08
Explanation:
At reasonably high temperatures, a mixture will exist in the form of a sub cooled liquid. Between these extremes, the mixture exists in a two phrase region where it is a vapor liquid equilibrium. From a vapor-liquid phase diagram, a mixture of 40% A, 39% B, and 21% C separates to give the vapor compositions of 0.4 and 0.08.
A broken yellow line on the pavement tells that the adjacent lane is traveling in the opposite direction and passing is permitted.
A broken white line on the pavement show that the adjacent lane is traveling in the same direction and passing is permitted.
<h3>What does pavement markings show?</h3>
Pavement markings are known to be tools that are used to pass infor or messages to roadway users.
Note that they tell the part of the road that one need to use, give information about conditions ahead, and others
Note that A broken yellow line on the pavement tells that the adjacent lane is traveling in the opposite direction and passing is permitted.
Learn more about pavement markings from
brainly.com/question/10179521
#SPJ1
Answer:
battery life in year = 9 years and 48 days
Explanation:
given data
Battery Ampere-hours = 1.5
Pulse voltage = 2 V
Pulse width = 1.5 m sec
Pulse time period = 1 sec
Electrode heart resistance = 150 Ω
Current drain on the battery = 1.25 µA
to find out
battery life in years
solution
we get first here duty cycle that is express as
duty cycle =
...............1
duty cycle = 1.5 × 
and applied voltage will be
applied voltage = duty energy × voltage ...........2
applied voltage = 1.5 ×
× 2
applied voltage = 3 mV
so current will be
current =
................3
current = 
current = 20 µA
so net current will be
net current = 20 - 1.25
net current = 18.75 µA
so battery life will be
battery life = 
battery life = 80000 hours
battery life in year = 
battery life in year = 9.13 years
battery life in year = 9 years and 48 days
Answer:
// Program is written in C++
// Comments are used to explain some lines
// Only the required function is written. The main method is excluded.
#include<bits/stdc++.h>
#include<iostream>
using namespace std;
int divSum(int num)
{
// The next line declares the final result of summation of divisors. The variable declared is also
//initialised to 0
int result = 0;
// find all numbers which divide 'num'
for (int i=2; i<=(num/2); i++)
{
// if 'i' is divisor of 'num'
if (num%i==0)
{
if (i==(num/i))
result += i; //add divisor to result
else
result += (i + num/i); //add divisor to result
}
}
cout<<result+1;
}
Answer:
24.72 kwh
Explanation:
Electric energy=potential energy=mgz where m is mass, g is acceleration due to gravity and z is the elevation.
Substituting the given values while taking g as 9.81 and dividing by 3600 to convert to per hour we obtain
PE=(108*9.81*84)/3600=24.72 kWh