Begginer's quizz

Begginer's quizz

Professional Development

10 Qs

quiz-placeholder

Similar activities

Lecture 2: Variables and Hello World

Lecture 2: Variables and Hello World

Professional Development

8 Qs

Dart Funciones y Clases

Dart Funciones y Clases

Professional Development

10 Qs

Java OOP

Java OOP

Professional Development

10 Qs

Basic Programming Kotlin

Basic Programming Kotlin

Professional Development

10 Qs

AppsLab_Q2

AppsLab_Q2

10th Grade - Professional Development

10 Qs

GAGC-Dotnet-SET2

GAGC-Dotnet-SET2

Professional Development

15 Qs

1. Standard output, Data type and variable

1. Standard output, Data type and variable

Professional Development

10 Qs

Java Programming Quiz #1

Java Programming Quiz #1

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?