Home » 
        MCQs » 
        C# MCQs
    
        
    Can we obtain the array index using foreach loop in C#?
    
    
    
    47. Can we obtain the array index using foreach loop in C#?
    
        - Yes
 
        - No
 
    
    Answer: B) No
    Explanation:
    No, we cannot obtain the array index using foreach loop because it does not keep track of the index, it only iterates forward over the array in single steps.