Module 8: Arrays

Module 8: Arrays

University

10 Qs

quiz-placeholder

Similar activities

Java Quiz 2

Java Quiz 2

University

15 Qs

ARRAYLIST - JAVA

ARRAYLIST - JAVA

University

15 Qs

Python Workshop Day - 2

Python Workshop Day - 2

University

15 Qs

Recap Chapter 6, 7, 8

Recap Chapter 6, 7, 8

University

11 Qs

Java Arrays

Java Arrays

University

10 Qs

Array of Structure

Array of Structure

University

13 Qs

Arrays

Arrays

University

11 Qs

Data Structures - Quiz1

Data Structures - Quiz1

University

10 Qs

Module 8: Arrays

Module 8: Arrays

Assessment

Quiz

Computers

University

Hard

Created by

ROBERT JONAS SALAZAR TAN

Used 7+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

10 sec • 1 pt

It is basically, a variable that can store multiple values with the same data type.

List

Array

Object

Int

2.

MULTIPLE CHOICE QUESTION

10 sec • 1 pt

Arrays best work with..

if else

while loop

do-while loop

for loop

3.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

The correct syntax of declaring an array is?

dataType arrayName [arraySize];

dataType arrayName = [arraySize];

dataType arrayName [ ];

arrayName dataType [arraySize];

4.

MULTIPLE SELECT QUESTION

20 sec • 1 pt

The correct syntax of assigning values upon declaration/ intitialization is?

dataType arrayName [arraySize] = { value1, value2, value3 };

dataType arrayName = [arraySize] { value1, value2, value3 };

dataType arrayName [ ] = { value1, value2, value3 };

arrayName dataType { value1, value2, value3 } [arraySize];

5.

MULTIPLE CHOICE QUESTION

10 sec • 1 pt

In an array with a size of 10, what is the first index?

0

1

9

10

6.

MULTIPLE CHOICE QUESTION

10 sec • 1 pt

Given the array

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

what is the value of list [ 0 ]

1

4

2

0

7.

MULTIPLE CHOICE QUESTION

10 sec • 1 pt

In initializing or assigning values upon declaration in multi-dimensional array, arraySize is optional.

True

False

Cannot be determined.

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?