Rating
0 0

There are no comments for now.

to be the first to leave a comment.

3. The value twenty point twelve times ten raised to the power of eight should be written as:
4. The 0o prefix means that the number after it is denoted as:
8. Left-sided binding determines that the result of the following expression: 1 // 2 * 3 is equal to :
9. Which of the following variable names are illegal? (Select two answers)
11. What is the output of the following snippet? x =1; y=2; z=x; x=y; y=z print(x,y)
12. What is the output of the following snippet if the user enters two lines containing 2 and 4 respectively? x = input(); y = input(); print(x + y)
13. What is the output of the following snippet if the user enters two lines containing 2 and 4 respectively? x=int(input()); y=int(input()); x=x//y; y=y//x; print(y)
14. What is the output of the following snippet if the user enters two lines containing 2 and 4 respectively? x = int(input()); y = int(input()); x = x / y; y = y / x ; print(y)
15. What is the output of the following snippet if the user enters two lines containing 11 and 4 respectively? x = int(input()); y = int(input()) ; x = x % y; x = x % y; y = y % x; print(y)
16. What is the output of the following snippet if the user enters two lines containing 3 and 6 respectively? x = input(); y = int(input()); print(x * y)
17. What is the output of the following snippet? z = y = x = 1; print(x, y, z, sep='*')
18. What is the output of the following snippet? y = 2 + 3 * 5. print(Y)
19. What is the output of the following snippet? x = 1 / 2 + 3 // 3 + 4 ** 2; print(x)
20. What is the output of the following snippet if the user enters two lines containing 2 and 4 respectively? x = int(input()); y = int(input()); print(x + y)