a) Sequence
b) Remote link
c) Database link
d) Data link
Answer: d
Explanation: A database link (DBlink) is a definition of how to establish a connection from one Oracle database to another.
Related Posts
Which of the following points is/are not true about Linked List data structure when it is compared with an array?
Linked list data structure offers considerable saving in _____________
In Linked List implementation, a node carries information regarding ___________
Linked list is considered as an example of ___________ type of memory allocation.
Linked lists are not suitable for the implementation of ___________
What kind of linked list is best to answer questions like “What is the item at position n?”
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?
Join The Discussion