Services
Discover
Ask a Question
Log in
Sign up
Filters
Done
Question type:
Essay
Multiple Choice
Short Answer
True False
Matching
Topic
Computing
Study Set
Python Programming
Exam 1: Python Programming: Output and Data Types
Path 4
Access For Free
Share
All types
Filters
Study Flashcards
Practice Exam
Learn
Question 41
Multiple Choice
What is the output of the following program? L = [1, 3, 5, 7, 9] Print(L.pop(-3) , end = ' ') Print(L.remove(L[0]) , end = ' ') Print(L)
Question 42
Multiple Choice
What data type is the object below? L = [1, 23, „hello?, 1]
Question 43
Multiple Choice
What is the output of the following program? L1 = [1, 2, 3, 4] L2 = L1 L3 = L1.copy() L4 = list(L1) L1[0] = [5] Print(L1, L2, L3, L4)
Question 44
Multiple Choice
What is the output of the following? Elements = [0, 1, 2] Def incr(x) : Return x+1 Print(list(map(elements, incr) ) )
Question 45
Multiple Choice
What is the output of the following program : Print '{0:.2}'.format(1.0 / 3)
Question 46
Multiple Choice
What is the output of the following program? Dictionary1 = {'GFG' : 1,'Google' : 2,'GFG' : 3} Print(dictionary1['GFG']) ;
Question 47
Multiple Choice
What is the type of each element in sys.argv?
Question 48
Multiple Choice
To read the entire remaining contents of the file as a string from a file object infile, we use
showing 41 - 48 of 48
Prev
Next
Prev
1
2
3
Next
Related Exams
Previous slide
Next slide
Access For Free