answersLogoWhite

0


Best Answer

true

User Avatar

Wiki User

12y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Is it true or false that scientific methods have two basic types?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What are the three types of scientific methods?

observation,hypothesis,experimental


Scientific models have two basic types?

true


Do scientific models have two basic types?

mathematical model and physical model


What are 2 basic types of scientific method?

observation and hypothesis


What are the three basic types of scientific observation?

descriptive, comparative, and experimental


What are the two types of scientific methods?

Quantitative Research, and Qualitative Research. Those are the two!


What types of things cannot be answered by scientific methods?

Matters of faith or theology


Is it true or false that temperature and rainfall determine basic types of vegetation?

True


What is the difference between class data type and basic type in c plus plus .How can someone know which one is class type and which one is basic type.?

Basic types (primitive data types) have no methods associated with them.


What are the types of communication methods?

types of communication methods?


Types of false ceiling?

what are the types of false ceilings


The methods cannot have the same name in java true or false?

False. Methods in a class can have the same name as long as they have a different signature. You cannot duplicate method code inside a class but you can always have methods that have the same name but a different signature. Ex: Here I have created two methods in a class that have the same name "sum" but have a different argument types, and return types and hence perfectly allowable in a java class. Public class PolymorphismExample { public int sum(int a, int b){ return a + b; } public double sum (double a, double b){ return a + b; } }