answersLogoWhite

0


Best Answer

Because the age of reason and the enlightenment allowed men and women to question the received wisdom from, usually, the churches and ask questions about the natural world that did not have magical, but natural explanations. So, when Darwin proposed his answer to the species problem many scientists were prepared to receive this natural explanation devoid of religious claptrap.

User Avatar

Wiki User

12y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Why was the Enlightenment important int the theory of evolution?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How do you convert long value into int in java?

long a; int b; b = a.intValue(); //IMPORTANT NOTE IF THE LONG IS SO LARGE THAT IT CANT BE A INT THEN YOU WILL GET A OVERFLOW ERROR


30 examples of variables?

int n1; int n2; int n3; int n4; int n5; int n6; int n7; int n8; int n9; int n10; int n11; int n12; int n13; int n14; int n15; int n16; int n17; int n18; int n19; int n20; int n21; int n22; int n23; int n24; int n25; int n26; int n27; int n28; int n29; int n30;


What is Variable declaration and variable initialization?

...are important things in programming. Example: extern int variable; /* declaration */ int variable= 8; /* definition with initialization */


How does a theory different from law?

A law is something that is said to be true and is a establised int the science community already. A theory is something that a scientist has come up with that hasnt been proven true or false.


How do declare function pointer having two integer parameters and returning integer pointers?

// declare a function int* function(int, int); or int* (function)(int, int); // declare a pointer to a function int* (*pointer_to_function)(int, int);


What is a conclusion paragraph about the taiga biome?

as you can see taiga is a very important biome int his world


What is array in structures?

array is used to store the ame datatypes syntex: int array[]=new int[size]; dynamic declaration of array insertion array[1]=20; 2nd way: int array[]={10,20,30}; *important:- int array[20]={20,30,49,....} this way is wrong in java as this is static way and in java all is done dynamically


Get size of int using sizeoff?

printf ("sizeof (int) = %d\n", (int)sizeof (int));


C program to find LCMof three integers?

int LCM3 (int a, int b, int c) { return LCM2 (a, LCM2 (b, c)); } int LCM2 (int a, int b) { return a*b/GCD2(a, b); }


C plus plus prog a function sum that returns the sum of all Values in the given array int sum int list int arraySize?

int sum(int list[], int arraySize) { int sum=0; for(int i=0; i<arraySize; ++i ) sum+=list[i]; return(sum); }


What is the most important development in international affairs int he years immediately following world war 2?

Pizza


What is the difference between function and recursive function?

I will explain in the easiest way the difference between the function and recursive function in C language. Simple Answer is argument of the function is differ but in the recursive function it is same:) Explanation: Function int function(int,int)// function declaration main() { int n; ...... ...... n=function(a,b); } int function(int c,int d) { ...... ...... ...... } recursive Function: int recursive(int,int)// recursive Function declaration main() { int n; ..... ..... ..... ..... n=recursive(a,b); } int recursive(int a,int b) { ..... .... .... .... } Carefully see, In the recursive Function the function arguments are same.