Two-point charges, q1, which has a charge of -76.11 uC and q2, which has a charge of 13.33 uC, are separated by a distance of 24.67 cm. Identify the field's magnitude at point A between the two charges if A is 10.39 cm away from the negative charge.
Calculate the gross calorific value of coal
having the following composition: C= 80%, H = 85-10-3%, N=1% and ash = 7% using Dulong's formula
What is the resistance of a 150m wire made of silver with cross sectional area of 0.60mm² ?
Write a program that takes input of the number of rows and then prints the diamond for the given number of rows using loops
Sample diagram
A
BCD
EFGH
IJKLMN
OPQRS
UWX
Y
A bullet of mass 0.4 kilograms is fired towards a stationary wood block. The wood block is kept on a rough horizontal surface. The mass of the block is 0.6 kilograms. After the collision the bullet gets embedded in the block and they move as a single object. The coefficient of friction between the block and the horizontal surface is 0.4. calculator the velocity of the block with the bullet just after the collision.
Find each of the following percentile points and draw the appropriate normal
curve. Complete your procedures.
1.The results of the entrance examination for freshmen are normally distributed with x=87 and s=12.5. What is the percentile rank of a score of 90?
In a space 5.82 x 1000000kg rocket experiences a constant force of 6.94 x 1000000000N in the direction of its movement. At time t = 0s,it flies past a planet at a velocity of 57.2m/s. How far away is the rocket from the planet when t = 25.4s?
Ram has a list containing 10 integers . you need to help him create a program with separate user defined function to perform the following operation based on this list
· Push the even number into stack
· Pop the content of the stack
· Display content of the stack
We take a random sample of 60 households to estimate the percentage of all
homes in the Spring Town Village that have a refrigerator. It turns out that 49 of
the 60 homes in our sample have a refrigerator. Use 95% confidence level to
calculate the length of confidence interval estimation of population proportion of
households with refrigerator.
class Distance with two private data members:
feet: An integer that holds the feet.
inches: An integer that holds the inches.
Write a constructor with default parameters that initializes each data member of the class.
If inches are greater than equal to 12 then they must be appropriately converted to
corresponding feet.
.
o void setFeet(int f) and int getFeet()const
o void setInches(int i) It should ensure proper conversion to feet.
o int getInches() const
Define an operator ‘+’ that overloads the standard ‘+’ math operator and allows one
Distance object to be added to another. Distance operator+ (const Distance &obj).
Define an operator - function that overloads the standard ‘-‘ math operator and allows
subtracting one Distance object from another. Distance operator-(const Distance &obj)
Define an operator= function that overloads the = operator and assign one Distance object to another. const Distance operator=(const Distance &obj)