What data collection type is calc_dB after the following code segment is executed: import math def dB(P1, P2): return {10 * math.log10(P1/P2), P1, P2} calc_dB = dB(10,5)
a) Float
b) Set
c) Tuple
d) List