Python Basics

Python Basics

University

6 Qs

quiz-placeholder

Similar activities

Expression

Expression

University

10 Qs

Bahasa Pemrograman Python

Bahasa Pemrograman Python

University

10 Qs

Kuizi 1 - Python

Kuizi 1 - Python

10th Grade - University

11 Qs

Python-Quiz-Basic-Datatypes

Python-Quiz-Basic-Datatypes

12th Grade - Professional Development

10 Qs

Database(1)

Database(1)

10th Grade - University

10 Qs

2021_DASPRO_PERTEMUAN2

2021_DASPRO_PERTEMUAN2

University

10 Qs

kt1_LTCB_50CCNTT

kt1_LTCB_50CCNTT

University

10 Qs

Clase 2

Clase 2

University

10 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)