array

array

1st - 5th Grade

15 Qs

quiz-placeholder

Similar activities

Устройство компьютера

Устройство компьютера

5th Grade

15 Qs

Визуализация информации в текстовых документах

Визуализация информации в текстовых документах

5th Grade

10 Qs

Pascal. Массивы

Pascal. Массивы

1st Grade

11 Qs

Информатика 9 класс Одномерный массив

Информатика 9 класс Одномерный массив

1st - 3rd Grade

10 Qs

9 сынып python

9 сынып python

1st Grade

10 Qs

Бірөлшемді массив (Ғазиз)

Бірөлшемді массив (Ғазиз)

5th Grade

20 Qs

Графы Все темы

Графы Все темы

KG - 3rd Grade

15 Qs

Екіөлшемді массив

Екіөлшемді массив

1st Grade

10 Qs

array

array

Assessment

Quiz

Computers

1st - 5th Grade

Hard

Created by

Мадина Аскарова

Used 23+ times

FREE Resource

15 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Какими способами можно заполнить массив?

ввод с клавиатуры

по формуле

случайным образом

все варианты

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Целочисленный массив в Си обозначается:

int array [5];

float array [6];

А: array [1..5] of integer;

double array [6];

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image
What is returned by values[5]?
9
12
6
8

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

For the array:
float stats[3];
What is the range of the index?
0 to 3
0 to 2
1 to 3
0 to 4

5.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

What is the output of C Program?

int main() {

int a[] = {1,2,3,4};

int b[4] = {5,6,7,8};

printf("%d,%d", a[0], b[0]);

}

1,5

2,6

0,0

Error

6.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

What is the output of C Program?

int main() {

int a[3] = {10,12,14};

a[1]=20;

int i=0;

while(i<3)

{ printf("%d ", a[i]);

i++; }

}

20 12 14

10 20 14

10 12 20

Error

7.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

What is the output of C program?

int main() {

int a[3] = {10,12,14};

int i=0;

while(i<3)

{ printf("%d ", i[a]);

i++; }

}

14 12 10

10 10 10

10 12 14

None

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?