List manipulation
Class XI Computer Science
Sign in to Google to save your progress. Learn more
Email *
 Which of the following is not a list?
Clear selection
Which of the following is an example of nested list?
Clear selection
Which operator is used for output of Fveg if                   Fruits = [“Apple”,”Orange”,”Banana”] and                                    Veg = [“Lady Finger”,”Brinjal”,”Potato”]                                        Fveg= [“Apple”,”Orange”,”Banana”, “Lady Finger”,”Brinjal”,”Potato”]
Clear selection
 which is correct if :Val = [10,20,30,40,50,60,70,80,90]              Print(val[0:3])
Clear selection
which is correct if :Val = [10,20,30,40,50,60,70,80,90] Print(val[2:9:3])
Clear selection
which is correct if :Val = [10,20,30,40,50,60,70,80,90] Print(val[::-2])
Clear selection
which is correct if :items = [10,20,30] one  extra element  40 is to be added and result is [10,20,30,40] which method is executed.
Clear selection
which is correct output                                                                                   :subject1=["physics","chemistry","cs"]                                   subject2=["english","maths"]     subject1.extend(subject2)                                              print(subject1)
Clear selection
which is correct output :                                                                     L1=[10,20,30,40,50]                                          L1.insert(3,35)                                                                                                                 Print(L1)
Clear selection
which is correct output :                                                                       Lst= [1,2,3]                                                                              lst.remove(34)                                                                               print(lst
Clear selection
Submit
Clear form
This content is neither created nor endorsed by Google. Report Abuse - Terms of Service - Privacy Policy