These ICS3U Grade 11 Computer Science python coding questions will form a part of your final grade for this course and are to be handed in for grading.
For all of the following questions:
Your grade will be based on your ability to demonstrate the overall expectations from the Ontario Computer Studies Curriculum
A1 – Data Sequencing
A2 – Selection and Repetition Structures
B3 – Algorithm Design
File Name: “ICS3UorderSum.py”
Write a program that continually generates 2 numbers between -5 and 5
File Name: “ICS3UheadsUp.py”
You are going to write a program that “flips” a coin repeatedly and displays the results to the screen.
File Name: “ICS3UdoubleDiamond.py”
Write a program that prints two diamonds side by side based on a number entered by the user.
For example, if the user entered the value of 9, then the following picture would be drawn on the screen.
NOTE: You cannot use python’s print statement that uses a * to print characters a certain amount of times. Use only loops to do your printing