Quiz 140 / First steps in Python

Quiz
•
Computers
•
9th Grade
•
Hard
Jonathan Saurine
Used 1+ times
FREE Resource
15 questions
Show all answers
1.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
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
Which code would have the same function as the Python code shown?
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
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
Which code will produce the same output as that shown.
Create a free account and access millions of resources
Similar Resources on Wayground
18 questions
Circuit Playground Review I

Quiz
•
9th - 12th Grade
10 questions
PC4.8-PC4.9 CSC403 T2

Quiz
•
9th Grade
10 questions
Game Maker Loops and Arrays

Quiz
•
9th Grade
11 questions
Git Basics

Quiz
•
9th Grade
15 questions
Fall Feast Tynker Tutorial Check Up

Quiz
•
7th Grade - University
11 questions
Introduction to Variables

Quiz
•
9th Grade
15 questions
Algorithms

Quiz
•
8th - 10th Grade
20 questions
Final Practice Dec 2023

Quiz
•
9th Grade
Popular Resources on Wayground
10 questions
Lab Safety Procedures and Guidelines

Interactive video
•
6th - 10th Grade
10 questions
Nouns, nouns, nouns

Quiz
•
3rd Grade
10 questions
9/11 Experience and Reflections

Interactive video
•
10th - 12th Grade
25 questions
Multiplication Facts

Quiz
•
5th Grade
11 questions
All about me

Quiz
•
Professional Development
22 questions
Adding Integers

Quiz
•
6th Grade
15 questions
Subtracting Integers

Quiz
•
7th Grade
9 questions
Tips & Tricks

Lesson
•
6th - 8th Grade
Discover more resources for Computers
10 questions
Exploring Digital Citizenship Essentials

Interactive video
•
6th - 10th Grade
20 questions
Digital Citizenship

Quiz
•
8th - 12th Grade
30 questions
Introduction to Computers

Quiz
•
8th - 9th Grade
35 questions
Computer Baseline Examination 2025-26

Quiz
•
9th - 12th Grade
13 questions
Problem Solving Process

Quiz
•
9th - 12th Grade
20 questions
Hardware vs. Software Quiz

Quiz
•
7th - 10th Grade
10 questions
Understanding Algorithms with Pseudocode and Flowcharts

Interactive video
•
9th - 12th Grade