SlideShare a Scribd company logo
1 of 6
Arrays
Arrays
• An array is a named collection of
variables of the same data type.
Each element of the array is
labeled by one or more indices.
• The size of an array is determined
by the number of dimensions (i.e.
the number of arguments) and the
lower and upper bounds of the
index number of each dimension.
VB arrays can have 60 dimensions,
with computer memory size limiting
the number of elements.
Arrays
• If you know what size you need
declare a static array and
specify the lower and upper
bounds of each dimension.
• On the other hand if the size is
truly not known you can declare a
dynamic array.
• You must explicitly declare an
array before you use it.
• Implicit declaration is not
allowed.
Arrays
• The default lower bound is zero (0)
unless you set it to 1 – which is
recommended.
• The statement
Dim counters(14) As Integer
• It defines counters as an array with 15
elements going from counters(0) through
to counters(14).
• To specify explicitly both bounds use
lowewrBound To upperBound as in
Dim counters(1 To 15) As Integer
Dim totals(100 To 150) As Single
Multi-Dimensional Array
• A multi-dimensional array is defined
in the statement
Dim matrix(10, 10) As Single
• To give a 10 x 10 “square” array with
100 elements from matrix(1,1) to
matrix(10, 10).
Arrays

More Related Content

Viewers also liked

How does the chilean society subject
How does the chilean society subjectHow does the chilean society subject
How does the chilean society subjectAleEnergici
 
Fp me 2_reporte aplicación aamtic_g113_yenni balvin
Fp me 2_reporte aplicación aamtic_g113_yenni balvinFp me 2_reporte aplicación aamtic_g113_yenni balvin
Fp me 2_reporte aplicación aamtic_g113_yenni balvinBALVINY
 
Fp me 3_reporte aplicación aamtic_g113_yenni balvin
Fp me 3_reporte aplicación aamtic_g113_yenni balvinFp me 3_reporte aplicación aamtic_g113_yenni balvin
Fp me 3_reporte aplicación aamtic_g113_yenni balvinBALVINY
 
Fp me 4_reporte aplicación aamtic_gxx.docx
Fp me 4_reporte aplicación aamtic_gxx.docxFp me 4_reporte aplicación aamtic_gxx.docx
Fp me 4_reporte aplicación aamtic_gxx.docxBALVINY
 
Laporan posisi keuangan&cash flow
Laporan posisi keuangan&cash flowLaporan posisi keuangan&cash flow
Laporan posisi keuangan&cash flowIndra Yu
 
How to play piano
How to play pianoHow to play piano
How to play pianocgray18
 
Getting In & Getting the Girl: An Underground Guide to NYC's Most Exclusive N...
Getting In & Getting the Girl: An Underground Guide to NYC's Most Exclusive N...Getting In & Getting the Girl: An Underground Guide to NYC's Most Exclusive N...
Getting In & Getting the Girl: An Underground Guide to NYC's Most Exclusive N...captivix
 
ISAK-10-Program Loyalitas Pelanggan
ISAK-10-Program Loyalitas PelangganISAK-10-Program Loyalitas Pelanggan
ISAK-10-Program Loyalitas PelangganIndra Yu
 
Perubahan kebijakan akuntansi & koreksi kesalahan
Perubahan kebijakan akuntansi & koreksi kesalahanPerubahan kebijakan akuntansi & koreksi kesalahan
Perubahan kebijakan akuntansi & koreksi kesalahanIndra Yu
 
Case Analisa swot
 Case Analisa swot  Case Analisa swot
Case Analisa swot Indra Yu
 
Let's Barter Screens_ Nov 2016
Let's Barter Screens_ Nov 2016Let's Barter Screens_ Nov 2016
Let's Barter Screens_ Nov 2016Pooja Bhayana
 
Visual Basic menu
Visual Basic menuVisual Basic menu
Visual Basic menukuldeep94
 

