Arrays

Arrays

11th Grade

10 Qs

quiz-placeholder

Similar activities

BÀI KIỂM TRA 15P HK2 TIN HỌC 11

BÀI KIỂM TRA 15P HK2 TIN HỌC 11

11th Grade

10 Qs

Enumeration and Recursion

Enumeration and Recursion

11th Grade - University

12 Qs

Cyber Security KS4

Cyber Security KS4

8th - 12th Grade

15 Qs

Excel

Excel

10th - 12th Grade

15 Qs

1.3.1 Networks #1 LAN's, Client-Server, Peer to Peer

1.3.1 Networks #1 LAN's, Client-Server, Peer to Peer

9th - 11th Grade

15 Qs

python quiz

python quiz

6th Grade - Professional Development

10 Qs

Micro:bit

Micro:bit

4th Grade - University

12 Qs

Bài tập trắc nghiệm C++(tiếp)

Bài tập trắc nghiệm C++(tiếp)

3rd Grade - University

10 Qs

Arrays

Arrays

Assessment

Quiz

Computers

11th Grade

Medium

Created by

Paul Greenwood

Used 39+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

True or False:  An array can be store different types of data (like store both doubles and ints).
True
False

2.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What is the correct way to create an array with these three numbers: 12  8  15
int[] = {12, 8, 15};
int[] nums = {12  8  15};
int[] nums = {12, 8, 15}
int[] nums = {12, 8, 15};

3.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What value is at index 3 in this array?  String[] names = {"Mack", "Dennis", "Dee", "Charlie"};
Mack
Dennis
Dee
Charlie

4.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What value is at index 1 in this array?  String[] names = {"Mack", "Dennis", "Dee", "Charlie"};
Mack
Dennis
Dee
Charlie

5.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What value is stored in each of the 5 positions in this array? (What is the default value provided by Java).
int[] numbers = new int[5];
null
1
0
nothing

6.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What is the correct way to initialize an array with 10 positions?
int numbers = new int[10];
int[] numbers = new int[];
int[10] numbers = new int[10];
int[] numbers = new int[10];

7.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What does the following segment of code print out? int[] numArray = { 2, 7, 4, 12, 0, 2 };
System.out.println(numArray.length);
4
5
6
7

Create a free account and access millions of resources

Create resources

Host any resource

Get auto-graded reports

Google

Continue with Google

Email

Continue with Email

Classlink

Continue with Classlink

Clever

Continue with Clever

or continue with

Microsoft

Microsoft

Apple

Apple

Others

Others

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

Already have an account?