Basic Arrays 1

Basic Arrays 1

8th Grade

9 Qs

quiz-placeholder

Similar activities

Introduction to Arrays

Introduction to Arrays

KG - University

10 Qs

Arrays

Arrays

KG - University

10 Qs

ADVANCED EXCEL

ADVANCED EXCEL

8th Grade

10 Qs

Computer Science

Computer Science

8th Grade

13 Qs

Moringa JavaScript Arrays

Moringa JavaScript Arrays

5th Grade - Professional Development

10 Qs

Excel Basics

Excel Basics

6th - 8th Grade

10 Qs

Ulangan Harian 1

Ulangan Harian 1

8th Grade

10 Qs

Uji Pemahaman VLOOKUP dan HLOOKUP

Uji Pemahaman VLOOKUP dan HLOOKUP

8th Grade

10 Qs

Basic Arrays 1

Basic Arrays 1

Assessment

Quiz

Computers

8th Grade

Hard

Created by

Krishan Leong

Used 5+ times

FREE Resource

9 questions

Show all answers

1.

FILL IN THE BLANK QUESTION

1 min • 1 pt

What is the name of the array below?

Dim names(7) as String

names(3) = "Mr. Leong"

names(6) = "Bob"

2.

FILL IN THE BLANK QUESTION

1 min • 1 pt

How many variables are declared in the array below?

Dim names(7) as String

names(3) = "Mr. Leong"

names(6) = "Bob"

3.

FILL IN THE BLANK QUESTION

1 min • 1 pt

Write the code to assign "Pete" to the second index. Include 1 space before and after the = sign only.

Dim names(7) as String

names(3) = "Mr. Leong"

names(6) = "Bob"

4.

FILL IN THE BLANK QUESTION

1 min • 1 pt

Media Image

How many variables are declared in the array?

5.

FILL IN THE BLANK QUESTION

1 min • 1 pt

Media Image

After the loop, what is the value of the array at index 4?

6.

FILL IN THE BLANK QUESTION

1 min • 1 pt

Media Image

What is the value of i when the loop exits?

7.

FILL IN THE BLANK QUESTION

1 min • 1 pt

Media Image

Write the name of the variable that contains the number 4.

8.

FILL IN THE BLANK QUESTION

1 min • 1 pt

Media Image

What is displayed in the label below?

lblAnswer.Text = sum(3) - sum(5)

9.

FILL IN THE BLANK QUESTION

1 min • 1 pt

Media Image

True or False

sum(4) < sum (2)