Preview

08 - Practice Test

 1. Describe what would happen when the code is translated if all the syntax errors were corrected by the logic errors were left unchanged.

  The code will stop at the logic errors and fail to run

  The code will translate and run with the logic errors

  The code will fail to run at all and revert back to the syntax errors

  None of the above

 2. A type of error caused by the code not following the ______________________________ of the programming language is a syntax error

  correct logic

  rules of grammar

  mathematical accuracy

  None of the above

 3. True or False: a Test plan should ideally take the user down all possible paths of the program to test it.

  FALSE

  TRUE

 4. A good test plan will only use normal data to test user input (e..g correct and acceptable data input only)

  TRUE

  FALSE

 5. When testing a program, how does the 'tester' know there is a problem?

  None of the above

  When the actual output does not meet the expected output or outcome

  When the syntax error speaks to the tester to provide a message

  When the expected outcome is the same as the actual outcome

 6. Identify the error in the following code:
def main():
    print("ADDITION PROGRAM")
    print("A + B =?")
    a=int(input("Enter number A:"))
    b=int(input("Enter number B:"))
    c=(a/b)
    print(c)
    print("....and there's your answer:",c)
    

main()
          
          

  A Runtime Error

  A Syntax Error

  A Logic Error

  A murderous Error

 7. What type of error is this?
    z = x / 0
ZeroDivisionError: division by zero

  A Logic Error

  A Runtime Error

  A Syntax Error

  A murderous Error

 8. Multiplying when you should be dividing is an example of a …

  A murderous Error

  A Runtime Error

  A Logic Error

  A Syntax Error

 9. Displaying the wrong message is an example of a …

  A Runtime Error

  A Syntax Error

  A Logic Error

  A murderous Error

 10. Trying to open a file that does not exist would cause a…

  A Runtime Error

  A murderous Error

  A Syntax Error

  A Logic Error

 11. Missing semi colons would be examples of a …

  A Runtime Error

  A murderous Error

  A Logic Error

  A Syntax Error

 12. Improperly matching brackets and /or curly braces would usually cause a ….

  Minch Error

  Logic Error

  Syntax Error

  Brace Error

 13. Most ______________ errors are quite subtle and are much harder to find and fix.

  Runtime

  Cartail

  Logic

  Syntax

 14. Use of a reserved word such as 'print' as a variable would cause an error.

  TRUE

  FALSE

 15. A programmer is trying to work out the no. of months in a year and writes this. What is the error?
MonthsInYear = 13
Average = Total / MonthsInYear

  A syntax error - you cannot use the number 13

  A logic error as you cannot use a variable called MonthsInYear

  A logic error - there are 12 months in a year

  A syntax error because the line Average =Total/MonthsInYear is incorrect

 16. It is usually the CPU and Assembly language that directly uncovers syntax errors

  TRUE

  FALSE

 17. A logic error is a bug in a program that

  allows it to run but causes it to do so with an incorrect outcome due to some logical inaccuracy

  is logically sound but has inaccurate syntax

  None of the above

  is logically correct but creates a logical issue within the compiler if syntax errors are present

 18. Data that falls outside of what is acceptable and should be rejected is called….

  Abnormal or Erroneous Data

  Acceptable Data

  None of the above

  Borderline Data

 19. A system has validation to ensure that only numerical values between 1 and 10 are entered as input. The borderline test data for this could be:

  1 and 10

  14

  All of the above

  3 and 4

 20. Data at the upper or lower limits of expectations that should be accepted is referred to as:

  Acceptable Data

  None of the above

  Abnormal or Erroneous Data

  Borderline Data

 21. An IDE's code editor will usually help with pointing out syntax errors - e.g. pointing out the line in which there is the error

  FALSE

  TRUE

 22. A code editor will always point out and fix a logic error, as these are obvious and crash the program on running it.

  TRUE

  FALSE

 23. The following code has no errors. Which of the following statements is correct?
Dim x As Integer
Dim y As Integer
Dim answer As Integer

x = 10.5
y = 3
answer = x * y
TextBox1.Text = answer

  There are no errors

  There are at least five logic errors

  There are two syntax errors and seven logic errors

  There are at least two syntax errors

 24. In the following python code, if the user enters 2 and 2, instead of 4, it will produce 22. This is a ….
first = input("Input the first number ")
second = input("Input the second number ")
print("The sum is",first+second)

  Major Error

  Syntax Error

  Logic Error

  Minor Error

 25. The simplest form of authentication could be:

  None of the above

  allowing all users to use the same username and password

  entering a passwod up to four million times

  entering a usernamd and password and checking it against a database of agreed user entries

 26. Authentication methods include :

  All of the above

  passwords send to phones

  patterns to recognise

  image scanners

 27. Authentication also occurs when you access a website, you request access to the ___________ which hosts the page.

  human being

  server

  validation routine

  physical location

 28. What is one example of where authentication is required?

  getting past the security guard at Microsoft

  network cables requiring clearning

  None of the above

  facebook login

 29. Maintainability is also important if a program is going to be robust. Two ways of ensuring maintainable programs is to have good:

  passwords and code syntax

  users and moral human beings

  databases and secure buildings

  comments and indentation

 30. Entry of a national insurance number may require validation of the following kind:

  format check

  validation authentication factor check

  None of the above

  virus check

 31. A white list is a list of data that the application will reject and a black list is a list of data that the application will accept as valid

  TRUE

  FALSE

 32. White lists and Blacklists are usually used within:

  software development companies

  python coding societies

  firewall applications

  operating systems

 33. Having evaluated the visual design of the software, the team must also focus on code structure. Ensuring m___________ and readability is important.

  marginality

  minimalism

  maintainability

  mixability

 34. There are generally three times of maintainance:
Corrective, Adaptive and Perfective

  FALSE

  TRUE

 35. This type of maintenance is necessary when the client needs the software to run on an environment other than the one that it was originally designed for

  adaptive

  perfective

  none of the above

  corrective

 36. This type of maintenance is concerned with altering the software to add new features or enhancements not originally requested in the software specification

  perfective

  corrective

  none of the above

  adaptive

 37. This is a formal document which details the tests to be performed on the software. It will describe the following:
Scope of Testing
The tests to be performed
The reason for each test
The data to be used in tests
The expected outcome of each test

  Alpha Test

  Binary Sheet

  Test Plan

  Beta Test

 38. This relates to the first round of testing. Before releasing new software on to the market, developers will test it in-house.

  Alpha Testing

  Final Testing

  Beta Testing

  Iterative Testing

 39. This refers to the second round of testing. The developers will trial the software with a limited number of users. The users report any problems to the developers.

  Alpha Testing

  Beta Testing

  Iterative Testing

  Final Testing

 40. Testing a program is essential because:

  All of the above

  it ensures that the appropriate validation has been used and will be appropriate for end users

  it ensures the program works correctly without errors

  it ensures the program meets the needs of the client