The term genetics was coined by:
A) Charles Darwin
B) Lamarck
C) Mendel
D) Bateson
Theory of Epigenesis was proposed by:
A) August Weismann
B) de Vries
C) Wolff
D) Lamarck
Theory of Pangenes was proposed by:
A) Lamarck
B) Wolff
C) Charles Darwin
D) August Weismann
Theory of acquired character was put forth by:
A) de Vries
B) Morgan
C) Lamarck
D) Mendel
The germplasm theory was advocated by:
A) August Weismann
B) Charles Darwin
C) de Vries
D) Lamarck
Preformation theory was proposed by:
A) Wolff
B) Lamarck
C) Swammerdam and Bonnet
D) Bateson and Punnett
The one gene one enzyme hypothesis was given by:
A) T.H. Morgan
B) Bateson and Punnett
C) Beadle and Tatum
D) de Vries
The operon hypothesis was proposed by:
A) Watson and Crick
B) Beadle and Tatum
C) Jacob and Monod
D) Nirenberg and Khorana
The operon concept was developed on:
A) Neurospora
B) Drosophila
C) E. coli
D) Garden pea
The Journal of Genetics was founded by:
A) R.A. Fisher
B) Mendel
C) Bateson and Punnett
D) Morgan

Report Card

Total Questions Attempted: 0

Correct Answers: 0

Wrong Answers: 0

Percentage: 0%

const questionId = option.getAttribute('data-question'); const isCorrect = option.getAttribute('data-correct') === 'true'; if (!attemptedQuestions.has(questionId)) { options.forEach(o => { if (o.getAttribute('data-question') === questionId) { o.classList.remove('selected', 'correct', 'wrong'); if (o === option) { o.classList.add('selected'); if (isCorrect) { o.classList.add('correct'); correctAnswers++; } else { o.classList.add('wrong'); options.forEach(correctOption => { if ( correctOption.getAttribute('data-question') === questionId && correctOption.getAttribute('data-correct') === 'true' ) { correctOption.classList.add('correct'); } }); } totalQuestions++; attemptedQuestions.add(questionId); } } }); } // Show explanation const explanation = document.querySelector(`.explanation[data-question="${questionId}`); if (explanation) { explanation.style.display = 'block'; } attemptedCount.textContent = totalQuestions; correctCount.textContent = correctAnswers; wrongCount.textContent = totalQuestions - correctAnswers; percentage.textContent = ((correctAnswers / totalQuestions) * 100).toFixed(2) + '%'; }); });