McqMate
Sign In
Hamberger menu
McqMate
Sign in
Sign up
Home
Forum
Search
Ask a Question
Sign In
McqMate Copyright © 2025
→
Computer Science Engineering (CSE)
→
Data Structure and Algorithms (DSA)
→
The most significant bit is lost in foll...
Q.
The most significant bit is lost in following operation
A.
<<
B.
>>
C.
&
D.
/
Answer» A. <<
933
0
Do you find this helpful?
2
View all MCQs in
Data Structure and Algorithms (DSA)
Discussion
No comments yet
Login to comment
Related MCQs
________ is a list in which the order of the items is significant, and the items are not necessarily sorted.
Consider an implementation of unsorted singly linked list. Suppose it has its representation with a head and tail pointer. Given the representation, which of the following operation can be implemented in O(1) time? i) Insertion at the front of the linked list ii) Insertion at the end of the linked list iii) Deletion of the front node of the linked list iv) Deletion of the last node of the linked lis
Consider an implementation of unsorted singly linked list. Suppose it has its representation with a head pointer only. Given the representation, which of the following operation can be implemented in O(1) time? i) Insertion at the front of the linked list ii) Insertion at the end of the linked list iii) Deletion of the front node of the linked list iv) Deletion of the last node of the linked list
Consider an implementation of unsorted doubly linked list. Suppose it has its representation with a head pointer and tail pointer. Given the representation, which of the following operation can be implemented in O(1) time? i) Insertion at the front of the linked list ii) Insertion at the end of the linked list iii) Deletion of the front node of the linked list iv) Deletion of the end node of the linked list
_________ operation of word processing involves replacing one string in the text by another.
_______ refers to the operation of finding the location of a given item in a collection of items.
The operation of processing each element in the list is known as
You want to check whether a given set of items is sorted. Which of the following sorting methods will be most efficient if it is already in sorted order?
Which of the following sorting methods would be most suitable for sorting a list which is almost sorted
Consider the following definition in c programming language struct node { int data; struct node * next; } typedef struct node NODE; NODE *ptr; Which of the following c code is used to create new node?