Question: Given the following code with line numbers, which line number(s) represent the return values? Choose ALL which apply. SampleProgramForIdentifyingParts.JPG # By James Nichols from random

Given the following code with line numbers, which line number(s) represent the return values? Choose ALL which apply. SampleProgramForIdentifyingParts.JPG # By James Nichols from random import randrange def diceRoll(): upperValue=7 firstDie=randrange(1, upperValue) secondDie=randrange(1, upperValue) return firstDie,secondDie def compareDiceEqual(dice): firstDie, secondDie=dice if(firstDie==secondDie): print("They're equal!") else: print("They're NOT equal!") def main(): diceValues=diceRoll() print(diceValues) compareDiceEqual(diceValues) main() main()

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!