Quiz 140 / First steps in Python

Quiz 140 / First steps in Python

9th Grade

15 Qs

quiz-placeholder

Similar activities

Thunkable Intro!

Thunkable Intro!

9th - 12th Grade

13 Qs

Computer Science Very Hard

Computer Science Very Hard

1st - 12th Grade

10 Qs

N5 SDD - Python input and output

N5 SDD - Python input and output

7th - 11th Grade

12 Qs

Kuis Ulang

Kuis Ulang

9th - 12th Grade

10 Qs

GitHub Quiz

GitHub Quiz

9th - 12th Grade

11 Qs

Evaluación sobre Git y GitHub

Evaluación sobre Git y GitHub

9th Grade - University

20 Qs

Ethics in Computing 2

Ethics in Computing 2

8th - 11th Grade

20 Qs

Intro to Mobile Programming Quiz

Intro to Mobile Programming Quiz

1st - 10th Grade

10 Qs

Quiz 140 / First steps in Python

Quiz 140 / First steps in Python

Assessment

Quiz

Computers

9th Grade

Hard

Created by

Jonathan Saurine

Used 1+ times

FREE Resource

15 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

What are the names given to processes A and B in the diagram?

A: push
B: commit

A: commit
B: push

A: push
B: merge

A: merge
B: push

Answer explanation

In the context of version control, 'commit' refers to saving changes to the local repository, while 'push' refers to sending those changes to a remote repository. Therefore, the correct names for processes A and B are A: commit and B: push.

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

Which code would have the same function as the Python code shown?

Media Image
Media Image
Media Image
Media Image

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Regarding version control with Git and GitHub, which of the following is correct?

GitHub stores files on the local computer and Git stores them on a server on the Internet.

Both Git and GitHub store files on a server on the Internet.

Git stores files on the local computer and GitHub stores them on a server on the Internet.

Both Git and GitHub store files on a local computer.

Answer explanation

Git is a version control system that stores files locally on your computer, while GitHub is a cloud-based platform that hosts Git repositories on a server, allowing for collaboration and remote access.

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following uses the Python convention for naming contants?

myprimes =
[2, 3, 5, 7, 11, 13]

my_primes =
[2, 3, 5, 7, 11, 13]

mYPrimes =
[2, 3, 5, 7, 11, 13]

MY_PRIMES =
[2, 3, 5, 7, 11, 13]

Answer explanation

In Python, constants are typically named using all uppercase letters with underscores separating words. Therefore, 'MY_PRIMES' follows this convention, while the other options do not.

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

Which code snippet is equivalent to the attached code

new_score =
score +10

score =
score += 10

new_score =
score += 10

score = score != 10

Answer explanation

The correct choice, 'score = score += 10', updates the variable 'score' by adding 10 to its current value. This is equivalent to incrementing 'score' directly, while the other options do not achieve the same effect.

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is not a valid variable name in Python?

2025age = 15

ageIn2025 = 15

age_2025 = 15

_2025age = 15

Answer explanation

In Python, variable names cannot start with a digit. Therefore, '2025age' is not a valid variable name, while 'ageIn2025', 'age_2025', and '_2025age' are all valid.

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

Which code will produce the same output as that shown.

Media Image
Media Image
Media Image
Media Image

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?