Viewers also liked (17)

How does the chilean society subject
How does the chilean society subjectHow does the chilean society subject
How does the chilean society subject
 
Loop
LoopLoop
Loop
 
Toolbar
ToolbarToolbar
Toolbar
 
Fp me 2_reporte aplicación aamtic_g113_yenni balvin
Fp me 2_reporte aplicación aamtic_g113_yenni balvinFp me 2_reporte aplicación aamtic_g113_yenni balvin
Fp me 2_reporte aplicación aamtic_g113_yenni balvin
 
Fp me 3_reporte aplicación aamtic_g113_yenni balvin
Fp me 3_reporte aplicación aamtic_g113_yenni balvinFp me 3_reporte aplicación aamtic_g113_yenni balvin
Fp me 3_reporte aplicación aamtic_g113_yenni balvin
 
Fp me 4_reporte aplicación aamtic_gxx.docx
Fp me 4_reporte aplicación aamtic_gxx.docxFp me 4_reporte aplicación aamtic_gxx.docx
Fp me 4_reporte aplicación aamtic_gxx.docx
 
Laporan posisi keuangan&cash flow
Laporan posisi keuangan&cash flowLaporan posisi keuangan&cash flow
Laporan posisi keuangan&cash flow
 
How to play piano
How to play pianoHow to play piano
How to play piano
 
Getting In & Getting the Girl: An Underground Guide to NYC's Most Exclusive N...
Getting In & Getting the Girl: An Underground Guide to NYC's Most Exclusive N...Getting In & Getting the Girl: An Underground Guide to NYC's Most Exclusive N...
Getting In & Getting the Girl: An Underground Guide to NYC's Most Exclusive N...
 
ISAK-10-Program Loyalitas Pelanggan
ISAK-10-Program Loyalitas PelangganISAK-10-Program Loyalitas Pelanggan
ISAK-10-Program Loyalitas Pelanggan
 
Perubahan kebijakan akuntansi & koreksi kesalahan
Perubahan kebijakan akuntansi & koreksi kesalahanPerubahan kebijakan akuntansi & koreksi kesalahan
Perubahan kebijakan akuntansi & koreksi kesalahan
 
Case Analisa swot
 Case Analisa swot  Case Analisa swot
Case Analisa swot
 
Let's Barter Screens_ Nov 2016
Let's Barter Screens_ Nov 2016Let's Barter Screens_ Nov 2016
Let's Barter Screens_ Nov 2016
 
Select case
Select caseSelect case
Select case
 
English phonetics
English phoneticsEnglish phonetics
English phonetics
 
La cinematica
La cinematicaLa cinematica
La cinematica
 
Visual Basic menu
Visual Basic menuVisual Basic menu
Visual Basic menu
 

Similar to Arrays

Programming fundamentals week 12.pptx
Programming fundamentals week 12.pptxProgramming fundamentals week 12.pptx
Programming fundamentals week 12.pptxdfsdg3
 
Arrays_and_Strings_in_C_Programming.pptx
Arrays_and_Strings_in_C_Programming.pptxArrays_and_Strings_in_C_Programming.pptx
Arrays_and_Strings_in_C_Programming.pptxsamreenghauri786
 
Arrays In C Language
Arrays In C LanguageArrays In C Language
Arrays In C LanguageSurbhi Yadav
 
Array in Java
Array in JavaArray in Java
Array in JavaAli shah
 
Array in Java
Array in JavaArray in Java
Array in JavaAli shah
 
5 ARRAYS AND STRINGSjiuojhiooioiiouioi.pptx
5 ARRAYS AND STRINGSjiuojhiooioiiouioi.pptx5 ARRAYS AND STRINGSjiuojhiooioiiouioi.pptx
5 ARRAYS AND STRINGSjiuojhiooioiiouioi.pptxteddiyfentaw
 
