Lec 5

Lec 5

University

5 Qs

quiz-placeholder

Similar activities

PYTHON -Q1

PYTHON -Q1

University

6 Qs

Exploring Python: Input and Output Essentials

Exploring Python: Input and Output Essentials

9th Grade - University

10 Qs

PSP Week3

PSP Week3

University

10 Qs

Python Basics Day 2

Python Basics Day 2

University

7 Qs

ภาษาไพธอน

ภาษาไพธอน

University

10 Qs

ภาษาไพธอน

ภาษาไพธอน

University

10 Qs

Node.js

Node.js

KG - Professional Development

8 Qs

A3 IB - Introducción a Python

A3 IB - Introducción a Python

11th Grade - University

10 Qs

Lec 5

Lec 5

Assessment

Quiz

Computers

University

Easy

Created by

nada salama

Used 7+ times

FREE Resource

5 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What is the output:

print("hello","world",sep=" ------")?

Hello World --------

Hello -------- World

Hello World

2.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Which statement prints: Welcome!

print(Welcome)

Print('Welcome!')

print('Welcome!')

3.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What keyword is used to display data in python

print

ouput

display

4.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What MUST a print statement have after the word print?

Square Brackets [ ]

Quotation marks " "

Parenthesis ( )

5.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Choose the correct output for the below code.

print("Python", end='@')

print("Wiingy")

PythonWiingy@

Python@Wiingy

@PythonWiingy