Python Programming Fundamentals

Python Programming Fundamentals

11th Grade

5 Qs

quiz-placeholder

Similar activities

Class_11_24_July

Class_11_24_July

11th Grade

10 Qs

Câu hỏi Python

Câu hỏi Python

9th - 12th Grade

10 Qs

Python Quiz

Python Quiz

9th Grade - Professional Development

10 Qs

Struktur Kontrol Perulangan

Struktur Kontrol Perulangan

10th - 11th Grade

10 Qs

Python quiz

Python quiz

10th Grade - Professional Development

10 Qs

Python Conditions

Python Conditions

11th Grade

10 Qs

A3 IIIB - Básicas de EDA

A3 IIIB - Básicas de EDA

11th Grade - University

10 Qs

python-BTxâu

python-BTxâu

9th - 12th Grade

10 Qs

Python Programming Fundamentals

Python Programming Fundamentals

Assessment

Quiz

Computers

11th Grade

Medium

Created by

MOHAMMED (EMP823)

Used 9+ times

FREE Resource

5 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Is Python case sensitive when dealing with identifiers?

yes

no

machine dependent

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is invalid?

_a = 1

__a = 1

__str__ = 1

none of the mentioned

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

All keywords in Python are in

lower case

UPPER CASE

Capitalized

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is an invalid statement?

abc = 1,000,000

a b c = 1000 2000 3000

a,b,c = 1000, 2000, 3000

a_b_c = 1,000,000

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which is the correct operator for power(xy)?

X^y

X**y

X^^y