PROG2013_Quiz_Unit1a

PROG2013_Quiz_Unit1a

University

15 Qs

quiz-placeholder

Similar activities

ITS Python 變數與運算式課堂測驗

ITS Python 變數與運算式課堂測驗

6th Grade - University

10 Qs

2F-3 | Python Quiz | 14/11/2024

2F-3 | Python Quiz | 14/11/2024

University

20 Qs

Python Challenge

Python Challenge

University

15 Qs

Abstracciones procedimentales

Abstracciones procedimentales

University

10 Qs

Java Quiz I

Java Quiz I

University

17 Qs

Quizz Python Intro

Quizz Python Intro

University

10 Qs

Untitled Quiz

Untitled Quiz

University

20 Qs

Вопросы по алгоритмам и программированию

Вопросы по алгоритмам и программированию

University

20 Qs

PROG2013_Quiz_Unit1a

PROG2013_Quiz_Unit1a

Assessment

Quiz

Information Technology (IT)

University

Medium

Created by

Lisa W

Used 1+ times

FREE Resource

15 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

How do you print the value stored in the variable message?

echo(message)

echo(message)

print(message)

message.print()

2.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What will be the output of the following code?

y = 50

y = 100

print(y)

50

100

150

Error

3.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Which of the following correctly assigns values to multiple variables in a single line?

a, b, c = 10, 20, 30

a = b = c = 10, 20, 30

a b c = 10, 20, 30

a, b, c == 10, 20, 30

4.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Which of the following is the correct way to assign the value 10 to a variable x?

x == 10

x = 10

x <- 10

x => 10

5.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What does the type() function do in Python?

Checks the syntax of a variable

Prints the content of a variable

Displays the data type of a variable

Converts the data type of a variable

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the result of the following code?

num1 = 15

num2 = 4

print(num1 * num2)

19

60

11

45

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following correctly calculates 3 raised to the power of 4?

3 * 4

3 ** 4

pow(3, 4)

Both b and c

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?