Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Python. Thank you :) 1. What is modular programming? a. Modular programming means making programs as small as possible. b. Modular programming means breaking large
Python. Thank you :)
1. What is modular programming? a. Modular programming means making programs as small as possible. b. Modular programming means breaking large programming tasks into smaller tasks called "modules". c. Modular programming means creating functions to improve modularity. d. None of the above 3. Which code for importing a module requires the use of the full module name and "dot notation"? a. import module_name as mod b. import module_name c. from module_name import * d. from module_name import function_name 4. Which code for importing a module allows you to import a specific function from the module? a. import module_name as mod b. import module_name c. from module_name import * d. from module_name import function_name 5. Which code for importing a module allows you to import all functions and variables included in the module into the local namespace/symbol table? a. import module_name as mod b. import module_name c. from module_name import * d. from module_name import function_name 7. Which of the following does NOT describe unit testing? a. Independently and individually evaluating the smallest parts of an application b. First level of software testing performed before any other testing c. Isolated written code and determine if it works as it should d. Quality assurance for the largest most complex part of your code 8. What of the following is NOT one of the three stages of developing a unit test? a. Deleting the code b. Testing the code c. Making test cases and scripts d. Prepping and reviewing the unit to be tested 9. What is an assertion statement? a. An assertion checks that components in the application communicate correctly b. An assertion makes a list of the features in the application c. An assertion will uncover every bug that exists in code being tested d. An assertion validates the output against the expected output e. None of the above 10. Which of the following is NOT a benefit of Unit testing? a. Developers can re-use code and migrate it to new projects b. Helps identify code issues later in the development process c. Debugging processes are made easier d. Developers can quickly change the code baseStep by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started