In this code fragment, what will be the values of a and b?
a
b
import numpy as np a = np.arange(100) b = a[50:60:2]
a: all integers from 0 to 99 (inclusive); b: all even integers from 50 to 58 (inclusive).
a: all integers from 0 to 100 (inclusive); b: all even integers from 50 to 60 (inclusive).
a: all integers from 0 to 99 (inclusive); b: all even integers from 50 to 60 (inclusive).
a: all integers from 0 to 99 (inclusive); b: all odd integers from 49 to 59 (inclusive).