Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

please answer these true and false. make sure your answers are correct and I pro

ID: 3726581 • Letter: P

Question

please answer these true and false. make sure your answers are correct and I promise to give you a thumbs up

15) TRUE FALSE In an overloaded function, we must specify the argument data types (int, float, double, char) for each version of the function. 16) TR UE FALSE In a function template we can use arguments of type int, float, double char as long as they can be processed by the defined function template. 17) TRUE FALSE In a linked list we can insert a new node between the second and third nodes without reordering the rest of the nodes. 18) TRUE FALSE In a static array we can insert a new element with a new index between the second and third elements without reordering or changing the indices of the rest of the elements uT 2 DIT NIMBERS ON THE LINES 10 points

Explanation / Answer

15) The correct answer is True.
Explanation :
In a overloaded function, type of argument is also important to specify for
each version of overloaded function.
For example,
add(int,int);
add(float,int);
add(float,float);
are overloaded functions for different data types.

16)The correct answer is True.
Explanation : The function template ,we can use any data types as long as
they can be processed by the defined function template.

17)The correct answer is True
Explanation : In linked list , a node contains data part and address to next node.
So, to insert the data ,no need to order the remaining elements except the second and third
nodes.

18) The correct answer is False.
Explanation :
The elements in a array are stored in index based.
Starting from index,0 to size-1. If we want to insert an new element
between second and third elements,then the order the rest of elements
according to the array elements and size of the array.Otherwise
data will be lost in second and third positions.