Which of the following types of data can be put into an array?
Quiz 15 - Array Basics

Quiz
•
Computers
•
11th Grade
•
Medium
Casey Devet
Used 84+ times
FREE Resource
10 questions
Show all answers
1.
MULTIPLE CHOICE QUESTION
5 mins • 1 pt
int
String
JLabel
all of the above
2.
MULTIPLE CHOICE QUESTION
5 mins • 1 pt
What is the correct way to create an array that holds 10 integers?
int scores = new int [10];
int scores = new int [9];
int [] scores = new int [10];
int [] scores = new int [9];
3.
MULTIPLE CHOICE QUESTION
5 mins • 1 pt
Which instruction will print the 7th element of the array "scores"?
System.out.println(scores[7]);
System.out.println(scores[6]);
System.out.println(scores[8]);
System.out.println(scores7);
4.
MULTIPLE CHOICE QUESTION
5 mins • 1 pt
Which instruction can be used to change the value at index 4 of the array "scores"?
scores_4 = 14728;
scores[5] = 14728;
scores[3] = 14728;
scores[4] = 14728;
5.
MULTIPLE CHOICE QUESTION
5 mins • 1 pt
Which statement can be used to create an array that holds the names of the days of the week?
String [] dayNames = {"Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"};
String [] dayNames = ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"];
String dayNames = {"Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"};
String dayNames = ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"];
6.
MULTIPLE CHOICE QUESTION
5 mins • 1 pt
In Java, you can change multiple array elements at once.
True
False
7.
MULTIPLE CHOICE QUESTION
5 mins • 1 pt
int [] scores = new int [10];
What values will initially be stored in the array elements of "scores"?
0
nothing
a random value
1
Create a free account and access millions of resources
Similar Resources on Quizizz
10 questions
Introduction to Arrays

Quiz
•
KG - University
14 questions
Exploring Computer Science

Quiz
•
10th - 12th Grade
12 questions
Arrays Intro

Quiz
•
9th - 12th Grade
10 questions
Arrays

Quiz
•
10th - 12th Grade
10 questions
Arrays

Quiz
•
11th Grade
15 questions
Array

Quiz
•
10th - 12th Grade
15 questions
Area and Arrays

Quiz
•
10th - 12th Grade
15 questions
2D Arrays

Quiz
•
9th - 12th Grade
Popular Resources on Quizizz
15 questions
Character Analysis

Quiz
•
4th Grade
17 questions
Chapter 12 - Doing the Right Thing

Quiz
•
9th - 12th Grade
10 questions
American Flag

Quiz
•
1st - 2nd Grade
20 questions
Reading Comprehension

Quiz
•
5th Grade
30 questions
Linear Inequalities

Quiz
•
9th - 12th Grade
20 questions
Types of Credit

Quiz
•
9th - 12th Grade
18 questions
Full S.T.E.A.M. Ahead Summer Academy Pre-Test 24-25

Quiz
•
5th Grade
14 questions
Misplaced and Dangling Modifiers

Quiz
•
6th - 8th Grade
Discover more resources for Computers
17 questions
Chapter 12 - Doing the Right Thing

Quiz
•
9th - 12th Grade
20 questions
Types of Credit

Quiz
•
9th - 12th Grade
30 questions
Linear Inequalities

Quiz
•
9th - 12th Grade
20 questions
Taxes

Quiz
•
9th - 12th Grade
17 questions
Parts of Speech

Quiz
•
7th - 12th Grade
20 questions
Chapter 3 - Making a Good Impression

Quiz
•
9th - 12th Grade
20 questions
Inequalities Graphing

Quiz
•
9th - 12th Grade
10 questions
Identifying equations

Quiz
•
KG - University