VB.NET PBU

VB.NET PBU

University

5 Qs

quiz-placeholder

Similar activities

Visual Basic Intro

Visual Basic Intro

University

10 Qs

C++ Array

C++ Array

University

10 Qs

Quiz Pre test chapter 4

Quiz Pre test chapter 4

University

10 Qs

Arrays - quiz

Arrays - quiz

University

4 Qs

เริ่มต้นเข้าใจเกี่ยวกับการเขียนโปรแกรมแบบ GUI

เริ่มต้นเข้าใจเกี่ยวกับการเขียนโปรแกรมแบบ GUI

University

10 Qs

One Dimensional Arrays

One Dimensional Arrays

University

5 Qs

Alpro_Array

Alpro_Array

University

10 Qs

Quiz on 16-06-2021

Quiz on 16-06-2021

University

5 Qs

VB.NET PBU

VB.NET PBU

Assessment

Quiz

Computers

University

Medium

Created by

LETCHUMANAN (PBU)

Used 2+ times

FREE Resource

5 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the default index starting point for arrays in VB.NET?

1

0

-1

2

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which method is used to sort a one-dimensional array in ascending order in VB.NET?

Array.Find

Array.Sort

Array.Reverse

Array.Clear

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you access the element in the 2nd row and 3rd column of a two-dimensional array named matrix?

matrix(1, 2)

matrix(2, 3)

matrix(2, 1)

matrix(1, 3)

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which loop structure is typically used to iterate through each element of a one-dimensional array in VB.NET?

While

For Each

Do Until

For

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What method can be used to find the index of a specific element in a one-dimensional array in VB.NET?

Array.FindIndex

Array.IndexOf

Array.Locate