Що виведе наступна програма?
class ArrayTest {
public static void main(String[] args) {
float[] f1, f2;
f1 = new float[10];
f2 = f1;
System.out.println("f2[0] = " + f2[0]);
}
}
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
10 questions
Introduction to Arrays
Quiz
•
KG - University
10 questions
PreTest Larik/ Array
Quiz
•
11th Grade - University
10 questions
Rapid Round 1
Quiz
•
University
10 questions
Arrays
Quiz
•
10th - 12th Grade
10 questions
Struktur Data
Quiz
•
University
10 questions
C++ Array Quiz
Quiz
•
University
10 questions
C - Pointers
Quiz
•
University
10 questions
Programming for Problem Solving
Quiz
•
University
10 questions
Chains by Laurie Halse Anderson Chapters 1-3 Quiz
Quiz
•
6th Grade
20 questions
math review
Quiz
•
4th Grade
15 questions
Character Analysis
Quiz
•
4th Grade
12 questions
Multiplying Fractions
Quiz
•
6th Grade
30 questions
Biology Regents Review #1
Quiz
•
9th Grade
20 questions
Reading Comprehension
Quiz
•
5th Grade
20 questions
Types of Credit
Quiz
•
9th - 12th Grade
50 questions
Biology Regents Review: Structure & Function
Quiz
•
9th - 12th Grade
20 questions
Types of Credit
Quiz
•
9th - 12th Grade
50 questions
Biology Regents Review: Structure & Function
Quiz
•
9th - 12th Grade
20 questions
Taxes
Quiz
•
9th - 12th Grade
20 questions
Chapter 3 - Making a Good Impression
Quiz
•
9th - 12th Grade
14 questions
Attributes of Linear Functions
Quiz
•
9th - 12th Grade
10 questions
Identifying equations
Quiz
•
KG - University
50 questions
Biology Regents Review 2: Ecology
Quiz
•
9th - 12th Grade
20 questions
Investing
Quiz
•
9th - 12th Grade