Question 11 Mark______________ is an application of stack which is used to convert arithmetic expression to binary language.AnswerPolish StringsView full question & answer→
Question 21 Mark_____________ searching techniques works on unsorted elements.AnswerLinearView full question & answer→
Question 31 MarkQueue implemented in __________________ manner.AnswerFIFOView full question & answer→
Question 41 MarkStack implemented in __________________ manner.AnswerLIFOView full question & answer→
Question 51 Mark_______________ is a situation when there is no element left and still wish to remove element.AnswerUnderflowView full question & answer→
Question 61 Mark_______________ method accepts the index number as parameter and removes that item from the list.AnswerPop()View full question & answer→
Question 71 Mark_______________ method searches the given element(as a argument) and remove the first matching element.Answer(Remove())View full question & answer→
Question 81 Marklist.insert(4,12). ______ is index value and ______ is element.Answer4, 12View full question & answer→
Question 91 Mark______________ method accepts two arguments (index,element). If the index is more than the size, then it will insert at the end.AnswerInsert()View full question & answer→