
Làm việc với dãy số
Quiz by Ngoc Nguyen
Feel free to use or edit a copy
includes Teacher and Student dashboards
Measure skillsfrom any curriculum
Measure skills
from any curriculum
Tag the questions with any skills you have. Your dashboard will track each student's mastery of each skill.
With a free account, teachers can
- edit the questions
- save a copy for later
- start a class game
- automatically assign follow-up activities based on students’ scores
- assign as homework
- share a link with colleagues
- print as a bubble sheet
9 questions
Show answers
- Q1Số phần tử trong khai báo Var tuoi:array [12..80] of integer; là bao nhiêu?7080696820s
- Q2Cú pháp khai báo dãy số nào sau đây là đúng nhất?Var <tên dãy số> : [<chỉ số đầu> .. <chỉ số cuối>] for <kiểu dữ liệu>;Var <tên dãy số> : [<chỉ số cuối> .. <chỉ số đầu>] of <kiểu dữ liệu>;Var <tên dãy số> : [<chỉ số cuối> : <chỉ số đầu>] of <kiểu dữ liệu>;Var <tên dãy số> : [<chỉ số đầu> .. <chỉ số cuối>] of <kiểu dữ liệu>;20s
- Q3Khai báo mảng nào là đúng trong các khai báo sau đây?var tuoi : array [1..15] of integer;var tuoi : array [1.5..10.5] of integer;var tuoi : array [1..15] of real;var tuoi : [1...15] of integer;20s
- Q4Để nhập dữ liệu từ bàn phím cho mảng A có 10 phần tử là số nguyên ta dùng lệnh nào sau đây?For i:=1 to 10 do Writeln (A[i]);Dùng 10 lệnh Readln (A)For i:=10 to 1 do Readln (A[i]);For i:=1 to 10 do Readln (A[i]);20s
- Q5Các cách nhập dữ liệu cho biến mảng sau, cách nhập nào không hợp lệ?readln (chieucao[i]);read (dayso[9]);readln (chieucao5);readln (B[1]);20s
- Q6Cách khai báo biến mảng sau đây là đúng?Var X: Array [10..1] of integer;Var X: Array [3..4.8] of integer;Var X : Array [4..10] of Real;var X: Array [10,13] of Real;20s
- Q7Để in giá trị phần tử thứ 200 của mảng một chiều A ra màn hình ta viết:Readln (A[200]);Write (A[200]);Write (A(200));Write [A(200)];20s
- Q8Cú pháp để truy cập đến giá trị phần tử trong mảng là:<tên mảng> . [chỉ số]<tên mảng> {chỉ số}<tên mảng>[chỉ số]<tên mảng>=[chỉ số]20s
- Q9Các phần tử trong mảng một chiều phải:Có kiểu dữ liệu giống nhauLà số nguyênLà số thựcGiống hệt nhau20s