Graduated cylinder & beaker; both are used for science activities while a measuring cup is mostly used for baking.
Answer:
Explanation:
relating to, measuring, or measured by the quantity of something rather than its quality.Often contrasted with qualitative.
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
Answer:
Probability [New car is also American] = 0.75
Explanation:
Given:
P(Older) = 0.80
P(New) = 0.70
P(Older and New) = 0.60
Find:
Probability [New car is also American]
Computation:
P(Older and New) = P(Older)[P(New given Old)]
P(New given Old) = 0.60 / 0.80
P(New given Old) = 0.75
Probability [New car is also American] = 0.75
Answer: Fossil remains of the same land-dwelling animal.
Explanation: Fossil remains which were found to belong to same land dwelling animals, in South America and Africa was used as evidence to help support the theory of Tectonics plates, what this theory simply means is that the whole continents of earth were once fused together until a tectonic plate caused it’s division. Since same remains were found in Africa and South America this shows that both continents were once fused together.