Search Header Logo

Java array

Authored by Сергій Денисенко

Computers

11th Grade - University

Used 1+ times

Java array
AI

AI Actions

Add similar questions

Adjust reading levels

Convert to real-world scenario

Translate activity

More...

6 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

Що виведе наступна програма?

class ArrayTest {

public static void main(String[] args) {

float[] f1, f2;

f1 = new float[10];

f2 = f1;

System.out.println("f2[0] = " + f2[0]);

}

}

Помилка компіляції в рядку f2 = f1;

Виведе у консоль f2[0] = null

Виведе у консоль f2[0] = 0.0

2.

MULTIPLE SELECT QUESTION

2 mins • 1 pt

Виберіть правильні варіанти створення масиву.

int array[] = {5, 7, 3};

int[5] array = new int;

int[] array = new int[4];

int[] array = {5; 7; 3};

3.

MULTIPLE SELECT QUESTION

1 min • 1 pt

Які варіанти спричинять помилку компілятора?

float f2[] = new float[];

float[]f1 = new float[3];

float f3[] = new float[3];

float[] f = new float(3);

4.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Що спричиняє помилку компілятора?

double array[] = {3, 5, 8};

boolean results[] = new boolean[]{true, false, true};

String cats[] = {"Fluffy", "Spot", "Zeus"};

int [ ][ ] scores = {2,7,6}, {9,3,45};

5.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Існує наступний код:

int[] a = new int[15];

Які твердження вірні?

a[0] рівне null

a[14] не визначено

a[14] дорівнює 0

a.length дорівнює 15

6.

MULTIPLE CHOICE QUESTION

3 mins • 1 pt

Яким є результат виконання наступного коду?

public class MyArrays {

public static void main(String[] args) {

byte array[][] = {{1, 2, 3, 4}, {1, 2, 3}};

System.out.println(array[1].length + " " + array.length);

}

}

3 7

2 7

2 4

помилка компіляції

3 2

Access all questions and much more by creating a free account

Create resources

Host any resource

Get auto-graded reports

Google

Continue with Google

Email

Continue with Email

Microsoft

Continue with Microsoft

or continue with

Facebook

Facebook

Apple

Apple

Others

Others

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

Already have an account?