1) var a,b:array[1..100] of byte; … j:=1; for i:=1 to n do if a[i] mod 5 = 0 then begin b[j]:=a[i]; j:=j+1; end; A. Bao gồm các phần tử của mảng a B. Bao gồm các phần tử chia hết cho 5 trong mảng a C. Bao gồm các phần tử chia hết cho 5 D. Bao gồm các phần tử trong mảng a 2) ar a:array[1..3] of byte; i:byte; Begin For i:=1 to 3 do a[i]:=i; For i:=1 to 3 do If a[i] mod 2 = 0 then Write(a[i]); End. A. 1 B. 2 C. 3 D. 1 2 3 3) ar a:array[1..100] of byte; i,f,d:byte; begin for i:=1 to 100 do a[i]:=i; d:=a[2]-a[1]; for i:=2 to 100 do if a[i]=a[i-1]+d then f:=1 else f:=0; write(f); readln End. A. 0 B. 1 C. 100 số 0 D. 100 số 1

2 câu trả lời

1) var a,b:array[1..100] of byte;
j:=1;

for i:=1 to n do if a[i] mod 5 = 0 then
begin 
b[j]:=a[i];
j:=j+1; 
end;
A. Bao gồm các phần tử của mảng a
B. Bao gồm các phần tử chia hết cho 5 trong mảng a
C. Bao gồm các phần tử chia hết cho 5 => a[i] chia hết cho 5 thì b[j] := a[i] => mảng b cũng bao gồm phần tử chia hết cho 5
D. Bao gồm các phần tử trong mảng a
2) var a:array[1..3] of byte;

    i:byte;
Begin
For i:=1 to 3 do a[i]:=i;
For i:=1 to 3 do
If a[i] mod 2 = 0 then Write(a[i]);
End. 


A. 1
B. 2 => i từ 1 đến 3 => i = 2 => a[2] = 2 mod 2 = 0 
C. 3
D. 1 2 3
3) var a:array[1..100] of byte; 
i,f,d:byte;
begin
for i:=1 to 100 do a[i]:=i;
d:=a[2]-a[1];
for i:=2 to 100 do if a[i]=a[i-1]+d then f:=1 else f:=0;
write(f);
readln
End.

=> a[1] = 1; a[2] = 2, .....

=> d := 2 - 1 = 1

=> a[2] = a[2 - 1] + d <=> 2 = a[1] + 1 <=> 2 = 1 + 1 => Đúng => f = 1
A. 0
B. 1
C. 100 số 0
D. 100 số 1

1) var a,b:array[1..100] of byte;

j:=1;
for i:=1 to n do if a[i] mod 5 = 0 then
 begin 
b[j]:=a[i];
j:=j+1; 
end;
C. Bao gồm các phần tử chia hết cho 5
2) 
ar a:array[1..3] of byte; i:byte;
 Begin
 For i:=1 to 3 do a[i]:=i;
 For i:=1 to 3 do
 If a[i] mod 2 = 0 then Write(a[i]);
End. 
B. 2
3) 
ar a:array[1..100] of byte; 
i,f,d:byte;
begin
 for i:=1 to 100 do a[i]:=i;
 d:=a[2]-a[1];
 for i:=2 to 100 do if a[i]=a[i-1]+d then f:=1 else f:=0;
 write(f);
readln
End.
B. 1
Giải thích(dưới ảnh) 

Câu hỏi trong lớp Xem thêm
5 lượt xem
2 đáp án
22 giờ trước

giup e voi I/ Supply the correct form of the verbs in brackets 1. You (think) ……………………… collecting stamps costs much money? 2. Every year, my mother (give) ……………………… me a nice doll on my birthday. 3. Jenny says she loves collecting pens but she (not/continue) ……………………… this hobby from next year. 4. If you wash your hands more, you (have)……………………. less chance of catching flu. 5. Getting plenty of rest is very good. It (help)…………………. you to avoid depression. 6. Mr. John (be) ……………………… principal of our school since last year. 7. I (see) ……………………… a car accident on this corner yesterday. 8. We like (come)……………………to school by bus, but we hate (stand)………………………. and (wait) …………………… in the rain. 9. ……………………… (you/ ever/ meet) anyone famous? 10. My mother (come) ……………………… to stay with us next weekend. 11. When he lived in Manchester, he (work) ……………………… in a bank. 12. We (be) ……………………… students for four years. 13. We are planting trees around our school now. Our school (be) ……………………… surrounded by a lot of green trees. 14. What ……………………… your father usually ……………………… (do) in the evenings? 15. My sister likes (cook) ……………………… very much. She can cook many good foods. 16. My father says when he's retired, he (go) …………………… back to his village to do the gardening. 17. They want (buy) ……………………… some meat for dinner. 18. Linh is my best friend. We (know) ……………………… each other for 5 years. 19. I enjoy (fish) ……………………… because it is relaxing. 20. How about (go) ……………………… to the movie theatre?

3 lượt xem
1 đáp án
1 ngày trước