Samacheer Kalvi 12th Computer Science Model Question Paper - 1

Question: 1

______ function is used to add a single element to the list.

Answer:

append( )

Question: 2

______ function is used to insert an element at any position of a list.

Answer:

insert( )

Question: 3

The two ways of deleting elements from a list are _____ and _____

Answer:

del and remove( )

Question: 4

______ function deletes the element using the given index value.

Answer:

pop( )

Question: 5

The _____ function is used to create a list in python.

Answer:

list( )

Question: 6

_______ returns a copy of the list.

Answer:

copy( )

Question: 7

______ returns the index value of the first recurring element.

Answer:

index( )

Question: 8

The _____ function is used to create tuples from a list.

Answer:

tuple( )

Question: 9

Creating a tuple with one element is called ______ tuple.

Answer:

singleton

Question: 10

_______ assignment is a powerful feature in python.

Answer:

Tuple