Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issue fixed #245

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/lab/exp5/content.html
Original file line number Diff line number Diff line change
Expand Up @@ -714,9 +714,9 @@ <h2>Pre-experiment Quiz</h2><br>
<p>
<ol>
<li>Modern Techniques For Circular Dichroism And Synchrotron Radiation Circular Dichroism Spectroscopy; Bonnie Ann Wallace And Robert William Janes; IOS Press</li>
<li><a href="http://www.jasco.co.uk/j800.asp" target="blank">To know more about Jasco CD spectrometer. </a></li>
<li><a href="https://www.jasco.co.uk/ftir.html" target="blank">To know more about Jasco CD spectrometer. </a></li>
<li><a href="http://cnx.org/content/m38277/latest/" target="blank">Protocol for Collecting CD spectrum. </a></li>
<li><a href="http://www.chemistry.nmsu.edu/Instrumentation/CD_procd.html" target="blank">Basic Operation of the JASCO CD Spectropolarimeter. </a></li>
<li><a href="http://www.chem.umd.edu/wp-content/uploads/2012/12/CD-Spectrometer-Jasco-J-810-manual.pdf" target="blank">Basic Operation of the JASCO CD Spectropolarimeter. </a></li>
<li><a href="http://www.mscwu.wur.nl/NR/rdonlyres/256B4909-D151-45EF-BA90-47A81D1F17A0/57402/Kelly2005.pdf"target="blank">How to study proteins by circular dichroism by Sharon M. Kelly et al.</a>

</li>
Expand Down
15 changes: 15 additions & 0 deletions src/lab/exp7/post_exp_quiz.php
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,9 @@ function getOptions(opt){
if($_POST['q1'] == "C"){
echo "<span style='color:green'>(".$_POST['q1'].") IS CORRECT</span>";
}
else if($_POST['q1'] == ""){
echo "Question unattempted ! CORRECT answer is (C).</span>";
}
else{
echo "<span style='color:red'>(".$_POST['q1'].") IS NOT CORRECT ! CORRECT answer is (C).</span>";
}
Expand All @@ -105,6 +108,9 @@ function getOptions(opt){
if($_POST['q2'] == "B"){
echo "<span style='color:green'>(".$_POST['q2'].") IS CORRECT</span>";
}
else if($_POST['q2'] == ""){
echo "Question unattempted ! CORRECT answer is (B).</span>";
}
else{
echo "<span style='color:red'>(".$_POST['q2'].") IS NOT CORRECT ! CORRECT answer is (B).</span>";
}
Expand All @@ -128,6 +134,9 @@ function getOptions(opt){
if($_POST['q3'] == "B"){
echo "<span style='color:green'>(".$_POST['q3'].") IS CORRECT</span>";
}
else if($_POST['q3'] == ""){
echo "Question unattempted ! CORRECT answer is (B).</span>";
}
else{
echo "<span style='color:red'>(".$_POST['q3'].") IS NOT CORRECT ! CORRECT answer is (B).</span>";
}
Expand All @@ -151,6 +160,9 @@ function getOptions(opt){
if($_POST['q4'] == "A"){
echo "<span style='color:green'>(".$_POST['q4'].") IS CORRECT</span>";
}
else if($_POST['q4'] == ""){
echo "Question unattempted ! CORRECT answer is (A).</span>";
}
else{
echo "<span style='color:red'>(".$_POST['q4'].") IS NOT CORRECT ! CORRECT answer is (A).</span>";
}
Expand All @@ -174,6 +186,9 @@ function getOptions(opt){
if($_POST['q5'] == "B"){
echo "<span style='color:green'>(".$_POST['q5'].") IS CORRECT</span>";
}
else if($_POST['q5'] == ""){
echo "Question unattempted ! CORRECT answer is (B).</span>";
}
else{
echo "<span style='color:red'>(".$_POST['q5'].") IS NOT CORRECT ! CORRECT answer is (B).</span>";
}
Expand Down