下列选项中的程序在运行时会引发异常的是?( )
a=4*0.5print(a)
import mathb=math.sqrt(4)print(b)
C=(-4)*0.5print(c)
import math d=math.sqrt(-)print(d)