VISUAL BASIC 6 - CONTROLS AND DECLARATIONS
VISUAL BASIC 6 - CONTROLS AND DECLARATIONSVISUAL BASIC 6 - CONTROLS AND DECLARATIONS
VISUAL BASIC 6 - CONTROLS AND DECLARATIONSSuraj Kumar
 
Array.....it also help full all ECE department students.
Array.....it also help full all ECE department students.Array.....it also help full all ECE department students.
Array.....it also help full all ECE department students.AnupamBiswas67
 
Basic Arrays in C Programming Language I
Basic Arrays in C Programming Language IBasic Arrays in C Programming Language I
Basic Arrays in C Programming Language IChobodiDamsaraniPadm
 

Similar to Arrays (20)

Programming fundamentals week 12.pptx
Programming fundamentals week 12.pptxProgramming fundamentals week 12.pptx
Programming fundamentals week 12.pptx
 
Basics of array.pptx
Basics of array.pptxBasics of array.pptx
Basics of array.pptx
 
Arrays
ArraysArrays
Arrays
 
Arrays_and_Strings_in_C_Programming.pptx
Arrays_and_Strings_in_C_Programming.pptxArrays_and_Strings_in_C_Programming.pptx
Arrays_and_Strings_in_C_Programming.pptx
 
Arrays In C Language
Arrays In C LanguageArrays In C Language
Arrays In C Language
 
Unit 4
Unit 4Unit 4
Unit 4
 
Arrays.pptx
Arrays.pptxArrays.pptx
Arrays.pptx
 
Java arrays
Java arraysJava arrays
Java arrays
 
arrays.pptx
arrays.pptxarrays.pptx
arrays.pptx
 
Array in Java
Array in JavaArray in Java
Array in Java
 
Array in Java
Array in JavaArray in Java
Array in Java
 
Arrays.pptx
Arrays.pptxArrays.pptx
Arrays.pptx
 
5 ARRAYS AND STRINGSjiuojhiooioiiouioi.pptx
5 ARRAYS AND STRINGSjiuojhiooioiiouioi.pptx5 ARRAYS AND STRINGSjiuojhiooioiiouioi.pptx
5 ARRAYS AND STRINGSjiuojhiooioiiouioi.pptx
 
Arrays in C++
Arrays in C++Arrays in C++
Arrays in C++
 
VISUAL BASIC 6 - CONTROLS AND DECLARATIONS
VISUAL BASIC 6 - CONTROLS AND DECLARATIONSVISUAL BASIC 6 - CONTROLS AND DECLARATIONS
VISUAL BASIC 6 - CONTROLS AND DECLARATIONS
 
C++ arrays part1
C++ arrays part1C++ arrays part1
C++ arrays part1
 
ARRAYS.pptx
ARRAYS.pptxARRAYS.pptx
ARRAYS.pptx
 
Array.....it also help full all ECE department students.
Array.....it also help full all ECE department students.Array.....it also help full all ECE department students.
Array.....it also help full all ECE department students.
 
Chapter-Five.pptx
Chapter-Five.pptxChapter-Five.pptx
Chapter-Five.pptx
 
Basic Arrays in C Programming Language I
Basic Arrays in C Programming Language IBasic Arrays in C Programming Language I
Basic Arrays in C Programming Language I
 

Recently uploaded

Call Girls in Uttam Nagar Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Uttam Nagar Delhi 💯Call Us 🔝8264348440🔝Call Girls in Uttam Nagar Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Uttam Nagar Delhi 💯Call Us 🔝8264348440🔝soniya singh
 
VIP Kolkata Call Girl Salt Lake 👉 8250192130 Available With Room
VIP Kolkata Call Girl Salt Lake 👉 8250192130  Available With RoomVIP Kolkata Call Girl Salt Lake 👉 8250192130  Available With Room
VIP Kolkata Call Girl Salt Lake 👉 8250192130 Available With Roomishabajaj13
 
