SCRIPTING PA AND OA EXAM BANK
2025/2026 | ACCURATE REAL EXAM
WITH 600 QUESTIONS TESTING
VERSIONS AND A STUDY GUIDE |
EXPERT VERIFIED FOR GUARANTEED
PASS
What does the following algorithm accomplish?
x = Get next input
if x == -1
Put "Goodbye" to output
A Outputs -1 when user types any input
B Outputs "x" when user types -1
C Outputs -1 when x is positive
D Outputs Goodbye when user types -1 - ....ANSWER...D
,What does an output of 1 indicate for the following
algorithm running on a five-element list of integers?
i=0
x=0
while i < 5
if list[i] < 0
x=1
i=i+1
Put x to output
A All integers are positive.
B All integers are negative.
C At least one integer is negative.
D At least one integer is positive. - ....ANSWER...C
When should a programmer develop an algorithm to solve
a problem?
,A Before knowing the problem
B Before writing a program to solve the problem
C While writing a program to solve the problem
D After writing a program to solve the problem -
....ANSWER...B
Which text represents an algorithm?
A Cats and dogs have tails.
B Insert key, turn key, open door.
C The forecast for tomorrow is rain.
D A box has balls, bats, and hats. - ....ANSWER...B
Which text represents an algorithm?
A Shake bulb; if it rattles, replace it.
B Water is wet; fire is not wet.
C Staring at the sun hurts the eyes.
D The max speed is 60 mph. - ....ANSWER...A
, An algorithm should output "OK" if a list's numbers are
all non-zero, else the output is "Not OK."
Which test is a valid test of the algorithm?
A Input 0, 0, 0. Ensure output is "OK."
B Input 5, 4, 0. Ensure output is "OK."
C Input -3, -2, 5. Ensure output is "Not OK."
D Input 99, 0, 5. Ensure output is "Not OK." -
....ANSWER...D
What is put to output by the following flowchart, if the
input is 17?
A Too young
B OK
C Too old
D Nothing is put to output. - ....ANSWER...B
What is put to output by the following flowchart, if the
input is 3 5 -1?