Python Basics

Python Basics

University

6 Qs

quiz-placeholder

Similar activities

Bahasa Pemrograman Python

Bahasa Pemrograman Python

University

10 Qs

Kuizi 1 - Python

Kuizi 1 - Python

10th Grade - University

11 Qs

A5 IB -  Variables y Constantes en Python

A5 IB - Variables y Constantes en Python

10th Grade - University

10 Qs

1-基本数据类型

1-基本数据类型

University

10 Qs

Python-Quiz-Basic-Datatypes

Python-Quiz-Basic-Datatypes

12th Grade - Professional Development

10 Qs

PythonTest

PythonTest

6th Grade - Professional Development

11 Qs

Chapter 1: Python Overview

Chapter 1: Python Overview

University

10 Qs

Day-2 Basic Python

Day-2 Basic Python

University

5 Qs

Python Basics

Python Basics

Assessment

Quiz

Computers

University

Hard

Created by

Tasanawan Soonklang

Used 2+ times

FREE Resource

6 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Print the word "Hello" on python shell.

Print("Hello")

print("Hello")

Print(Hello)

print 'Hello'

2.

FILL IN THE BLANK QUESTION

1 min • 1 pt

Data type of 3 is ___

(int, float, bool, str)

3.

FILL IN THE BLANK QUESTION

1 min • 1 pt

Data type of '3' is ___

(int, float, bool, str)

4.

FILL IN THE BLANK QUESTION

1 min • 1 pt

Data type of input() is ___

(int, float, bool, str)

5.

FILL IN THE BLANK QUESTION

1 min • 1 pt

Data type of True is ___

(int, float, bool, str)

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

If you want to get input x and convert x to real number,

which command will be used?

x = int(input())

x = float(input())

x = input(int)

x = input(float)