問題一覧
1
the code includes an array
true
2
the first loop is used for dealing with array
False
3
let arr[2], the index of arr will be 0,1,2
False
4
the starting intial value for the first loop is 1
True
5
the number of iterations is 2
False
6
the index of array starts with 1
False
7
the type of array does not take the types of variable
False
8
to use tabs in code, we use keyword " endl
False
9
the first if statement in the code includes two condtion
True
10
to print elements of arr[2] must include loop
True
11
the loop uses j variable is used to print iteration
False
12
cin>>arr[j]; means print the elelments of array on the screen
False
13
the result of first condtion is false
True
14
True
15
the datatype of array in the previous code is
int
16
to print tab, we use
"\t"
17
to use more condtion in the code, we use
else if
18
the first loop is used to print
please, insert each number of array
19
let arr[2]={9,4}, the arr[0] equals
9
20
let arr[2]={7,11}, the arr[1] equals
11
21
let arr[2]={7,11}, the arr[1] %arr[0] is
11%7
22
let arr[2]={7,11}, the arr[1] is
11
23
max number of loop for an array is
2
24
the inserted numbers in the second iteration in the previous code are
9,5
25
the printed statement in third iteration after the condition true
the reminder is 1 in iteration 3
26
in the previous code, let arr[4] in the declaration stage, the index will be
3,2,1,0
27
in the previous code, let arr[3] in declaration stage, the value of j in the end of second iteration is
2
28
in the previous code, the first part in the first if is
arr[0]%arr[1] ==0
29
in the previous code, the second part in the first if is
arr[0] == [1]