Массивы C++

Quiz
•
Computers
•
10th - 11th Grade
•
Medium
Анна Масолова
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
Similar Resources on Wayground
10 questions
Programming

Quiz
•
1st - 10th Grade
10 questions
Arrays

Quiz
•
10th - 12th Grade
15 questions
Struktur Kontrol Perulangan, Array, dan Function (Bahasa C)

Quiz
•
10th Grade
15 questions
2D Arrays

Quiz
•
9th - 12th Grade
10 questions
Introduction to Arrays

Quiz
•
KG - University
10 questions
Arrays

Quiz
•
11th Grade
10 questions
Quiz Bahasa C++ 1

Quiz
•
9th - 12th Grade
14 questions
Exploring Computer Science

Quiz
•
10th - 12th Grade
Popular Resources on Wayground
10 questions
Lab Safety Procedures and Guidelines

Interactive video
•
6th - 10th Grade
10 questions
Nouns, nouns, nouns

Quiz
•
3rd Grade
10 questions
9/11 Experience and Reflections

Interactive video
•
10th - 12th Grade
25 questions
Multiplication Facts

Quiz
•
5th Grade
11 questions
All about me

Quiz
•
Professional Development
22 questions
Adding Integers

Quiz
•
6th Grade
15 questions
Subtracting Integers

Quiz
•
7th Grade
9 questions
Tips & Tricks

Lesson
•
6th - 8th Grade
Discover more resources for Computers
10 questions
Exploring Digital Citizenship Essentials

Interactive video
•
6th - 10th Grade
10 questions
1.2 OSI & TCP IP Models Quiz

Quiz
•
10th Grade
20 questions
Digital Citizenship

Quiz
•
8th - 12th Grade
35 questions
Computer Baseline Examination 2025-26

Quiz
•
9th - 12th Grade
13 questions
Problem Solving Process

Quiz
•
9th - 12th Grade
20 questions
Hardware vs. Software Quiz

Quiz
•
7th - 10th Grade
10 questions
Understanding Algorithms with Pseudocode and Flowcharts

Interactive video
•
9th - 12th Grade
19 questions
AP CSP Unit 1 Review (code.org)

Quiz
•
10th - 12th Grade