Solved

For Example, We Have a File in Our Raw Folder

Question 69

Multiple Choice

For example, we have a file in our raw folder app/src/main/res/raw/sample_teas.json . To get an InputStream for reading it, from out Context context, we can do this:


A) val input = context!!.openRawResource(R.raw.sample_teas)
B) val input = context!!.getRawResource(R.raw.sample_teas)
C) val input = context!!.resources.openRawResource(R.raw.sample_teas)

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions