a) itemtype
b) relevant types
c) itemscope
d) itemref
Answer: c
Explanation: “itemtype” attribute specifies URL that is used to provide item’s data in data structure. An element with the itemscope attribute specified creates a new item, a group of name-value pairs.
Related Posts
What is the functionality of the following piece of code?
public int function()
{
Node temp = tail.getPrev();
tail.setPrev(temp.getPrev());
temp.getPrev().setNext(tail);
size–;
return temp.getItem();
}What is the worst case time complexity of inserting a node in a doubly linked list?
How do you calculate the pointer difference in a memory efficient double linked list?
What is a memory efficient double linked list?
Which of the following is false about a doubly linked list?
Which of these is not an application of a linked list?
What is the space complexity for deleting a linked list?
Join The Discussion