programming, programming homework help

QUESTION 1

1.  What is the following function returns item from the list with max value?

cmp(list)

len(list)

max(list)

min(list)

QUESTION 2

1.  What is the output of print(tuple[2]) if tuple = [ ‘abcd’, 786 , 2.23, ‘john’, 70.2 ]?

‘abcd’

786

2.23

‘john’

QUESTION 3

1.  What is the output of print( str[0] ) if str = ‘Hello World!’?

Hello World!

H

ello World!

None of the above.

QUESTION 4

1.  Which of the following function returns an iterable of index values from 0 to 3?

choice(seq(0,3))

range(0, 3)

random(0, 3)

seed([0, 3])

QUESTION 5

1.  Which list function can be used to return the position value (index number) of a value inside of the list, if that value does exist?

list.index(“value”)

list.append(“value”)

list.get(“value”)

list.remove(“value”)

QUESTION 6

1.  In the following for loop, what is the purpose of x?  

For x in list.keys()
 print(list[x])

It holds the value of the current element during that iteration.

It holds the index value of the current element during that iteration.

controls the list of index values.

holds the name of the current element during that iteration.

QUESTION 7

1.  What is the output of print( tinylist * 2) if tinylist = [123, ‘john’]?

[123, ‘john’, 123, ‘john’]

[123, ‘john’] * 2

Error

None of the above.

QUESTION 8

1.  Which of the following functions  generates an iterable list of values, only as needed?

range()

xrange()

temprange()

choice()

QUESTION 9

1.  Using lists and condition statements within our programs gives us the opportunity to handle an undefined amount of data.

 True

 False

QUESTION 10

1.  when referencing an index value within a list, the first element’s index value is always:

0

1

-1

any value

 
Do you need a similar assignment done for you from scratch? We have qualified writers to help you. We assure you an A+ quality paper that is free from plagiarism. Order now for an Amazing Discount!
Use Discount Code "Newclient" for a 15% Discount!

NB: We do not resell papers. Upon ordering, we do an original paper exclusively for you.