(a)
sum = 0
for row from 0 TO 7
for col from 0 TO 5
sum = sum + X[row][col]
end for
end for
return "Sum of all integers: " + sum
(b)
sum = 0
count = 0
for row from 0 TO 7
for col from 0 TO 5
sum = sum + X[row][col]
count = count + 1
end for
end for
average = sum / count
return "Average of all integers: " + average
(a) A queue follows the First In, First Out (FIFO) principle, ensuring that the first patient to check in is the first one to be processed. This guarantees fairness in the order of check-ins and prevents newer patients from skipping ahead. Using a queue maintains an organized and predictable system.
(b) A stack follows the Last In, First Out (LIFO) principle, meaning the last patient to check in would be processed first. This is unfair to earlier patients, as newer arrivals would be treated before those who have been waiting longer. In real-world scenarios like hospital queues, a FIFO structure (queue) ensures fairness.
(c)
NUM | SUM | Output |
---|---|---|
5 | ||
4 | ||
3 | ||
2 | ||
1 | ||
1 | ||
2 | 3 | |
3 | 6 | |
4 | 10 | |
5 | 15 | 15 |
(d) A recursive function relies on the concept of function calls being stored in a call stack. Each recursive call pushes a new function instance onto the stack. When a base case is reached, the function calls are popped from the stack in reverse order.
(a)
COUNT = 0 FOR i FROM 0 TO 749 IF EMPLOYEES[i][2] = "Finance" THEN COUNT = COUNT + 1 ENDIF ENDFOR OUTPUT "Number of employees in Finance: ", COUNT
(b)
FOR i FROM 0 TO 749 DO IF EMPLOYEES[i][3] = "Manager" AND EMPLOYEES[i][5] = "New York" THEN OUTPUT EMPLOYEES[i][1], EMPLOYEES[i][0] OUTPUT EMPLOYEES[i][3] OUTPUT EMPLOYEES[i][2] OUTPUT EMPLOYEES[i][4] OUTPUT EMPLOYEES[i][5] OUTPUT EMPLOYEES[i][6] ENDIF ENDFOR
(c)
2 | 3 | 7 | 0 | 1 | 9 |
1 | 5 | 9 | 4 | 3 | 2 |
9 | 0 | 4 | 6 | 2 | 4 |
. | . | . | . | . | . |
. | . | . | . | . | . |
7 | 7 | 6 | 9 | 0 | 3 |
NUM = 5
loop while NUM > 0
stack.push(NUM)
NUM = NUM - 1
end loop
SUM = 0
loop while not stack.isEmpty()
NUM = stack.pop()
SUM = SUM + NUM
end loop
output SUM
NUM | SUM | Output |
---|---|---|
5 |
FIRSTNAME LASTNAME JOB_TITLE DEPARTMENT OFFICE CITY EMPLOYEE_ID