Bootcamp Day 3 - Java Array

Bootcamp Day 3 - Java Array

University

15 Qs

quiz-placeholder

Similar activities

introduction to computer graphics

introduction to computer graphics

University

10 Qs

2025 python class first quiz

2025 python class first quiz

9th Grade - University

10 Qs

Let's Play Together

Let's Play Together

University - Professional Development

10 Qs

Pemrograman Web 1

Pemrograman Web 1

University

10 Qs

Random stuff

Random stuff

KG - Professional Development

12 Qs

Machine Learning (Introduction)

Machine Learning (Introduction)

University

10 Qs

Jetpack Workshop

Jetpack Workshop

University

10 Qs

Python MCQ

Python MCQ

University

20 Qs

Bootcamp Day 3 - Java Array

Bootcamp Day 3 - Java Array

Assessment

Quiz

Computers

University

Medium

Created by

Karthick M

Used 7+ times

FREE Resource

AI

Enhance your content in a minute

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

15 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is the correct way to declare a multidimensional array in Java?

int array(5,5);

int[][] array = new int[5][5];

int array[] = new int[5,5];

array int[][] = new array[5][5];

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the default value of elements in a newly declared array of type double in Java?

0

0.0

Garbage value

null

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Identify the correct statement for the following code:

int arr[] = new int[5];

System.out.println(arr[5]);

Prints 0

Prints null

Compilation error

Runtime ArrayIndexOutOfBoundsException

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following statements correctly creates and initializes an array?

int arr[] = new int();

int arr[] = new int[5]{1,2,3,4,5};

int arr[] = {1,2,3,4,5};

int[] arr = new int[5] = {1,2,3,4,5};

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following array declarations is invalid?

char[] ch = new char[10];

float arr[] = new float[];

boolean[] flags = new boolean[2];

String[] names = {"John", "Doe"};

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will the following code output?

int[] a = {1, 2, 3};

int[] b = a;

b[0] = 10;

System.out.println(a[0]);

1

10

Compilation Error

0

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does Arrays.toString(arr) return for arr = new int[]{3, 4, 5}?

"[3 4 5]"

"3, 4, 5"

"[3, 4, 5]"

{3, 4, 5}

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?