If we're talking about excel functions, A is your answer.
The COUNT function does exactly that (with modifications of it counting specific things e.g. COUNTA, COUNTIF, etc)
MIN returns the minimum value in the selected range.
SUM returns the sum of the values in the selected range.
ABS returns the absolute value of the selected cell.
I don’t understand please speak English
Answer:
Explanation:
The following code is written in Java. Both functions traverse the linkedlist, until it reaches the desired index and either returns that value or deletes it. If no value is found the function terminates.
public int GetNth(int index)
{
Node current = head;
int count = 0;
while (current != null)
{
if (count == index)
return current.data;
count++;
current = current.next;
}
assert (false);
return 0;
}
public int removeNth(int index)
{
Node current = head;
int count = 0;
while (current != null)
{
if (count == index)
return current.remove;
count++;
current = current.next;
}
assert (false);
return 0;
}
the answer is c, occupational safety and health act