A(n) _________________ describes what an object can do.
Fill in the blank(s) with the appropriate word(s).
property
You might also like to view...
Let F be an algorithm with complexity function f(n), and let G be an algorithm with complexity function g(n). If the ratio f(n)/g(n) converges to 0 as n increases to infinity, then
A) the algorithm F is asymptotically faster than G B) the algorithm G is asymptotically faster than F C) the two algorithms are asymptotically equivalent in efficiency D) None of the above
In the ____ structure, instructions repeat based on a decision.
A. sequence B. selection C. loop D. flowchart
The ________ command divides a window into multiple panes
Fill in the blank(s) with correct word
if the following records are input, what is the value of NAME-ACCUM after the instructions corresponding to the pseudocode are executed?
Given the following pseudocode: ``` Start FINAL-ACCUM = 0 NAME-ACCUM = 0 Read NAME, AMT SAVE-NAME = NAME DOWHILE not EOF IF NAME ? SAVE-NAME THEN Write NAME-ACCUM FINAL-ACCUM = FINAL-ACCUM + NAME-ACCUM SAVE-NAME = NAME (ELSE) ENDIF Write NAME, AMT NAME-ACCUM = NAME-ACCUM + AMT Read NAME, AMT ENDDO Stop ``` John 20.00 John 30.00 Mary 10.00 Sue 50.00 a) 10 b) 50 c) 60 d) 110