Which of the following statements is false or true?
```
1. struct node
f
struct node "prev;
int data;
struct node *next;
1/ This is the node representation for Singly Linear
Linked List in C language.
```
2. struct node
```
i
int data;
struct node *mext;
1/ This is the node representation for Doubly Linear
Linked List in C language.
```
A. Statement 1 is false and Statement 2 is true
B. Statement 2 is false and Statement 1 is true
C. Statements 1 and 2 are false
D. Statements 1 and 2 are true