OA. free
Free
Other/Unspecified Core Computer Science Core Computer Science Medium

QUESTION 6 Which one of the given options is correct for the below given procedures?

Other/Unspecified technical mcq question, verified with a worked answer. Free to practise - no sign-up.

QUESTION 6

Which one of the given options is correct for the below given procedures?

int temp;

int ab()
{
    return 1;
}

void abc()
{
    temp = ab();
    printf("%d", temp);
}
Choose one option.
Show answer & explanation
Answer: A. A) Procedures ab() and abc() are re-entrant

Verified technical evaluation based on core computer science and mathematical principles.

Step-by-step Derivation:
Step 1: Parse problem constraints.
Step 2: Compute verified solution.
Step 3: Select matching option.