Массивы 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
13 questions
Uji Pemahaman tentang Array

Quiz
•
11th Grade
16 questions
Recuparacion 10 CP

Quiz
•
10th Grade
10 questions
Quiz 16 - Arrays and Loops

Quiz
•
11th Grade
10 questions
Quiz 15 - Array Basics

Quiz
•
11th Grade
10 questions
Trắc nghiệm: Bài 18-Các lệnh vào ra đơn giản

Quiz
•
10th Grade
15 questions
bài tập mảng tiết 1

Quiz
•
11th Grade
10 questions
Pemrograman berorientasi objek

Quiz
•
11th Grade
10 questions
Тест№1. Подготовка к КР№2 С++

Quiz
•
10th Grade
Popular Resources on Wayground
10 questions
Video Games

Quiz
•
6th - 12th Grade
20 questions
Brand Labels

Quiz
•
5th - 12th Grade
15 questions
Core 4 of Customer Service - Student Edition

Quiz
•
6th - 8th Grade
15 questions
What is Bullying?- Bullying Lesson Series 6-12

Lesson
•
11th Grade
25 questions
Multiplication Facts

Quiz
•
5th Grade
15 questions
Subtracting Integers

Quiz
•
7th Grade
22 questions
Adding Integers

Quiz
•
6th Grade
10 questions
Exploring Digital Citizenship Essentials

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

Interactive video
•
6th - 10th Grade
10 questions
Proper Keyboarding Techniques

Interactive video
•
6th - 10th Grade
10 questions
Understanding Computers: Hardware, Software, and Operating Systems

Interactive video
•
7th - 12th Grade
29 questions
AP CSP Unit 2 Review (Code.org)

Quiz
•
10th - 12th Grade