Complete the code to calculate the basic COCOMO effort estimation formula.
effort = a * (KLOC [1] b)The COCOMO basic effort estimation formula uses exponentiation of KLOC by b, so '**' is the correct operator.
Complete the code to calculate development time (TDEV) in the COCOMO model.
TDEV = c * (effort [1] d)Development time is calculated by raising effort to the power of d, so '**' is correct.
Fix the error in the COCOMO effort calculation code.
effort = a * (KLOC [1] b)The error is using '*' instead of '**' for exponentiation. The correct operator is '**'.
Fill both blanks to complete the COCOMO effort and time formulas.
effort = a * (KLOC [1] b) TDEV = c * (effort [2] d)
Both formulas require exponentiation '**' for the power operations.
Fill all three blanks to create a dictionary comprehension for COCOMO effort multipliers.
effort_multipliers = {factor: rating[1]1.0 for factor, rating in ratings.items() if rating [2] [3]The comprehension multiplies ratings, filtering those greater than 3.