VIP Kolkata Call Girl Kestopur 👉 8250192130 Available With Room
VIP Kolkata Call Girl Kestopur 👉 8250192130  Available With RoomVIP Kolkata Call Girl Kestopur 👉 8250192130  Available With Room
VIP Kolkata Call Girl Kestopur 👉 8250192130 Available With Roomdivyansh0kumar0
 
FULL ENJOY Call Girls In Mayur Vihar Delhi Contact Us 8377087607
FULL ENJOY Call Girls In Mayur Vihar Delhi Contact Us 8377087607FULL ENJOY Call Girls In Mayur Vihar Delhi Contact Us 8377087607
FULL ENJOY Call Girls In Mayur Vihar Delhi Contact Us 8377087607dollysharma2066
 
Call Girls In Model Towh Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Model Towh Delhi 💯Call Us 🔝8264348440🔝Call Girls In Model Towh Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Model Towh Delhi 💯Call Us 🔝8264348440🔝soniya singh
 
Low Rate Young Call Girls in Sector 63 Mamura Noida ✔️☆9289244007✔️☆ Female E...
Low Rate Young Call Girls in Sector 63 Mamura Noida ✔️☆9289244007✔️☆ Female E...Low Rate Young Call Girls in Sector 63 Mamura Noida ✔️☆9289244007✔️☆ Female E...
Low Rate Young Call Girls in Sector 63 Mamura Noida ✔️☆9289244007✔️☆ Female E...SofiyaSharma5
 
Networking in the Penumbra presented by Geoff Huston at NZNOG
Networking in the Penumbra presented by Geoff Huston at NZNOGNetworking in the Penumbra presented by Geoff Huston at NZNOG
Networking in the Penumbra presented by Geoff Huston at NZNOGAPNIC
 
AWS Community DAY Albertini-Ellan Cloud Security (1).pptx
AWS Community DAY Albertini-Ellan Cloud Security (1).pptxAWS Community DAY Albertini-Ellan Cloud Security (1).pptx
AWS Community DAY Albertini-Ellan Cloud Security (1).pptxellan12
 
Call Girls Dubai Prolapsed O525547819 Call Girls In Dubai Princes$
Call Girls Dubai Prolapsed O525547819 Call Girls In Dubai Princes$Call Girls Dubai Prolapsed O525547819 Call Girls In Dubai Princes$
Call Girls Dubai Prolapsed O525547819 Call Girls In Dubai Princes$kojalkojal131
 
VIP Kolkata Call Girls Salt Lake 8250192130 Available With Room
VIP Kolkata Call Girls Salt Lake 8250192130 Available With RoomVIP Kolkata Call Girls Salt Lake 8250192130 Available With Room
VIP Kolkata Call Girls Salt Lake 8250192130 Available With Roomgirls4nights
 
Call Girls South Delhi Delhi reach out to us at ☎ 9711199012
Call Girls South Delhi Delhi reach out to us at ☎ 9711199012Call Girls South Delhi Delhi reach out to us at ☎ 9711199012
Call Girls South Delhi Delhi reach out to us at ☎ 9711199012rehmti665
 
Low Rate Call Girls Kolkata Avani 🤌 8250192130 🚀 Vip Call Girls Kolkata
Low Rate Call Girls Kolkata Avani 🤌  8250192130 🚀 Vip Call Girls KolkataLow Rate Call Girls Kolkata Avani 🤌  8250192130 🚀 Vip Call Girls Kolkata
Low Rate Call Girls Kolkata Avani 🤌 8250192130 🚀 Vip Call Girls Kolkataanamikaraghav4
 
How is AI changing journalism? (v. April 2024)
How is AI changing journalism? (v. April 2024)How is AI changing journalism? (v. April 2024)
How is AI changing journalism? (v. April 2024)Damian Radcliffe
 
