0 of 4 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
You have the potential to do better! 🙂
If you found a concept confusing on this page then please leave a comment below asking for clarity.
Try re-reading the tutorial on this page before you retake this quiz!
You have completed this lesson!
Print the following pattern using for loop?
*
**
***
****
This response will be reviewed and graded after submission.
Write a python program to print multiplication table of 13 up to 10?
This response will be reviewed and graded after submission.
Write a python program to print the summation of digits from 5 to 20?
Note: Till now you’ve been using the range function as range(number).Â
But you can also use range by providing it two values. range(starting_number – including,  ending_number – excluding).
Example: range(3,10) will generate 3,4,…9 .
This response will be reviewed and graded after submission.
Write a python program to find whether a number is prime or not?
Hint: To find out whether a number is prime or not you need to try dividing that number by all numbers smaller than it and ensure that after division the remainder isn’t zero. Remainder is found by using the % sign.
For example, 20 % 5 will fetch a 0 because 20 is exactly divisible by 5.
20 % 6 will fetch a 2 because the division leaves a remainder of 2.
This response will be reviewed and graded after submission.