0 of 7 questions completed
Questions:
You have already completed the quiz before. Hence you can not start it again.
Quiz is loading…
You must sign in or sign up to start the quiz.
You must first complete the following:
Your time:
Time has elapsed
Good work attempting the practice problems!
Please leave a comment below if you require any clarifications or send an email to [email protected] if you have any comments about this quiz.
You have completed this lesson!
State the Difference between range and xrange?
This response will be reviewed and graded after submission.
Write a python program that uses range function to generate all the even numbers between the ranges 0 to 100?
This response will be reviewed and graded after submission.
Write a python program using range function to display all the numbers in descending order starting from 100 to 0?
This response will be reviewed and graded after submission.
Write a python program that generates all the number divisible by 2 or 3 but not by 6 within a given range?
This response will be reviewed and graded after submission.
Write a python program that generates the following series 1,2,4,7,11,……, upto 100 terms?
This response will be reviewed and graded after submission.
Write a python program that generates the following series 0.0 ,0.25 ,0.5 ,0.75 ,1.0,……, upto 20 terms?
Remember, the range only generates integers.
This response will be reviewed and graded after submission.
Write a python program that generates all the digits ending with 1 (e,g 21, 31 etc) ?
This response will be reviewed and graded after submission.