What is the correct way to open a file named data.txt for reading?
data.txt
c) open('data.txt', 'w')
open('data.txt', 'w')
a) open('data.txt', 'r')
open('data.txt', 'r')
b) open('data.txt', 'a')
open('data.txt', 'a')