
Массивы в C#

Quiz
•
Computers
•
9th - 12th Grade
•
Hard
Konstantin Konstantin
Used 4+ times
FREE Resource
10 questions
Show all answers
1.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Как объявить массив в C#?
int arrayName[];
int[] arrayName;
arrayName = int[];
arrayName = new int[];
2.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Как инициализировать массив в C#?
int[] arrayName = new int[];
int[] arrayName = new int[size];
arrayName = new int[size];
int arrayName[size];
3.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Как получить доступ к элементу массива по индексу в C#?
arrayName{index}
arrayName.index
arrayName[index]
arrayName.get(index)
4.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Как узнать длину массива в C#?
array.Size
array.Length()
array.Count
array.Length
5.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Как изменить значение элемента массива в C#?
array.modify(index, newValue);
array.set(index, newValue);
array.setValue(index, newValue);
array[index] = newValue;
6.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Как проверить наличие элемента в массиве в C#?
element in array
array.IndexOf(element) != -1
array.ContainsElement(element)
array.Contains(element)
7.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Какой индекс у элемента "Валентина" в массиве
string[] friends = {"Валентина", "Игорь", "Вероника", "Маргарита"}?
1
2
3
0
Create a free account and access millions of resources
Similar Resources on Wayground
10 questions
Описание массива

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

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

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

Quiz
•
10th Grade
15 questions
Жанар214

Quiz
•
9th Grade - University
8 questions
Array

Quiz
•
9th Grade
10 questions
STRING HANDLING

Quiz
•
10th Grade
7 questions
Reviewing Arrays

Quiz
•
11th 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
14 questions
Inputs and Outputs: Computer Science Intro

Lesson
•
5th - 9th 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