【多选题】伽利略通过望远镜观测星空,他做出了哪些发现?()
【多选题】下列各项费用中 , 属于销售费用中的有 _____ 。
【单选题】Array is ______ data type in C Programming language.
【简答题】有数组 int array[10]={2,3,6,8,1,7,9,0,-2,43}; int num1=5; int num2=3; int num3=array[num1]+array[num2-1]; num3的值等于______。
【多选题】.下列各项费用中属于销售费用的有( )。
【单选题】data=np.array([1.2,3.0,1.6]) data.floor(a) 该程序运行的结果是?
【单选题】9 Questions 9 to 12 are based on the conversation you have just heard.
A.
Whether zoos are good for animals or not.
B.
Whether they should go to the zoo this Saturday.
C.
Whether wild animals should be rescued or not.
D.
Whether a polar bear should live in California.
【单选题】data:{ array: [{ num: '001' , name: 'zhangsan' }, { num: '002' , name: 'lisi' }] }, 以上代码作用是 指定页面的初始数据,请问代码可能取自哪个文件?
【单选题】Assume an array is declared as follows. Which of the following statements correctly assigns the value 100 to each of the four array elements? int[] num = new int[4];
A.
for(x = 0; x < 3; x++) num[x]=100;
B.
for(x = 0; x < 4; x++) num[x]=100;
C.
for(x = 1; x < 4; x++) num[x]=100;
D.
for(x = 1; x < 5; x++) num[x]=100;