Q22
Single choice
A data engineer has written a function in a Databricks Notebook to calculate the population of bacteria in a given medium.
def calculate_population_of_bacteria (intital_population, exponential_factor):
return future_population = intital_population ** exponential_factor
Analysts use this function in the notebook and sometimes provide input arguments of the wrong data type, which can cause errors during execution.
Which Databricks feature will help the data engineer quickly identify if an incorrect data type has been provided as input?