Report Bug
Qus : What is a correct syntax to print the first item of an array?
Qus किसी ऐरे के पहले आइटम को प्रिंट करने के लिए सही सिंटैक्स क्या है?

A. print(arr[1])
B. print(arr,0)
C. print(arr,1)
D. None of These


Solution
D. None of These



Explanation
the correct code to print first element of array is print(arr[0])



Report Bug