61. |
If we declare an array Dim a(34) As Integer , then how many elements it can store
જો આપણે Dim a(34) As Integer એરે ડીકલેર કરી , તો તે કેટલા એલિમેન્ટ સ્ટોર કરી શકે છે
|
||||||||
Answer:
Option (c) |
62. |
If we declare an array Dim dotnet(44) As String,then what will be the upper bound of that array ?
જો આપણે Dim dotnet(44) As String એરે ડીકલેર કરી , તો તે એરે નું અપર બાઉન્ડ શું હશે ?
|
||||||||
Answer:
Option (b) |
63. |
Assume that Integer has 8 bytes, then What will be the size of Dim two(4,6) As Integer ?
ધારો કે Integer માટે 8 bytes અલોકેટ થાય છે, તો જો આપણે Dim two(4,6) As Integer આ પ્રકારનો એરે ડીકલેર કરી તો તેની સાઈઝ શું હોય શકે ?
|
||||||||
Answer:
Option (d) |
64. |
Elements of the array can be accessed _____________
એરે ના એલિમેન્ટ _________ રીતે એક્સેસ કરી શકાય છે
|
||||||||
Answer:
Option (a) |
65. |
Size of _____________array can be changed at run-time
________ એરે ની સાઈઝ રન ટાઈમ ચેન્જ કરી શકાય છે
|
||||||||
Answer:
Option (b) |
66. |
To Declare dynamic array, which statement can be used ?
ડાયનામિક એરે ડીકલેર કરવા માટે નીચે ના માંથી કયું સ્ટેટમેન્ટ ઉપયોગી છે
|
||||||||
Answer:
Option (a) |
67. |
__________ keyword helps to preserve the data in an existing array, when you resize it
______ કીવર્ડ ની મદદ થી જયારે એરે ને રી-સાઈઝ કરી ત્યારે એરે માં આવેલા ડેટા ને પ્રિઝર્વ કરી શકાય છે
|
||||||||
Answer:
Option (b) |
68. |
Jagged array is also known as ____________
જેગ્ડ એરે _____ તરીકે પણ ઓળખાય છે
|
||||||||
Answer:
Option (c) |
69. |
From following statements, which statement is true for the Jagged Array
નીચેના સ્ટેટમેન્ટ માંથી , કયું સ્ટેટમેન્ટ જેગ્ડ એરે માટે સાચું છે
|
||||||||
Answer:
Option (d) |
70. |
Guess the output of the following code
Module Program Sub Main(args As String()) Dim n As Integer = 4 For i As Integer = 0 To n - 1 Dim a As Integer = 70 For j As Integer = 0 To n - i - 1 Console.Write("{0}", Convert.ToChar(a + j)) Next Console.WriteLine() Next End Sub End Module
નીચે દર્શાવેલ કોડ નું આઉટપુટ જણાવો
Module Program Sub Main(args As String()) Dim n As Integer = 4 For i As Integer = 0 To n - 1 Dim a As Integer = 70 For j As Integer = 0 To n - i - 1 Console.Write("{0}", Convert.ToChar(a + j)) Next Console.WriteLine() Next End Sub End Module
|
||||||||
Answer:
Option (c) |