Preview

07 - Practice Test

 1. Machine code is used in which generation of a programming language?

  1st Generation

  4th Generation

  3rd Generation

  2nd Generation

 2. Which language translator is needed for the 1st generation?

  No Translator

  An interpreter

  A basic translator (IBM)

  An assembler

 3. Which generation would create the fastest code to execute?

  2nd Generation

  1st Generation

  3rd Generation

  4th Generation

 4. An advantage of low level languages is that:

  it produces great big programs that are complex and difficult to manage

  it produces programs of a relatively smaller file size

  None of the above

  it produces complex large files that are robust and useful for the programmer

 5. An advantage of a high level language is that:

  It is easier to understand (by a programmer)

  None of the above

  It is useful for device drivers

  It is closer to the machine and machine code

 6. Low level languages are said to have a one to many relationship with high level languages

  FALSE

  TRUE

 7. The Little Man Computer is a very simple yet powerful ….
This is a great introductory video to LMC - have a watch if you are able.

  model of a spacecraft of the future

  model of the monitor of a computer

   model of a computer!

  model of a printer

 8. Read the excerpt on LMC and fill in the blanks
LMC is a simulator which has many of the basic features of a 
modern computer that uses the __________________________ (a central 
processing unit consisting of an arithmetic logic unit and
registers, a control unit containing an instruction register 
and program counter, input and output mechanisms and RAM to 
store both data and instructions).

  None of the above

  Cartal model of computers

  Von Neumann architecture

  spatial awareness meter

 9. The LMC is based on the idea of a 'Little Man' acting like the control unit of a CPU, _________________ them as well as managing the input and output mechanisms.

  fetching instructions from RAM, decoding and executing

  None of the above

  catching 1s and 0s as they pass through the computery ether and making

  riding through metaphorical hills and valleys and enjoying

 10. The 100 memory addresses in the computer memory are numbered 0 to 99 and can each contain a________________ instruction or data.

  C code

  machine code

  python code

  gentrified code

 11. Each assembly language instruction is made up of a 3 letter mnemonic usually followed by the memory address of the data the CPU is to act on

  FALSE

  TRUE

 12. One disadvantage or issue with assembly language is that the code only works on a specific CPU family. If you use a different CPU you would

  need to make a copy of your old CPU

  not need to rewrite the code at all

  need to re-write the code using a different version of assembly language

  None of the above

 13. The main advantage of assembly language is that it :

  is soft and cuddly, and therefore programmer's favourite

  runs slow compared to high level languages which makes it easy to follow

  is robust and hardy and cannot ever make a mistake (hence it's popular use in spacecraft)

  runs fast compared to programs written in a high level language as there is less code overall

 14. An example of a program that is typically written in assembly language is:

  a personal fitness app for Android

  a device driver

  a website for a government

  an online shop

 15. Device drivers need to be as ______________ as possible which is why assembly language is perfect

  slow and careful

  None of the above

  easily understandable in terms of the code

  fast and efficient

 16. Which of the following is NOT a typical assembly language command.
add
lock
subtract
load
compare
branch
store

  load

   lock

  add

  subtract

 17. An example of an assembly code mneumonic is LDA 50 which…

  adds the value 50 to the loaded value before it

  None of the above

  stores the value 50, fifty times into fifty registers in the CPU

  stores (loads) the value 50 into a register in the CPU

 18. In this example: LOAD 0004, it can be said that 'LOAD' is the opcode and the second part 0004 is the memory address

  FALSE

  TRUE

 19. In the command MOV AL 34h…the opcode is the __________ instruction and the other parts are called OPERANDS.

  34h part of the code

  None of the above

  MOV instruction

  AL instruction

 20. Operands are…

  little bits of beauty

  manipulated directly by a high level language command

  tiny bits that are used to code in assembly language

  manipulated by the opcode

 21. What does this LMC program do?
INP 
STA A 
INP 
STA B 
LDA A 
ADD B 
OUT 
HLT
A    DAT
b    DAT 
lmc_q1.gif

  takes in three numbers and stores them

  None of the above

  take in two numbers and stores them, displaying the first number

  adds two numbers and displays the sum

 22. This LMC program doesn't add or subtract. What does it do?
INP 
STA A 
INP 
STA B 
LDA A 
SUB B 
BRP isPositive
LDA B
OUT
HLT 
isPositive
LDA A 
HLT
A    DAT
B    DAT 

  sorts three numbers from smallest to largest

  loads two letters 'A' and 'B' and determines which one comes first

  finds out if an input number is positive or negative

  determines the bigger of two numbers by using loops

 23. The LMC can add or subtract numbers, but it can neither multiply nor divide. The multiplication can be carried out with the aid of ……..

  nothing - this cannot be done!

  subtraction!

  stubborn and persistent hard coding

  addition!

 24. Assembly language is written using:

  Mneumonics

  ASCII code

  None of the above

  Hex code

 25. Assembly language instructions like MOV or ADD are called operands

  TRUE

  FALSE