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