(Choose 1 answer)
Given the file dog_breeds.txt, which of the following is the correct way to open the file for reading as a text file? Select all that apply.
A. open('dog_breeds.txt', 'w')
B. open('dog_breeds.txt', 'r')
C. open('dog_breeds.txt', 'wb')
D. open('dog_breeds.txt', 'rb')
Q: 36