Begginer's quizz

Begginer's quizz

Professional Development

10 Qs

quiz-placeholder

Similar activities

c# quiz

c# quiz

Professional Development

6 Qs

Массивы С++

Массивы С++

Professional Development

13 Qs

JAVA - Arrays

JAVA - Arrays

University - Professional Development

15 Qs

JRDL - JS Arrays and Objects

JRDL - JS Arrays and Objects

6th Grade - Professional Development

12 Qs

Career Opportunities in IT : {Shakeel Juman}

Career Opportunities in IT : {Shakeel Juman}

Professional Development

10 Qs

JMS Fundamentals: Core Java

JMS Fundamentals: Core Java

Professional Development

15 Qs

PreTrainingJavaScript

PreTrainingJavaScript

Professional Development

9 Qs

C++ Coding Problems

C++ Coding Problems

4th Grade - Professional Development

10 Qs

Begginer's quizz

Begginer's quizz

Assessment

Quiz

Computers

Professional Development

Hard

Created by

Roman Popper

Used 3+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Koľko rôznych hodnôt môže byť uložených v premennej typu bool?

4

2

veľa

1

2.

MULTIPLE SELECT QUESTION

45 sec • 1 pt

Ktorý zápis sa dá použiť pre deklaráciu poľa integerov?

int[] array1 = new int[5];

int[] array2 = new int[] { 1, 3, 5, 7, 9 };

int[] array3 = { 1, 2, 3, 4, 5, 6 };

int[] array4 = new int[5] { 1, 3, 5, 7, 9 };

3.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Ktorý príkaz pre výpis vety: "My name is Jayce" na Consolu NIE je správny?

Console.WriteLine("My name is Jayce");

string name = "Jayce";

Console.WriteLine( "My name is {name}" );

string name = "Jayce";

Console.WriteLine(string.Format("My name is {0}", name));

string name = "Jayce";

Console.WriteLine( $"My name is {name}" );

string name = "Jayce";

Console.WriteLine( "My name is " + name );

4.

MULTIPLE SELECT QUESTION

45 sec • 1 pt

Pre prácu s číslami môžeme použiť premenná typu:

int

char

double

short

bool

5.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Príkaz int a = 5.0; ..

bude fungovať

nebude fungovať

6.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Media Image

Čo bude vypísané na Console po vykonaní kódu na obrázku?

The answer is not greater than 10

The answer is greater than 10

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

Čo bude vypísané na Console po vykonaní kódu na obrázku?

012345

12345

01234

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?