Basic Arrays 1

Basic Arrays 1

8th Grade

9 Qs

quiz-placeholder

Similar activities

Networks 2

Networks 2

7th - 10th Grade

10 Qs

Dojo - Type Inference

Dojo - Type Inference

1st - 12th Grade

13 Qs

Python Quiz

Python Quiz

7th - 12th Grade

10 Qs

Kuis Fungsi HLOOKUP-2

Kuis Fungsi HLOOKUP-2

8th Grade

10 Qs

Unit 6: Chapter 2 Test Review

Unit 6: Chapter 2 Test Review

7th - 8th Grade

10 Qs

String Manipulation

String Manipulation

8th Grade

8 Qs

C++ Searches and Sorts

C++ Searches and Sorts

7th - 12th Grade

9 Qs

C# 11

C# 11

1st - 10th 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)