answersLogoWhite

0


Best Answer

a hypothesis

User Avatar

Wiki User

13y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: To evaluate the observations you make you must use?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

In order to make observation in observer must always use?

In order to make observations, an observer must always use. 1) experiments. 2) the senses. 3) proportions. 4) mathematical.


How are Aristotle's teaching related to the scientific method used by scientists today?

He urged people to use their sences to make observations, just as scientist today make observations


What can you use to make observations?

use the propertys to do an observation


What tools do scientists use to make observations?

Microscopic


What do you use to make observations?

You use weights and measures. You listen with your ears and look with your eyes. You may also use cameras, microscopes, and other machines to make detailed observations.


How are Aristotle's teachings related to the scientists method used by today?

He urged people to use their sences to make observations, just as scientist today make observations


What might you use to help you make observations?

A notebook to write them down in.


What is one tool that people use to make observations from a distance?

The telescope.


How do scientist's make observations?

First they make a hypothisis then they use there 5 senses: 1.hearing 2.smell 3.sight 4.taste 5.touch to make observations.


How do weather forecasters make predictions about tomorrow's weather?

they use the information from their observations to make inferences


What sense organ do you use in making observation?

We use all 5 senses to make observations. The organs we use to make observations are the tongue and throat (around the mouth), nose, ears, eyes, and skin. Without these senses we would not be able to function.


When you need to satisfy two or more criteria to initiate an event in a program you must make sure that the second decision is made entirely independently of the first decision?

Evaluate the criteria before executing the conditional expression. In pseudocode:result1 = evaluate( criteria1 );result2 = evaluate( criteria2 );if( result1 && result2 ) initiate_event;Note that this is not the same as the following:if( evaluate( criteria1 ) && evaluate( criteria2 )) initiate_event;If the evaluation of criteria1 fails for any reason, then the whole expression fails and criteria2 is never evaluated. so if the evaluations must be done independently of each other, then they must be done prior to the conditional expression, storing the results for use in the conditional expression.