Programming2-Q2-Assessment

Programming2-Q2-Assessment

Assessment

Flashcard

Computers

12th Grade

Hard

Created by

Quizizz Content

FREE Resource

Student preview

quiz-placeholder

20 questions

Show all answers

1.

FLASHCARD QUESTION

Front

Which of the following is a valid variable name in Python?
a. 2var_name
b. my_variable
c. variable name
d. global - variable

Back

my_variable

2.

FLASHCARD QUESTION

Front

What is the correct way to declare a string variable in Python? Options: a. string name = "Hello", b. str_name = "Hello", c. "Hello" = str_name, d. name = Hello

Back

str_name = "Hello"

3.

FLASHCARD QUESTION

Front

In Python, what list method is used to get the length of a list?

Back

len()

4.

FLASHCARD QUESTION

Front

How do you access the first element of a list in Python? Options: a. list[0], b. list[first], c. list(1), d. list.first()

Back

list[0]

5.

FLASHCARD QUESTION

Front

What method is used to add an element to the end of a list in Python? Options: a. append(), b. insert(), c. add(), d. extend()

Back

append()

6.

FLASHCARD QUESTION

Front

What is the result of the following code: my_str = "1, 2, 3," + "4, 5"?

Back

"1, 2, 3, 4, 5"

7.

FLASHCARD QUESTION

Front

How do you remove the last element in a list in Python? Options: a. list.remove(value), b. list.pop(), c. list.delete(element), d. list.exclude(element)

Back

list.pop()

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?