Don’t worry, unlock all articles / blogs on PrepInsta by just simply logging in on our website
Type atleast 3 characters
Popular Searches
Trending Pages
Notifications Mark All Read
No New notification
InfyTQ Menu9>
PREPINSTA PRIME
Get Hiring Updates right in your inbox from PrepInsta
Question 1
Sequential.
Container.
Numeric.
Integer.
Start
Question 2
High-performance container data-type
General purpose data-type
Low-performance container data-type
High-performance General purpose data-type.
Question 3
counting hashable objects
Counting objects in the program
Counting iterator in code
Counting occurrence of the element
Question 4
Remember the entries were added.
Remember the order entries were added.
Remember the order entries were deleted.
Remembers the entries were deleted.
Question 5
Set = {1, 1, 2, 3, 4, 4} print(Set)
[1, 1, 2, 3, 4, 4]
{1, 2, 3, 4}
[1, 2, 3, 4]
{1, 1, 2, 3, 4, 4}
Question 6
Set = {30, 40, 50} Set.update([10, 20, 30]) print(Set)
Cannot update the set
{10, 20, 30, 40, 50}
(10, 20, 30, 40, 50)
[10, 20, 30, 40, 50]
Question 7
Set = {10, 20, 30, 40} Set2 = Set.copy() Set2.add(50) print(Set)
{10, 20, 30, 40}
Error
[10, 20, 30, 40]
{10, 20, 30,40,50}
Question 8
arr = list('123456') arr[0] = arr[5] = 0 arr[3] = arr[-2] print(arr)
023450
[0, '2', '3', '5', '5', 0]
(0, '2', '3', '5', '5', 0)
Question 9
Tu = tuple('PrepI') aa, bb, cc, dd, ee = Tu bb = cc = '*' Tu = (aa, bb, cc, dd, ee) print(Tu)
('P', '*', '*', 'p', 'I')
('P', 'r', 'e', 'p', 'I')
PrepI
Question 10
Tuple = (3e-04, False, True, 8.12, 1.111, True) value = 0 for z in Tuple: value += int(z) print(value)
9.001
9
10
11
Please login to report