array

Quiz
•
Computers
•
1st - 5th Grade
•
Hard
Мадина Аскарова
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
4.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
float stats[3];
What is the range of the index?
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
Similar Resources on Wayground
19 questions
Информация и информационные процессы

Quiz
•
5th Grade
10 questions
Экзамен Minecraft EE

Quiz
•
3rd - 7th Grade
10 questions
9-сынып. Python массив.

Quiz
•
1st - 9th Grade
15 questions
Delphi

Quiz
•
5th Grade
18 questions
Информатика 7-8 класс

Quiz
•
5th - 9th Grade
13 questions
Питонимся

Quiz
•
1st - 5th Grade
14 questions
Python-basics

Quiz
•
1st - 4th Grade
20 questions
Логические тесты 5-6 классы

Quiz
•
5th - 6th 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