Python Programming

Python Programming

University

8 Qs

quiz-placeholder

Similar activities

Kpop kuis

Kpop kuis

University

10 Qs

Excel base

Excel base

2nd Grade - University

10 Qs

Python Quiz

Python Quiz

University

4 Qs

Cinema

Cinema

KG - University

10 Qs

Office2016 & Office365

Office2016 & Office365

University

10 Qs

Guess the K-pop Group/Artist

Guess the K-pop Group/Artist

KG - Professional Development

11 Qs

Intro to Python Programming Quiz 9C

Intro to Python Programming Quiz 9C

10th Grade - University

12 Qs

Handling-Textfile

Handling-Textfile

University

7 Qs

Python Programming

Python Programming

Assessment

Quiz

Other

University

Hard

Created by

Rahul Chawda

Used 1+ times

FREE Resource

8 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

What is the output of the following code?

Hello3

Hello

TypeError

6

2.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

What is the correct way to comment a single-line in Python?

// This is a comment

# This is a comment

/* This is a comment */

-- This is a comment

3.

MULTIPLE CHOICE QUESTION

10 sec • 1 pt

What is the correct way to declare a variable in Python?

var x = 5;

int x = 5;

x = 5

let x = 5;

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is a correct way to create a list in Python?

[1, 2, 3]

{1, 2, 3}

(1, 2, 3)

{1: 'one', 2: 'two', 3: 'three'}

5.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

What is the correct way to define a function in Python?

function myFunction() {}

def myFunction():

void myFunction() {}

define myFunction():

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the correct way to iterate through a list in Python?

for i in range(len(myList)):

for i in myList:

for i in range(myList):

foreach i in myList:

7.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Which of the following is the correct way to open a file in Python?

openFile('file.txt')

file.open('file.txt')

open('file.txt')

file.openFile('file.txt')

8.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

What is the correct way to check if a key exists in a dictionary in Python?

if key in myDict:

if myDict.contains(key):

if myDict[key] != None:

if myDict.hasKey(key):