Search Header Logo

Java Arrays Worksheet

Authored by Irish Dajero

Information Technology (IT)

University

Used 2+ times

Java Arrays Worksheet
AI

AI Actions

Add similar questions

Adjust reading levels

Convert to real-world scenario

Translate activity

More...

    Content View

    Student View

51 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

A programmer wants to store the ages of 50 students using a single variable name. What should they use?

Class

Array

Loop

Method

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following best defines an array in Java?

A list of random variables

A collection of variables of different types

A fixed-size sequential collection of elements of the same type

A method to sort data automatically

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

In Java, what is the index of the first element in an array?

-1

0

1

Depends on declaration

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the key advantage of arrays?

They can grow automatically

They provide random access to elements

They are faster than loops

They can hold different data types

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

A developer wants to store the names of 7 days. What array declaration is correct?

String days = {"Mon","Tue","Wed"};

string[] days = {"Mon","Tue","Wed","Thu","Fri","Sat","Sun"};

days = new String("Mon");

string days[7] = new String();

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which correctly declares and allocates an array of 10 integers?

int a = new int(10);

int[] a = new int[10];

int a[10];

new int a[10];

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the code below? int[] nums = {1,2,3,4,5}; System.out.println(nums[2]);

1

2

3

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

Classlink

Continue with Classlink

Clever

Continue with Clever

or continue with

Microsoft

Microsoft

Apple

Apple

Others

Others

Already have an account?