Topic 6.1 Video 1

Topic 6.1 Video 1

11th Grade

6 Qs

quiz-placeholder

Similar activities

ArrayList

ArrayList

10th - 12th Grade

11 Qs

Quiz on Array

Quiz on Array

11th - 12th Grade

10 Qs

List of References

List of References

9th - 12th Grade

11 Qs

JavaScript Quiz | For Beginners

JavaScript Quiz | For Beginners

1st Grade - University

10 Qs

Arrays

Arrays

11th Grade

6 Qs

Advanced Java Study Guide

Advanced Java Study Guide

11th - 12th Grade

10 Qs

Quiz 15 - Array Basics

Quiz 15 - Array Basics

11th Grade

10 Qs

Quiz 16 - Arrays and Loops

Quiz 16 - Arrays and Loops

11th Grade

10 Qs

Topic 6.1 Video 1

Topic 6.1 Video 1

Assessment

Passage

Computers

11th Grade

Easy

Created by

Myra Deister

Used 3+ times

FREE Resource

6 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Did you view the video from beginning to end without increasing the speed?

Yes

No

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is a java array?

A java array is a type of coffee drink
A java array is a type of tropical fruit
A java array is a type of programming language

An array in Java is a collection of the same type of elements.

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is an element?

A method used to access the array
A string of characters in the array
The total number of elements in the array
A specific value stored at a particular index within the array

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is an index?

The name of the array
The data type of the array
The size of the array
Position of an element within the array

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

double [ ] myRate = new double [5];

System.out.println (myRate[myRate.length]);

What is the output?

IndexOutOfBoundsException
NullPointerException

0.0

ArrayIndexOutOfBoundsException

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

int [] myData = {2, 18, 3, 7, 8};

System.out.println(myData.length);

What is the output?

2

6

5

4