Java array

Quiz
•
Computers
•
11th Grade - University
•
Hard
Сергій Денисенко
Used 1+ times
FREE Resource
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
Similar Resources on Wayground
10 questions
Basic java

Quiz
•
University
10 questions
Java Arrays

Quiz
•
University
10 questions
C# Programming Quiz

Quiz
•
12th Grade
10 questions
Data Types in Python

Quiz
•
9th - 12th Grade
10 questions
C Programming Lab Quiz

Quiz
•
University
10 questions
Programming basics

Quiz
•
9th - 12th Grade
10 questions
Prueba Corta - Programación I

Quiz
•
1st - 12th Grade
10 questions
cp06-01-1D-Array

Quiz
•
University
Popular Resources on Wayground
10 questions
Lab Safety Procedures and Guidelines

Interactive video
•
6th - 10th Grade
10 questions
Nouns, nouns, nouns

Quiz
•
3rd Grade
10 questions
9/11 Experience and Reflections

Interactive video
•
10th - 12th Grade
25 questions
Multiplication Facts

Quiz
•
5th Grade
11 questions
All about me

Quiz
•
Professional Development
22 questions
Adding Integers

Quiz
•
6th Grade
15 questions
Subtracting Integers

Quiz
•
7th Grade
9 questions
Tips & Tricks

Lesson
•
6th - 8th Grade
Discover more resources for Computers
20 questions
Digital Citizenship

Quiz
•
8th - 12th Grade
35 questions
Computer Baseline Examination 2025-26

Quiz
•
9th - 12th Grade
13 questions
Problem Solving Process

Quiz
•
9th - 12th Grade
10 questions
Understanding Algorithms with Pseudocode and Flowcharts

Interactive video
•
9th - 12th Grade
19 questions
AP CSP Unit 1 Review (code.org)

Quiz
•
10th - 12th Grade