Answer:

Explanation:
g = Acceleration due to gravity at sea level = 
R = Radius of Earth = 6371000 m
h = Altitude of observatory = 4205 m
Change in acceleration due to gravity due to change in altitude is given by

Weight at sea level

Weight at the given height

Change in weight 
Her weight reduces by
.
Answer: At 520 feet between the piers, the center arch of Eads Bridge was the longest rigid span ever built at the time of its construction (only a few suspension bridges had longer spans).
Explanation:
Answer: Because MM's CEO, Crosscut Sal, is a stickler for keeping machinery running, the company stocks quick-change replacement modules for the two most common ..
Explanation:
Answer: Coefficient= 0.35 per day
Explanation:
To find the bio degradation reaction rate coefficient, we have
k= 
Here, the C lagoon= 20 mg/L
Q in= Q out= 8640 m³/d
C in= 100 mg/L
C out= 20 mg/L
V= 10 ha* 1* 10
V= 10⁵ m³
So, k= 
k= 0.35 per day
Answer:
// Program is written in C++ Programming Language
// Comments are used for explanatory purpose
#include<iostream>
using namespace std;
int main ()
{
// Variable declaration
string name;
int numQuestions;
int numCorrect;
double percentage;
//Prompt to enter student's first and last name
cout<<"Enter student's first and last name";
cin>>name; // this line accepts input for variable name
cout<<"Number of question on test"; //Prompt to enter number of questions on test
cin>> numQuestions; //This line accepts Input for Variable numQuestions
cout<<"Number of answers student got correct: "; // Prompt to enter number of correct answers
cin>>numCorrect; //Enter number of correct answers
percentage = numCorrect * 100 / numQuestions; // calculate percentage
cout<<name<<" "<<percentage<<"%"; // print
return 0;
}
Explanation:
The code above calculates the percentage of a student's score in a certain test.
The code is extracted from the Question and completed after extraction.
It's written in C++ programming language