Conditional Execution
Read the first half of of "Think Python" chapter five on Conditionals and Recursion, 5.1-5.5. Write a statement in the interpreter that prints out the last three digits of the number 10245 using the modulus operator. In the interpretor set x=2, y=5 and evaluate the following: x==y, x!=y, x<y, x>y, x<=y, x>=y. Now in your head set x=5, y=5 and figure out how those six statements would evaluate. Run them through the interpreter and see if you were right. Come up with a value for n that would make the following statement True: (n%2==0 and n%3==0). Test this in the interpreter. Would the following statements be True or False for x=3 and y=4, test them after you get your answer to verify: not x>y x<y or x==y not x==y x<y and x<=y x<y or x<=y Programming Merit Badge requirement 2 : Give a brief history of programming, including at least three milestones related to the advancement or development of programming. Disc...