AlbaniaDreamin24 - How to easily use an API with Flows
AlbaniaDreamin24 - How to easily use an API with FlowsAlbaniaDreamin24 - How to easily use an API with Flows
AlbaniaDreamin24 - How to easily use an API with FlowsThierry TROUIN ☁
 
Best VIP Call Girls Noida Sector 75 Call Me: 8448380779
Best VIP Call Girls Noida Sector 75 Call Me: 8448380779Best VIP Call Girls Noida Sector 75 Call Me: 8448380779
Best VIP Call Girls Noida Sector 75 Call Me: 8448380779Delhi Call girls
 

Recently uploaded (20)

Call Girls in Uttam Nagar Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Uttam Nagar Delhi 💯Call Us 🔝8264348440🔝Call Girls in Uttam Nagar Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Uttam Nagar Delhi 💯Call Us 🔝8264348440🔝
 
VIP Kolkata Call Girl Salt Lake 👉 8250192130 Available With Room
VIP Kolkata Call Girl Salt Lake 👉 8250192130  Available With RoomVIP Kolkata Call Girl Salt Lake 👉 8250192130  Available With Room
VIP Kolkata Call Girl Salt Lake 👉 8250192130 Available With Room
 
VIP Kolkata Call Girl Kestopur 👉 8250192130 Available With Room
VIP Kolkata Call Girl Kestopur 👉 8250192130  Available With RoomVIP Kolkata Call Girl Kestopur 👉 8250192130  Available With Room
VIP Kolkata Call Girl Kestopur 👉 8250192130 Available With Room
 
FULL ENJOY Call Girls In Mayur Vihar Delhi Contact Us 8377087607
FULL ENJOY Call Girls In Mayur Vihar Delhi Contact Us 8377087607FULL ENJOY Call Girls In Mayur Vihar Delhi Contact Us 8377087607
FULL ENJOY Call Girls In Mayur Vihar Delhi Contact Us 8377087607
 
Call Girls In Model Towh Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Model Towh Delhi 💯Call Us 🔝8264348440🔝Call Girls In Model Towh Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Model Towh Delhi 💯Call Us 🔝8264348440🔝
 
Low Rate Young Call Girls in Sector 63 Mamura Noida ✔️☆9289244007✔️☆ Female E...
Low Rate Young Call Girls in Sector 63 Mamura Noida ✔️☆9289244007✔️☆ Female E...Low Rate Young Call Girls in Sector 63 Mamura Noida ✔️☆9289244007✔️☆ Female E...
Low Rate Young Call Girls in Sector 63 Mamura Noida ✔️☆9289244007✔️☆ Female E...
 
Dwarka Sector 26 Call Girls | Delhi | 9999965857 🫦 Vanshika Verma More Our Se...
Dwarka Sector 26 Call Girls | Delhi | 9999965857 🫦 Vanshika Verma More Our Se...Dwarka Sector 26 Call Girls | Delhi | 9999965857 🫦 Vanshika Verma More Our Se...
Dwarka Sector 26 Call Girls | Delhi | 9999965857 🫦 Vanshika Verma More Our Se...
 
Networking in the Penumbra presented by Geoff Huston at NZNOG
Networking in the Penumbra presented by Geoff Huston at NZNOGNetworking in the Penumbra presented by Geoff Huston at NZNOG
Networking in the Penumbra presented by Geoff Huston at NZNOG
 
Rohini Sector 26 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
Rohini Sector 26 Call Girls Delhi 9999965857 @Sabina Saikh No AdvanceRohini Sector 26 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
Rohini Sector 26 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
 
AWS Community DAY Albertini-Ellan Cloud Security (1).pptx
AWS Community DAY Albertini-Ellan Cloud Security (1).pptxAWS Community DAY Albertini-Ellan Cloud Security (1).pptx
AWS Community DAY Albertini-Ellan Cloud Security (1).pptx
 
