Demo Quiz Ashv

Demo Quiz Ashv

Professional Development

7 Qs

quiz-placeholder

Similar activities

Basic Python Data Types

Basic Python Data Types

Professional Development

8 Qs

FinTech 02-1 Python

FinTech 02-1 Python

Professional Development

11 Qs

Study Jam Python/General Quiz1

Study Jam Python/General Quiz1

Professional Development

10 Qs

Python

Python

Professional Development

10 Qs

FinTech 01-3

FinTech 01-3

Professional Development

11 Qs

Funciones, Listas, Tuplas, Diccionarios

Funciones, Listas, Tuplas, Diccionarios

Professional Development

12 Qs

BoostHours Python 09/04

BoostHours Python 09/04

Professional Development

10 Qs

Python Data Structures & Statements

Python Data Structures & Statements

Professional Development

11 Qs

Demo Quiz Ashv

Demo Quiz Ashv

Assessment

Quiz

Computers

Professional Development

Hard

Created by

Jaganmohan Bondala

Used 1+ times

FREE Resource

7 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

Which of the following is a membership operator?

and

or

not

in

2.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

What is the main feature of Java?

Platform Independent

Robust

Simple

All of the above

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of the following Python statement?

>>>"abcd"[2:]

a) a

b) ab

c) cd

d) dc

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

To add a new element to a list we use which Python command?

a) list1.addEnd(5)

b) list1.addLast(5)

c) list1.append(5)

d) list1.add(5)

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of the following Python code?

>>>str1="helloworld"

>>>str1[::-1]

a) dlrowolleh

b) hello

c) world

d) helloworld

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

If a=(1,2,3,4), a[1:-1] is _________

a) Error, tuple slicing doesn’t exist

b) [2,3]

c) (2,3,4)

d) (2,3)

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is not a core data type in Python programming?

a) Tuples

b) Lists

c) Class

d) Dictionary