What language does the code in this example represent
fib:
mov edx, [esp+8]
cmp edx, 0
ja @f
move ax, 0
What is Assembly language? |
What did Ada Byron mean when she said that the Analytical Engine could never “originate anything” |
What is A machine could not think? |
Which is a netiquette guideline |
What is Do not attempt to access the account of another user without authorization? |
What characteristic of electro-mechanical devices positively impacted their success |
What is Electricity use? |
Statement best describes why the binary system is one of the four numbering systems used in computers |
What is Computers can only process electronic pulses which are equivalent to on and off pulses of electricity? |
Why were magnetic tapes used to replace punch cards in second generation computers |
What is Increased reliability? |
Using a program to record transactions, phone calls and other personal information is what type of ethical consideration |
What is Privacy? |
What is the hexadecimal number 1A in binary form |
What is 11010?
Why is documentation of programs important |
What is Programs may not make sense without proper documentation? |
Which expresses the step-by-step instructions of an algorithm by using keywords, while depicting logical groupings or structures using indentation |
What is Pseudocode? |
In flowchart symbols, which symbol shows the input/output |
What is Parallelogram?
In flowchart symbols, which symbol represents the start and the end process |
What is Ovals? |
What are the methods to show the steps to solve a problem |
What is Algorithm, flowcharts, pseudocode? |
Why is a comment used in Visual Basic |
What is Allows the programmer to add documentation to a program? |
Which design approach should be considered when several programs all require similar functionality |
What is Object-oriented? |
The programming process begins with a meeting between the programmer and the client. Which of the following activities would be the third activity in the programming process |
What is Write the program? |
Why is a flowchart used to design a programming solution |
What is To minimize logic errors by graphically showing steps in the solution? |
In flowchart symbols, which symbol is used to show decisions |
What is a Diamond? |
Which is not an expectation for commenting |
What is Comment every line? |
The text below is an example of what |
What is Algorithm for walking from school to home? |
The purpose of the Use Case is to: |
What is define the interaction between the user and the program? |
Which step should not be taken when planning an application |
What is Code the user interface? |
In flowchart symbols, which symbol is used to show processes |
What is Rectangle?
What is a set of steps that create an ordered approach to a problem solution called |
What is Algorithm?
How do algorithms and cooking recipes compare |
What is Both are sequences of instructions? |