Call Girls Dubai Prolapsed O525547819 Call Girls In Dubai Princes$
Call Girls Dubai Prolapsed O525547819 Call Girls In Dubai Princes$Call Girls Dubai Prolapsed O525547819 Call Girls In Dubai Princes$
Call Girls Dubai Prolapsed O525547819 Call Girls In Dubai Princes$
 
VIP Kolkata Call Girls Salt Lake 8250192130 Available With Room
VIP Kolkata Call Girls Salt Lake 8250192130 Available With RoomVIP Kolkata Call Girls Salt Lake 8250192130 Available With Room
VIP Kolkata Call Girls Salt Lake 8250192130 Available With Room
 
Call Girls South Delhi Delhi reach out to us at ☎ 9711199012
Call Girls South Delhi Delhi reach out to us at ☎ 9711199012Call Girls South Delhi Delhi reach out to us at ☎ 9711199012
Call Girls South Delhi Delhi reach out to us at ☎ 9711199012
 
Low Rate Call Girls Kolkata Avani 🤌 8250192130 🚀 Vip Call Girls Kolkata
Low Rate Call Girls Kolkata Avani 🤌  8250192130 🚀 Vip Call Girls KolkataLow Rate Call Girls Kolkata Avani 🤌  8250192130 🚀 Vip Call Girls Kolkata
Low Rate Call Girls Kolkata Avani 🤌 8250192130 🚀 Vip Call Girls Kolkata
 
How is AI changing journalism? (v. April 2024)
How is AI changing journalism? (v. April 2024)How is AI changing journalism? (v. April 2024)
How is AI changing journalism? (v. April 2024)
 
AlbaniaDreamin24 - How to easily use an API with Flows
AlbaniaDreamin24 - How to easily use an API with FlowsAlbaniaDreamin24 - How to easily use an API with Flows
AlbaniaDreamin24 - How to easily use an API with Flows
 
Model Call Girl in Jamuna Vihar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in  Jamuna Vihar Delhi reach out to us at 🔝9953056974🔝Model Call Girl in  Jamuna Vihar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Jamuna Vihar Delhi reach out to us at 🔝9953056974🔝
 
Best VIP Call Girls Noida Sector 75 Call Me: 8448380779
Best VIP Call Girls Noida Sector 75 Call Me: 8448380779Best VIP Call Girls Noida Sector 75 Call Me: 8448380779
Best VIP Call Girls Noida Sector 75 Call Me: 8448380779
 
Rohini Sector 6 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
Rohini Sector 6 Call Girls Delhi 9999965857 @Sabina Saikh No AdvanceRohini Sector 6 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
Rohini Sector 6 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
 
Rohini Sector 22 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
Rohini Sector 22 Call Girls Delhi 9999965857 @Sabina Saikh No AdvanceRohini Sector 22 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
Rohini Sector 22 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
 

Arrays

  • 2. Arrays • An array is a named collection of variables of the same data type. Each element of the array is labeled by one or more indices. • The size of an array is determined by the number of dimensions (i.e. the number of arguments) and the lower and upper bounds of the index number of each dimension. VB arrays can have 60 dimensions, with computer memory size limiting the number of elements.
  • 3. Arrays • If you know what size you need declare a static array and specify the lower and upper bounds of each dimension. • On the other hand if the size is truly not known you can declare a dynamic array. • You must explicitly declare an array before you use it. • Implicit declaration is not allowed.
  • 4. Arrays • The default lower bound is zero (0) unless you set it to 1 – which is recommended. • The statement Dim counters(14) As Integer • It defines counters as an array with 15 elements going from counters(0) through to counters(14). • To specify explicitly both bounds use lowewrBound To upperBound as in Dim counters(1 To 15) As Integer Dim totals(100 To 150) As Single
  • 5. Multi-Dimensional Array • A multi-dimensional array is defined in the statement Dim matrix(10, 10) As Single • To give a 10 x 10 “square” array with 100 elements from matrix(1,1) to matrix(10, 10).