If the index value of the array A starts from 1, and A[4][4] ={4,8,2,3,1,7,8,5,6,10,11,13,12,14,16,17} , What will be the value of A[3][4]?
Enlightened
Posted on: Oct 13, 2025
In: Basics of Computing
- 10
- 13
- 14
- 17
If the array, arr is a two dimensional array of 15 rows and 10 columns and array index starts from 0, then arr[10] logically points to
Enlightened
Posted on: Oct 13, 2025
In: Basics of Computing
- ninth row
- ninth column
- tenth row
- tenth column
What will be the resulting array after 1st swapping during array reversal process if the array is a={6,7,8,9}?
Enlightened
Posted on: Oct 13, 2025
In: Basics of Computing
- {9,7,8,6}
- {9,8,7,6}
- {6,8,7,9}
- {6,7,8,9}
Following algorithm determines: Start → If pos > 0 and pos <=n ...
Enlightened
Posted on: Oct 13, 2025
In: Basics of Computing
- Inserting an element into an array
- Deleting an element into an array
- Updating an element into an array
- Reversing an element of the array
The concepts of text processing can be used for
Enlightened
Posted on: Oct 13, 2025
In: Basics of Computing
- Reversing a string
- Copying a string
- Comparing two strings
- Converting a string from lower case to upper case