Agenda & syntax :
Array Methods :
1. Lbound : Lower bound of an Array
Syntax Lbound([Array],dimension - Optional)
1. Ubound : Upper bound of an Array
Syntax Ubound([Array],dimension - Optional)
Code :
dim a(5,4)
msgbox "The Upper limit of a first dimention of an array is " & Ubound(a,1)
msgbox "The Upper limit of a second dimention of an array is " & Ubound(a,2)
msgbox "The Lower limit of a first dimention of an array is " & Lbound(a,1)
msgbox "The Lower limit of a second dimention of an array is " & Lbound(a,2)
0:00 - Recap of Biggest Element program
1:14 - Array methods Agenda
1:44 - Lbound Syntax
2:47 - Ubound Syntax
3:17 - Explaining Lbound , Ubound with example
6:12 - End tags and subscription to the channel
What are arrays?
What is Lbound?
What is Ubound ?
Syntax of Array Methods?
Examples of Array Methods
#YouTube #YouTuber #AzharTechnoCoder