What is rhe answer of these questions? When creating a linked list, you need to
ID: 3819680 • Letter: W
Question
What is rhe answer of these questions? When creating a linked list, you need to define a struct that has a data item and a pointer to the next node. [T/F] If you are printing a linked list, you initialize a pointer to point at head then move this pointer until the pointer is null. [T/F] A recursion is defined as two parts, a recursive call and an array of pointers. [T/F] A string is nothing but an array of characters with no added special characters in the end. [T/F] A linked list is a group of nodes that are dynamically allocated. [T/F]Explanation / Answer
1. true
While creating a link list we need to define struct that has data items and pointer to the next node.
2. true
3. false
4. true