Women population
in a town, the percentage of men is 52 and the rest are women ( W ).the total population ( T ) of town is given as input.
write a program to print the total number of women in the town.
Input
the first line of input is an integer T .
output
the output should be an integer representing the total number of women in the town.
explanation
given total population 80000 . then the number of women should 80000*48/100=38400
so the output should be 38400 .
sample input 1
80000
sample output 1
38400
sample input 2
100000
sample output 1
48000
Determine the relative molecular mass \& relative formula mass of the following substances. [6] - Chlorine
Describe the physiological relationship between the hypothalamus and the pituitary gland. Include the separate roles, hormones, and anatomical connections
from karel.stanfordkarel import *
"""
Your job in the assignment is to add the necessary code to
instruct Karel to walk to the door of its house, pick up the
newspaper (represented by a beeper, of course), and then return
to its initial position in the upper left corner of the house.
"""
def main():
"""
You should write your code to make Karel do its task in
this function. Make sure to delete the 'pass' line before
starting to write your own code. You should also delete this
comment and replace it with a better, more descriptive one.
"""
pass
# There is no need to edit code beyond this point
if __name__ == "__main__":
run_karel_program()
from karel.stanfordkarel import *
"""
Your job in the assignment is to add the necessary code to
instruct Karel to put beeper at the four corner of the room
and return to its original position at bottom left.
"""
def main():
"""
You should write your code to make Karel do its task in
this function. Make sure to delete the 'pass' line before
starting to write your own code. You should also delete this
comment and replace it with a better, more descriptive one.
"""
pass
# There is no need to edit code beyond this point
if __name__ == "__main__":
run_karel_program()
An insulating sphere with a radius of 20 cm caries a uniform volume charge density of 1.5×10^-6 C/m^3. Find the magnitude of the electric field of a point inside the sphere that lies 8.0cm from the center
Using the do…while() loop, continuously scan for random integers, but add up only all the positive integers and store the total in one variable.
The loop shall only be terminated when the inputted integer is zero. Afterwards, print out the total of all inputted positive integers.
1. A sample of 60 grade 11 students’ ages was obtained to estimate the mean age of all grade 11 students. years and the population variance is 16.
a. What is the point estimate for μ?
b. Find the 95% confidence interval for μ.
c. Find the 99% confidence interval for μ.
d. What conclusions can you make based on each estimate.
An elevated level of sodium ions in the blood would be 0.155 mol L-1 and would be cause for concern. The average adult female has a total blood volume of 4.70 L. Calculate the total mass of sodium ions present when this concentration is found, assuming a blood volume of 4.70 L.
We Filipinos are quite known for the habit of leaving at least one of the many pieces of food on the plate as it can't be equally divided among all at most times. Just like when 3 people decide to eat a pizza of 10 slices, there will often be at least one slice left on the box. To accurately show just how many pieces of things are left when divided by a certain number, we code it using modulo.
Care to do it for me?
Input
A line containing two integers separated by a space.
10 3
Output
A single line containing an integer.
1