AppsLab_Q2

AppsLab_Q2

10th Grade - Professional Development

10 Qs

quiz-placeholder

Similar activities

Hardware vstupní+výstupní

Hardware vstupní+výstupní

4th - 10th Grade

12 Qs

Príkazový riadok Cisco IOS

Príkazový riadok Cisco IOS

10th Grade

10 Qs

Hypoteční úvěry a jejich využití

Hypoteční úvěry a jejich využití

11th Grade

14 Qs

Dojo - Type Inference

Dojo - Type Inference

1st - 12th Grade

13 Qs

Logičke izjave i funkcije

Logičke izjave i funkcije

8th - 10th Grade

14 Qs

Termíny z knihovnictví

Termíny z knihovnictví

7th - 12th Grade

6 Qs

Photoshop

Photoshop

12th Grade

11 Qs

Excel - formules en functies

Excel - formules en functies

10th - 12th Grade

10 Qs

AppsLab_Q2

AppsLab_Q2

Assessment

Quiz

Computers

10th Grade - Professional Development

Hard

Created by

Peter Milovcik

Used 6+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Pomocou ktorého príkazu je možné vytvoriť prázdny zoznam reťazcov?

var list = new List<string>{ "A", "B", "C" };

var list = new List<string>;

var list = new List<string>();

var list = new List<string>{};

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Ktorá odpoveď správne zapisuje foreach cyklus?

foreach (item in items) { /* .. */ }

foreach (var item of items) { /* .. */ }

foreach (var item in items) { /* .. */ }

foreach (item of items) { /* .. */ }

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Akým príkazom je možne pridať reťazec do listu, ktorý je typu List<string>?

list.AddRange("A");

list += "A";

list.Insert("A");

list.Add("A");

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Pomocou akého príkazu je možné zistiť v liste typu List<string> index reťazca "A"?

list.IndexOf("A");

list.Index("A");

list["A"];

list.GetIndex("A");

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Akým spôsobom je možné zistiť počet záznamov v liste, ktorý je typu List<int>?

int n = list.Length;

int n = list.Count();

int n = list.Count;

int n = list.Length();

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Akým spôsobom je možné vyprázdniť zoznam, ktorý je typu List<double>?

list.Destroy();

list.RemoveAll();

list.Clear();

list.Clean();

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Akým spôsobom je možné zistiť, či zoznam obsahuje zadaný záznam?

list.Has(item);

list.Contains(item);

list.Exists(item);

list.Contain(item);

Create a free account and access millions of resources

Create resources

Host any resource

Get auto-graded reports

Google

Continue with Google

Email

Continue with Email

Classlink

Continue with Classlink

Clever

Continue with Clever

or continue with

Microsoft

Microsoft

Apple

Apple

Others

Others

By signing up, you agree to our Terms of Service & Privacy Policy

Already have an account?