- | P a g e
CIT 332 Final Actual EXAM Newest 2025/2026 With Complete Questions And Correct Answers |Already Graded A+||Brand New Version!|
What is printed by the following statements?alist = [3, 67, "cat", [56, 57, "dog"], [ ], 3.14, False]print(alist[4:]) - ANSWER-[[], 3.14, False]
What is the output of the following code?studentsNames = ['Alex', 'Smith', 'William', 'Tom']if ('Smith' in studentsNames): print ("Found")else: print ("Not found") - ANSWER- FOUND
Which of the following statement inserts 7 to the second position in list1? - ANSWER-list1.insert(1, 7)
Which of the following statement removes the third element from list1?
- ANSWER-list1.pop(2)
Which of the following statement removes string "python" from list1? - ANSWER-list1.remove("python")
- / 4
- | P a g e
What is the returned value from this function?
def example(L):
i = 0 result = []
while (i < len (L)) :
result.append(L[i]) i = i + 3 return result # Call the above function as below x = example ( [2,3,4.5,6,7,8,9,10,11,12] ) print (x) - ANSWER-Returns a list containing every third item from L starting at index 0.
What is the output when the following function is called as below?
def function1 (values):
values[0] = 89 # Call the above function as below list1 = [11, 12, 30] function1(list1) print (list1) - ANSWER-[89, 12, 30]
What's the output from the following code segment: 2 / 4
- | P a g e
def mid(vals):
vals[1] = 10 nums = [1, 2, 3] mid(nums) print(v) - ANSWER-[1, 10, 3]
What will be the output of calling the function addItem from the main function?
def addNewItem (list1):
list1 += [1]
def main():
anyList = [1, 2, 3, 4] addNewItem ( anyList ) print ( len ( anyList ) ) print ( anyList [4] ) main() - ANSWER-5 1
What is the output of the following code?
def changeValues (intValue, listValue):
intValue = 1 listValue [0] = 44 3 / 4
- | P a g e
value1 = 3 list1 = [89, 15, 13] changeValues (value1, list1) print (value1, list1) - ANSWER-3 [44, 15, 13]
Given m = [[1, 2, 3, 4, 5],
[6, 7, 8, 9, 10],
[11, 12, 13, 14, 15]]
What's the value of m[1][2] - ANSWER-8
Given m = [[1, 2, 3, 4, 5],
[6, 7, 8, 9, 10],
[11, 12, 13, 14, 15]]
What's the value of len(m) - ANSWER-3
Given m = [[1, 2, 3, 4, 5],
[6, 7, 8, 9, 10],
[11, 12, 13, 14, 15]]
What's the value of len(m[1]) - ANSWER-5
- / 4