Little quiz


Q1: Intermittent Fasting determines your food diet
Yes
No
Q2: You have two individuals, One who's diet consists of Mcnuggets from Mcdonalds. And an invdivudal whose diet consists of clean food. Both are at caloric deficit and are exercising. Do you think the indivdual with the Mcnugget diet will lose weight ?
Yes
No
Q3: The more over weight you are, the more you will lose when you start any excercise or diet program
Yes
No
#### #!/usr/bin/perl use warnings; use strict; use CGI qw/:standard/; use CGI::Carp qw/fatalsToBrowser/; print header(); print start_html; for my $n (1..3){ print p("Question $n is ".param('grp'.$n)); } print end_html;