Java Arrays Worksheet

Java Arrays Worksheet

University

51 Qs

quiz-placeholder

Similar activities

Informatika X-2

Informatika X-2

10th Grade - University

50 Qs

Programming Concepts Quiz

Programming Concepts Quiz

University

55 Qs

Generative AI/Fairness and Ethics

Generative AI/Fairness and Ethics

University

52 Qs

CC104 SUMMATIVE TEST

CC104 SUMMATIVE TEST

University

50 Qs

ITD102-B Quiz

ITD102-B Quiz

University

50 Qs

IT221-FINAL-REVIEWER

IT221-FINAL-REVIEWER

University

50 Qs

UAS TIK KELAS IX GANJIL 2024/2025

UAS TIK KELAS IX GANJIL 2024/2025

9th Grade - University

50 Qs

Codean Java - Conditional

Codean Java - Conditional

University

48 Qs

Java Arrays Worksheet

Java Arrays Worksheet

Assessment

Quiz

Information Technology (IT)

University

Hard

Created by

Irish Dajero

Used 2+ times

FREE Resource

AI

Enhance your content in a minute

Add similar questions
Adjust reading levels
Convert to real-world scenario
Translate activity
More...

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

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?