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