Google IT Automation with Python Professional Certificate • STUDY MODE
SIMPLE TESTS
QUESTION 1 OF 7
You can verify that software code behaves correctly using test ___.
Awesome! The software code should behave the way you expect with as many possible values or test cases.
A
Loops
B
Arguments
C
CasesCorrect Answer
D
Functions
QUESTION 2 OF 7
What is the most basic way of testing a script?
Right on! The most basic way of testing a script is to use different parameters and get the expected results.
A
Codifying tests into the software.
B
Different parameters with expected results.Correct Answer
C
Let a bug slip through.
D
Write code to do the tests.
QUESTION 3 OF 7
When a test is codified into its own software, what kind of test is it?
Nice job! Codifying tests into its own software and code that can be run to verify that our programs do what we expect them to do is automatic testing.
A
Unit test
B
Integration test
C
Automatic testCorrect Answer
D
Sanity testing
QUESTION 4 OF 7
Using _____ simplifies the testing process, allowing us to verify the program)s behavior repeatedly with many possible values.
Great work! Test cases automatically test with a range of possible values to verify the program’s behavior.
A
integration tests
B
test casesCorrect Answer
C
test-driven development
D
interpreter
QUESTION 5 OF 7
The more complex our code becomes, the more value the use of _____ provides in managing errors.
Awesome! Software testing is the process of evaluating computer code to determine whether or not it does what you expect it to do, and the more complex the code, the more likely failure is.
A
loops
B
functions
C
parameters
D
software testingCorrect Answer
QUESTION 6 OF 7
When you test software, what are you really looking for?
Right on! You want to find errors and defects when testing software.
A
Loops
B
Conditionals
C
Modules
D
DefectsCorrect Answer
QUESTION 7 OF 7
The advantage of running automated tests is that they will always get the same expected ___ if the software code is good.
Way to go! Automatic tests will always get the same expected result if the software code is good.
A
Command line arguments
B
Interpreters
C
ResultsCorrect Answer
D
Parameters
Ready to test your recall?
You can verify that software code behaves correctly using test ___.
Awesome! The software code should behave the way you expect with as many possible values or test cases.