Chapter 1: Python Introduction

Chapter 1: Python Introduction

University

6 Qs

quiz-placeholder

Similar activities

untitled

untitled

8th Grade - University

11 Qs

codestorm

codestorm

University

10 Qs

Pertemuan 3

Pertemuan 3

University

10 Qs

A4 IB - Introducción a Listas de Python

A4 IB - Introducción a Listas de Python

University

10 Qs

POST TES MATRIKULASI

POST TES MATRIKULASI

10th Grade - University

10 Qs

X-quiz #3

X-quiz #3

University

10 Qs

Python Basics

Python Basics

11th Grade - University

10 Qs

Python Basics

Python Basics

KG - University

10 Qs

Chapter 1: Python Introduction

Chapter 1: Python Introduction

Assessment

Quiz

Computers

University

Medium

Created by

Heath Hillman

Used 14+ times

FREE Resource

6 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

True or False:

A computer program consists of instructions executing one at a time.

True

False

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the purpose of variables?

Store values for later use.

Instruct the processor to execute an action.

Automatically color text in an editor.

Allows professors an opportunity to rant and rave about abstraction.

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Select the statement that prints the following:

Python Party!

print(Python Party!)

print("Python Party!")

print("Python Party!')

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

True or False:

The following lines of code will produce the same result:

print('Python Party!')

print("Python Party!")

True

False

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which statement(s) will produce:

What body part does a programmer know best? ARM

print('What body part does a programmer know best?, ARM')

print('What body part does a programmer know best?)

print('ARM')

print('What body part does a programmer know best?', 'ARM')

print('What body part does a programmer know best?', 'Arm')

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

print('Enter wage: ', end=' ')

wage = input()

newWage = wage + 10

print('Your new wage: ', newWage)