Массивы C++

Массивы C++

10th - 11th Grade

12 Qs

quiz-placeholder

Similar activities

Area and Arrays

Area and Arrays

10th - 12th Grade

15 Qs

Java Basics (Data Types and Variables)

Java Basics (Data Types and Variables)

6th - 10th Grade

16 Qs

Java Arrays Quiz Review

Java Arrays Quiz Review

9th - 10th Grade

10 Qs

Java Basic Data Structures

Java Basic Data Structures

6th - 10th Grade

15 Qs

CSA Unit 3 Review

CSA Unit 3 Review

10th - 12th Grade

16 Qs

Kuis Percabangan dan Perulangan

Kuis Percabangan dan Perulangan

10th Grade

10 Qs

C++ - Loops and Random Numbers

C++ - Loops and Random Numbers

9th - 12th Grade

14 Qs

CWA Java 3

CWA Java 3

11th - 12th Grade

8 Qs

Массивы C++

Массивы C++

Assessment

Quiz

Computers

10th - 11th Grade

Medium

Created by

Анна Масолова

Used 9+ times

FREE Resource

12 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Дан отрывок программы:

int mass[5] {6, 7, 2, 9, 1};

cout << mass[3];

Что выведет программа?

7

2

9

1

2.

FILL IN THE BLANK QUESTION

45 sec • 1 pt

Заполните пропуск:

... - это порядковый номер элемента в массиве.

Ответ запишите заглавными буквами.

3.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Дан отрывок программы:

int mass[6] {6, 7, 2, 9, 1};

cout << mass[5];

Что выведет программа?

0

ошибка

9

1

4.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Как объявить массив целых чисел в C++?

array int[];

int[] array;

int array[];

5.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Выберите вариант, где цикл для перебора элементов массива, состоящего из 10 элементов, записан верно

for (int i = 1; i < 10; i++)

for (int i = 0; i < 10; i++)

for (int i = 0; i < 11; i++)

for (i = 0; i <= 10; i++)

6.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Как объявить массив с плавающей точкой в C++?

float array[];

array float[];

float[] array;

7.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Будет ли выведена ошибка при выполнении данного фрагмента программы?

int v = 0;

int mass[5] {1, 6, 3, 5, 9};

for (int i = 0; i < 5; i++){

if (mass[i+1] > mass[i])

v++; }

Да

Нет

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?